summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/BackendModuleSync.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/BackendModuleSync.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/BackendModuleSync.vue')
-rw-r--r--webapp/src/components/BackendModuleSync.vue26
1 files changed, 14 insertions, 12 deletions
diff --git a/webapp/src/components/BackendModuleSync.vue b/webapp/src/components/BackendModuleSync.vue
index 7edd1a7..bf8464d 100644
--- a/webapp/src/components/BackendModuleSync.vue
+++ b/webapp/src/components/BackendModuleSync.vue
@@ -1,12 +1,14 @@
<i18n>
{
"en": {
- "sync-options": "Synchronise Settings",
- "sync-type": "Sync type"
+ "syncOptions": "Synchronise Settings",
+ "syncType": "Sync type",
+ "noResultsCombobox": "No results matching \" {search} \". Press <kbd>enter</kbd> to create a new one"
},
"de": {
- "sync-options": "Synchronisierungseinstellungen",
- "sync-type": "Synchronisierungstyp"
+ "syncOptions": "Synchronisierungseinstellungen",
+ "syncType": "Synchronisierungstyp",
+ "noResultsCombobox": "Kein resultat für \" {search} \" gefunden. Drücke <kbd>enter</kbd>, um ein neues zu erstellen"
}
}
</i18n>
@@ -19,12 +21,12 @@
>
<v-card>
<v-card-title class="elevation-3">
- <div class="headline">{{ $t('sync-options') }}</div>
+ <div class="headline">{{ $t('syncOptions') }}</div>
</v-card-title>
<v-card-text style="height: 500px; padding: 40px">
<v-select
:items="syncTypes"
- :label="$t('sync-type')"
+ :label="$t('syncType')"
offset-y
prepend-icon="settings_ethernet"
></v-select>
@@ -40,13 +42,13 @@
hide-selected
deletable-chips
return-object
- prepend-icon="group"
+ prepend-icon="device_hub"
>
<template slot="no-data">
<v-list-tile>
<v-list-tile-content>
<v-list-tile-title>
- No results matching "<strong>{{ searchGroups }}</strong>". Press <kbd>enter</kbd> to create a new one
+ <p v-html="$t('noResultsCombobox', { search: searchGroups })"></p>
</v-list-tile-title>
</v-list-tile-content>
</v-list-tile>
@@ -64,7 +66,7 @@
hide-selected
deletable-chips
return-object
- prepend-icon="group"
+ prepend-icon="device_hub"
></v-autocomplete>
<v-combobox v-if="objectTypes.length === 0"
v-model="cbxClients"
@@ -77,7 +79,7 @@
hide-selected
deletable-chips
return-object
- prepend-icon="laptop"
+ prepend-icon="computer"
>
<template slot="no-data">
<v-list-tile>
@@ -100,7 +102,7 @@
hide-selected
deletable-chips
return-object
- prepend-icon="laptop"
+ prepend-icon="computer"
></v-autocomplete>
</v-card-text>
<v-divider></v-divider>
@@ -133,7 +135,7 @@ export default {
searchClients: '',
cbxGroups: null,
cbxClients: null,
- syncTypes: [ 'Two-Way', 'Upload Only', 'Upload Then Delete', 'Upload Mirror', 'Download Only', 'Download Then Delete', 'Download Mirror']
+ syncTypes: ['Two-Way', 'Upload Only', 'Upload Then Delete', 'Upload Mirror', 'Download Only', 'Download Then Delete', 'Download Mirror']
}
},
methods: {