parent
52a8fa1f48
commit
aab048dd32
|
@ -19,6 +19,8 @@ review_front:
|
||||||
when: manual
|
when: manual
|
||||||
allow_failure: true
|
allow_failure: true
|
||||||
before_script:
|
before_script:
|
||||||
|
- apt-get update
|
||||||
|
- apt-get install jq -y
|
||||||
- cd front
|
- cd front
|
||||||
script:
|
script:
|
||||||
- yarn install
|
- yarn install
|
||||||
|
@ -176,8 +178,9 @@ build_front:
|
||||||
stage: build
|
stage: build
|
||||||
image: node:9
|
image: node:9
|
||||||
before_script:
|
before_script:
|
||||||
|
- apt-get update
|
||||||
|
- apt-get install jq -y
|
||||||
- cd front
|
- cd front
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- yarn install
|
- yarn install
|
||||||
- yarn run i18n-compile
|
- yarn run i18n-compile
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
New translation workflow (#161, #167)
|
File diff suppressed because it is too large
Load Diff
|
@ -71,15 +71,15 @@ export default {
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
groups () {
|
groups () {
|
||||||
// somehow, extraction fails if in the return block directly
|
// somehow, extraction fails if in the return block directly
|
||||||
let instanceLabel = this.$gettext('Instance information')
|
let instanceLabel = this.$gettext('Instance information')
|
||||||
let usersLabel = this.$gettext('Users')
|
let usersLabel = this.$gettext('Users')
|
||||||
let importsLabel = this.$gettext('Imports')
|
let importsLabel = this.$gettext('Imports')
|
||||||
let playlistsLabel = this.$gettext('Playlists')
|
let playlistsLabel = this.$gettext('Playlists')
|
||||||
let federationLabel = this.$gettext('Federation')
|
let federationLabel = this.$gettext('Federation')
|
||||||
let subsonicLabel = this.$gettext('Subsonic')
|
let subsonicLabel = this.$gettext('Subsonic')
|
||||||
let statisticsLabel = this.$gettext('Statistics')
|
let statisticsLabel = this.$gettext('Statistics')
|
||||||
let errorLabel = this.$gettext('Error reporting')
|
let errorLabel = this.$gettext('Error reporting')
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
label: instanceLabel,
|
label: instanceLabel,
|
||||||
|
|
Loading…
Reference in New Issue