summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/BackendModuleEdit.vue
diff options
context:
space:
mode:
authorJannik Schönartz2018-08-03 05:19:24 +0200
committerJannik Schönartz2018-08-03 05:19:24 +0200
commit78face42c435e61e7c7df5992b772bb6cc3b4524 (patch)
treee3437346a262411a1aaa1548cbb0a5009dc96ab3 /webapp/src/components/BackendModuleEdit.vue
parent[server/external-backends] Fixed some design issues. Smaller dialogs, dialog ... (diff)
downloadbas-78face42c435e61e7c7df5992b772bb6cc3b4524.tar.gz
bas-78face42c435e61e7c7df5992b772bb6cc3b4524.tar.xz
bas-78face42c435e61e7c7df5992b772bb6cc3b4524.zip
[webapp/external-backends] Language tags are now camelCase for consistency. Group icon changed.
Diffstat (limited to 'webapp/src/components/BackendModuleEdit.vue')
-rw-r--r--webapp/src/components/BackendModuleEdit.vue42
1 files changed, 21 insertions, 21 deletions
diff --git a/webapp/src/components/BackendModuleEdit.vue b/webapp/src/components/BackendModuleEdit.vue
index 93d5a49..58a5d0c 100644
--- a/webapp/src/components/BackendModuleEdit.vue
+++ b/webapp/src/components/BackendModuleEdit.vue
@@ -1,30 +1,30 @@
<i18n>
{
"en": {
- "input_credentials": "Login credentials",
- "backend_name": "Backend name",
- "backend_empty_error": "This field can not be empty.",
- "backend_type": "Backend type",
- "backendtype_empty_error": "Please choose a backend type.",
- "stepper_optional": "optional",
+ "inputCredentials": "Login credentials",
+ "backendName": "Backend name",
+ "backendEmptyError": "This field can not be empty.",
+ "backendType": "Backend type",
+ "backendtypeEmptyError": "Please choose a backend type.",
+ "stepperOptional": "optional",
"pending": "pending",
"progress": "in progress ...",
"success": "success",
"error": "error",
- "test_connection": "Test connection"
+ "testConnection": "Test connection"
},
"de": {
- "input_credentials": "Anmeldedaten",
- "backend_name": "Backend Name",
- "backend_empty_error": "Dieses Feld darf nicht leer sein.",
- "backend_type": "Backend Typ",
- "backendtype_empty_error": "Bitte wähle einen Backendtyp aus.",
- "stepper_optional": "Optional",
+ "inputCredentials": "Anmeldedaten",
+ "backendName": "Backend Name",
+ "backendEmptyError": "Dieses Feld darf nicht leer sein.",
+ "backendType": "Backend Typ",
+ "backendtypeEmptyError": "Bitte wähle einen Backendtyp aus.",
+ "stepperOptional": "Optional",
"pending": "nicht getestet",
"progress": "test läuft ...",
"success": "erfolgreich",
"error": "Fehler",
- "test_connection": "Verbindung überprüfen"
+ "testConnection": "Verbindung überprüfen"
}
}
</i18n>
@@ -45,20 +45,20 @@
step="1"
:editable="stepCompleted >= 1 && !loadData"
:rules="[() => true]"
- >{{ $t('backend_type') }}<small>{{ backendType }}</small>
+ >{{ $t('backendType') }}<small>{{ backendType }}</small>
</v-stepper-step>
<v-divider></v-divider>
<v-stepper-step
:complete="stepCompleted >= 2"
step="2"
:editable="stepCompleted >= 2"
- >{{ $t('input_credentials') }}</v-stepper-step>
+ >{{ $t('inputCredentials') }}</v-stepper-step>
<v-divider></v-divider>
<v-stepper-step
:complete="stepCompleted >= 3"
step="3"
:editable="stepCompleted >= 3"
- >{{ $t('test_connection') }}<small>{{ $t('stepper_optional') }}</small>
+ >{{ $t('testConnection') }}<small>{{ $t('stepperOptional') }}</small>
</v-stepper-step>
</v-stepper-header>
</v-stepper>
@@ -72,16 +72,16 @@
offset-y
v-model="backendType"
:items="backendChoices"
- :label="$t('backend_type')"
- :rules="[() => !!backendType || $t('backendtype_empty_error')]"
+ :label="$t('backendType')"
+ :rules="[() => !!backendType || $t('backendtypeEmptyError')]"
prepend-icon="view_list"
></v-select>
</v-stepper-content>
<v-stepper-content step="2">
<v-text-field
v-model="backendName"
- :label="$t('backend_name')"
- :rules="[() => !!backendName || $t('backend_empty_error')]"
+ :label="$t('backendName')"
+ :rules="[() => !!backendName || $t('backendEmptyError')]"
ref="backendName"
prepend-icon="assignment_ind"
></v-text-field>