Skip to content

Commit 5280976

Browse files
authored
fix: i18n messages (#897)
1 parent 850f6c4 commit 5280976

File tree

7 files changed

+54
-13
lines changed

7 files changed

+54
-13
lines changed

src/components/project/resource/OrganizationResourceDrawer.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<div class="file-input-ctn">
1717
<ImageInput
1818
id="add-file-input"
19-
:label="$t('file.upload' + ' *')"
19+
:label="$t('file.upload') + ' *'"
2020
class="text-input"
2121
file-types="*/*"
2222
max-size-mb="10"
@@ -31,7 +31,7 @@
3131

3232
<TextInput
3333
v-model="title"
34-
:label="$t('common.title' + ' *')"
34+
:label="$t('common.title') + ' *'"
3535
:placeholder="$t('common.title')"
3636
class="text-input"
3737
data-test="input-link-title"
@@ -42,7 +42,7 @@
4242

4343
<TextInput
4444
v-model="description"
45-
:label="$t('form.description' + ' *')"
45+
:label="$t('form.description') + ' *'"
4646
:placeholder="$t('form.description')"
4747
class="text-input"
4848
data-test="input-link-description"

src/components/resources/ResourceDrawer.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<div class="file-input-ctn">
3939
<ImageInput
4040
id="add-file-input"
41-
:label="$t('file.upload' + ' *')"
41+
:label="$t('file.upload') + ' *'"
4242
class="text-input"
4343
file-types="*/*"
4444
@upload-image="uploadImage"
@@ -53,7 +53,7 @@
5353
<template v-if="isLink">
5454
<TextInput
5555
v-model="link"
56-
:label="$t('resource.link-address' + ' *')"
56+
:label="$t('resource.link-address') + ' *'"
5757
class="text-input"
5858
data-test="input-link-adress"
5959
placeholder="https://..."
@@ -64,7 +64,7 @@
6464

6565
<TextInput
6666
v-model="title"
67-
:label="$t('common.title' + ' *')"
67+
:label="$t('common.title') + ' *'"
6868
:placeholder="$t('common.title')"
6969
class="text-input"
7070
data-test="input-link-title"
@@ -75,7 +75,7 @@
7575

7676
<TextInput
7777
v-model="description"
78-
:label="$t('form.description' + ' *')"
78+
:label="$t('form.description') + ' *'"
7979
:placeholder="$t('form.description')"
8080
class="text-input"
8181
data-test="input-link-description"

src/i18n/locales/ca.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,8 @@
219219
"users": "Usuaris",
220220
"requests": "Peticions",
221221
"groups": "Grups",
222-
"settings": "Arranjament"
222+
"settings": "Arranjament",
223+
"terms": "ToS"
223224
},
224225
"page-title": "Administrador",
225226
"portal": {
@@ -337,6 +338,13 @@
337338
},
338339
"accept-success": "L' aplicació s' ha acceptat correctament",
339340
"decline-success": "L' aplicació s' ha rebutjat correctament"
341+
},
342+
"terms": {
343+
"title": "Termes i condicions",
344+
"using-default": "Actualment esteu usant termes per omissió i Condicions",
345+
"error": "Hi ha hagut un error en desar els termes i les Condicions.",
346+
"saved": "Termes i condicions desades amb èxit",
347+
"version": "Versió:"
340348
}
341349
},
342350
"account": {

src/i18n/locales/de.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,8 @@
219219
"users": "Benutzer",
220220
"requests": "Anträge",
221221
"groups": "Gruppen",
222-
"settings": "Einstellungen"
222+
"settings": "Einstellungen",
223+
"terms": "ToS"
223224
},
224225
"page-title": "Admin",
225226
"portal": {
@@ -337,6 +338,13 @@
337338
},
338339
"accept-success": "Erfolgreiche Anwendung",
339340
"decline-success": "Antrag abgelehnt erfolgreich"
341+
},
342+
"terms": {
343+
"title": "Allgemeine Geschäftsbedingungen",
344+
"using-default": "Sie verwenden aktuell Standardbedingungen",
345+
"error": "Ein Fehler trat beim Speichern der Allgemeinen Geschäftsbedingungen auf.",
346+
"saved": "Geschäftsbedingungen erfolgreich gespeichert",
347+
"version": "Ausführung:"
340348
}
341349
},
342350
"account": {

src/i18n/locales/es.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,8 @@
219219
"users": "Usuarios",
220220
"requests": "Solicitudes",
221221
"groups": "Grupos",
222-
"settings": "Ajustes"
222+
"settings": "Ajustes",
223+
"terms": "ToS"
223224
},
224225
"page-title": "Admin",
225226
"portal": {
@@ -337,6 +338,13 @@
337338
},
338339
"accept-success": "Solicitud aceptada con éxito",
339340
"decline-success": "Solicitud rechazada con éxito"
341+
},
342+
"terms": {
343+
"title": "Términos y condiciones",
344+
"using-default": "Usted está actualmente utilizando los Términos y Condiciones predeterminados",
345+
"error": "Se produjo un error al guardar los Términos y Condiciones.",
346+
"saved": "Términos y condiciones guardados con éxito",
347+
"version": "Versión:"
340348
}
341349
},
342350
"account": {

src/i18n/locales/et.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,8 @@
219219
"users": "Kasutajad",
220220
"requests": "Taotlused",
221221
"groups": "Grupid",
222-
"settings": "Seadistused"
222+
"settings": "Seadistused",
223+
"terms": "Tos"
223224
},
224225
"page-title": "Admin",
225226
"portal": {
@@ -337,6 +338,13 @@
337338
},
338339
"accept-success": "Edukalt vastu võetud taotlus",
339340
"decline-success": "Rakendus lükati edukalt tagasi"
341+
},
342+
"terms": {
343+
"title": "Tingimused",
344+
"using-default": "Praegu kasutate vaikimisi tingimusi ja tingimusi",
345+
"error": "Tingimuste salvestamisel tekkis viga.",
346+
"saved": "Tingimused salvestati edukalt",
347+
"version": "Versioon:"
340348
}
341349
},
342350
"account": {

src/i18n/locales/nl.json

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,8 @@
219219
"users": "Gebruikers",
220220
"requests": "Verzoeken",
221221
"groups": "Groepen",
222-
"settings": "Instellingen"
222+
"settings": "Instellingen",
223+
"terms": "TOS"
223224
},
224225
"page-title": "Beheerder",
225226
"portal": {
@@ -337,6 +338,13 @@
337338
},
338339
"accept-success": "Toepassing succesvol aanvaard",
339340
"decline-success": "Aanvraag succesvol afgewezen"
341+
},
342+
"terms": {
343+
"title": "Algemene voorwaarden",
344+
"using-default": "U gebruikt momenteel standaardvoorwaarden",
345+
"error": "Er is een fout opgetreden bij het opslaan van de Algemene Voorwaarden.",
346+
"saved": "Voorwaarden succesvol opgeslagen",
347+
"version": "Versie:"
340348
}
341349
},
342350
"account": {
@@ -1073,7 +1081,8 @@
10731081
"hobbies": "Hobby's",
10741082
"levels-help-link": "Vaardigheden",
10751083
"publications": "Mijn publicaties",
1076-
"conferences": "Mijn conferenties"
1084+
"conferences": "Mijn conferenties",
1085+
"follow-category": "Categorieën Ik volg je."
10771086
},
10781087
"you": {
10791088
"no-follow": "Nog geen projecten gevolgd",

0 commit comments

Comments
 (0)