From 716784a1c8c48667dc9ccc3f41979f858ee2afd1 Mon Sep 17 00:00:00 2001 From: maartenvn Date: Sat, 10 Oct 2020 00:59:10 +0200 Subject: [PATCH] Replace 'locale' with 'language' - Update fields translations use 'language' instead of 'locale' - Replace all translation files from locale to language - Update the docs with locale to language --- api/src/database/seeds/03-fields/01-collections.yaml | 4 ++-- api/src/database/seeds/03-fields/09-settings.yaml | 12 ++++++------ app/.storybook/mock-data/collections.json | 4 ++-- app/.storybook/mock-data/fields.json | 10 +++++----- app/src/lang/af-ZA/index.json | 2 +- app/src/lang/af-ZA/interfaces.json | 2 +- app/src/lang/ar-SA/index.json | 2 +- app/src/lang/ar-SA/interfaces.json | 2 +- app/src/lang/ca-ES/index.json | 2 +- app/src/lang/ca-ES/interfaces.json | 2 +- app/src/lang/cs-CZ/index.json | 2 +- app/src/lang/cs-CZ/interfaces.json | 2 +- app/src/lang/da-DK/index.json | 2 +- app/src/lang/da-DK/interfaces.json | 2 +- app/src/lang/de-DE/index.json | 2 +- app/src/lang/de-DE/interfaces.json | 2 +- app/src/lang/el-GR/index.json | 2 +- app/src/lang/el-GR/interfaces.json | 2 +- app/src/lang/en-US/index.json | 2 +- app/src/lang/es-419/index.json | 2 +- app/src/lang/es-CL/index.json | 2 +- app/src/lang/es-ES/index.json | 2 +- app/src/lang/fi-FI/index.json | 2 +- app/src/lang/fi-FI/interfaces.json | 2 +- app/src/lang/fr-FR/index.json | 2 +- app/src/lang/he-IL/index.json | 2 +- app/src/lang/he-IL/interfaces.json | 2 +- app/src/lang/hu-HU/index.json | 2 +- app/src/lang/hu-HU/interfaces.json | 2 +- app/src/lang/id-ID/index.json | 2 +- app/src/lang/id-ID/interfaces.json | 2 +- app/src/lang/is-IS/index.json | 2 +- app/src/lang/is-IS/interfaces.json | 2 +- app/src/lang/it-IT/index.json | 2 +- app/src/lang/it-IT/interfaces.json | 2 +- app/src/lang/ja-JP/index.json | 2 +- app/src/lang/ja-JP/interfaces.json | 2 +- app/src/lang/ko-KR/index.json | 2 +- app/src/lang/ko-KR/interfaces.json | 2 +- app/src/lang/lt-LT/index.json | 2 +- app/src/lang/lt-LT/interfaces.json | 2 +- app/src/lang/ms-MY/index.json | 2 +- app/src/lang/ms-MY/interfaces.json | 2 +- app/src/lang/nl-NL/index.json | 2 +- app/src/lang/nl-NL/interfaces.json | 2 +- app/src/lang/no-NO/index.json | 2 +- app/src/lang/no-NO/interfaces.json | 2 +- app/src/lang/pl-PL/index.json | 2 +- app/src/lang/pl-PL/interfaces.json | 2 +- app/src/lang/pt-BR/index.json | 2 +- app/src/lang/pt-BR/interfaces.json | 2 +- app/src/lang/pt-PT/index.json | 2 +- app/src/lang/pt-PT/interfaces.json | 2 +- app/src/lang/ro-RO/index.json | 2 +- app/src/lang/ro-RO/interfaces.json | 2 +- app/src/lang/ru-RU/index.json | 2 +- app/src/lang/sr-SP/index.json | 2 +- app/src/lang/sr-SP/interfaces.json | 2 +- app/src/lang/sv-SE/index.json | 2 +- app/src/lang/sv-SE/interfaces.json | 2 +- app/src/lang/tr-TR/index.json | 2 +- app/src/lang/uk-UA/index.json | 2 +- app/src/lang/uk-UA/interfaces.json | 2 +- app/src/lang/vi-VN/index.json | 2 +- app/src/lang/vi-VN/interfaces.json | 2 +- app/src/lang/zh-CN/index.json | 2 +- app/src/lang/zh-CN/interfaces.json | 2 +- app/src/lang/zh-TW/index.json | 2 +- app/src/lang/zh-TW/interfaces.json | 2 +- .../data-model/field-detail/components/schema.vue | 6 +++--- app/src/stores/collections.ts | 4 ++-- app/src/stores/fields.ts | 4 ++-- app/src/types/collections.ts | 2 +- app/src/types/fields.ts | 2 +- docs/concepts/app-overview.md | 2 +- docs/concepts/internationalization.md | 2 +- docs/getting-started/backing-directus.md | 2 +- docs/getting-started/introduction.md | 6 +++--- packages/spec/specs/components/field.yaml | 2 +- .../spec/specs/paths/fields/collection-field.yaml | 2 +- .../spec/specs/paths/fields/collection-fields.yaml | 2 +- 81 files changed, 98 insertions(+), 98 deletions(-) diff --git a/api/src/database/seeds/03-fields/01-collections.yaml b/api/src/database/seeds/03-fields/01-collections.yaml index 4c3e0ba82c..ddf4c82e8a 100644 --- a/api/src/database/seeds/03-fields/01-collections.yaml +++ b/api/src/database/seeds/03-fields/01-collections.yaml @@ -67,9 +67,9 @@ fields: special: json interface: repeater options: - template: '{{ translation }} ({{ locale }})' + template: '{{ translation }} ({{ language }})' fields: - - field: locale + - field: language name: Language type: string schema: diff --git a/api/src/database/seeds/03-fields/09-settings.yaml b/api/src/database/seeds/03-fields/09-settings.yaml index d76cee3240..e3ab09d387 100644 --- a/api/src/database/seeds/03-fields/09-settings.yaml +++ b/api/src/database/seeds/03-fields/09-settings.yaml @@ -10,7 +10,7 @@ fields: placeholder: My project... sort: 1 translations: - locale: en-US + language: en-US translations: Name width: half - collection: directus_settings @@ -22,7 +22,7 @@ fields: placeholder: https://example.com sort: 2 translations: - locale: en-US + language: en-US translations: Website width: half - collection: directus_settings @@ -32,7 +32,7 @@ fields: note: Login & Logo Background sort: 3 translations: - locale: en-US + language: en-US translations: Brand Color width: half - collection: directus_settings @@ -42,7 +42,7 @@ fields: note: White 40x40 SVG/PNG sort: 4 translations: - locale: en-US + language: en-US translations: Brand Logo width: half - collection: directus_settings @@ -62,7 +62,7 @@ fields: locked: true sort: 6 translations: - locale: en-US + language: en-US translations: Login Foreground width: half - collection: directus_settings @@ -71,7 +71,7 @@ fields: locked: true sort: 7 translations: - locale: en-US + language: en-US translations: Login Background width: half - collection: directus_settings diff --git a/app/.storybook/mock-data/collections.json b/app/.storybook/mock-data/collections.json index 0b8f4339c5..165c348b3a 100644 --- a/app/.storybook/mock-data/collections.json +++ b/app/.storybook/mock-data/collections.json @@ -6442,7 +6442,7 @@ "options": { "fields": [ { - "field": "locale", + "field": "language", "type": "string", "interface": "language", "options": { @@ -7062,7 +7062,7 @@ "options": { "fields": [ { - "field": "locale", + "field": "language", "type": "string", "interface": "language", "options": { diff --git a/app/.storybook/mock-data/fields.json b/app/.storybook/mock-data/fields.json index 6089f7f029..eee4710903 100644 --- a/app/.storybook/mock-data/fields.json +++ b/app/.storybook/mock-data/fields.json @@ -1788,7 +1788,7 @@ "options": { "fields": [ { - "field": "locale", + "field": "language", "type": "string", "interface": "language", "options": { @@ -2736,7 +2736,7 @@ "options": { "fields": [ { - "field": "locale", + "field": "language", "type": "string", "interface": "language", "options": { @@ -10972,7 +10972,7 @@ { "id": 826, "collection": "directus_settings", - "field": "default_locale", + "field": "default_language", "type": "string", "interface": "language", "options": { @@ -10989,9 +10989,9 @@ "sort": 8, "width": "half", "group": null, - "note": "Default locale for Directus Users", + "note": "Default language for Directus Users", "translation": null, - "name": "Default Locale" + "name": "Default Language" }, { "id": 827, diff --git a/app/src/lang/af-ZA/index.json b/app/src/lang/af-ZA/index.json index 15695a2d6c..b02814fc97 100644 --- a/app/src/lang/af-ZA/index.json +++ b/app/src/lang/af-ZA/index.json @@ -95,7 +95,7 @@ "company": "Company", "title": "Title", "timezone": "Timezone", - "locale": "Locale", + "language": "Language", "avatar": "Avatar", "theme": "Theme", "2fa_secret": "Two-Factor Authentication" diff --git a/app/src/lang/af-ZA/interfaces.json b/app/src/lang/af-ZA/interfaces.json index e083af9c71..5f70e092ba 100644 --- a/app/src/lang/af-ZA/interfaces.json +++ b/app/src/lang/af-ZA/interfaces.json @@ -372,7 +372,7 @@ "placeholder": "Placeholder", "placeholder_comment": "Enter placeholder text", "localized": "Localized", - "localized_comment": "Localize the output to the user's locale", + "localized_comment": "Localize the output to the user's language", "icon_left": "Icon Left", "icon_left_comment": "Choose an optional icon to display on the left of the input", "icon_right": "Icon Right", diff --git a/app/src/lang/ar-SA/index.json b/app/src/lang/ar-SA/index.json index 8078dd33a9..d895101cc3 100644 --- a/app/src/lang/ar-SA/index.json +++ b/app/src/lang/ar-SA/index.json @@ -95,7 +95,7 @@ "company": "Company", "title": "Title", "timezone": "Timezone", - "locale": "Locale", + "language": "Language", "avatar": "Avatar", "theme": "Theme", "2fa_secret": "Two-Factor Authentication" diff --git a/app/src/lang/ar-SA/interfaces.json b/app/src/lang/ar-SA/interfaces.json index 951e2cfa16..a184f0d2dc 100644 --- a/app/src/lang/ar-SA/interfaces.json +++ b/app/src/lang/ar-SA/interfaces.json @@ -372,7 +372,7 @@ "placeholder": "Placeholder", "placeholder_comment": "Enter placeholder text", "localized": "Localized", - "localized_comment": "Localize the output to the user's locale", + "localized_comment": "Localize the output to the user's language", "icon_left": "Icon Left", "icon_left_comment": "Choose an optional icon to display on the left of the input", "icon_right": "Icon Right", diff --git a/app/src/lang/ca-ES/index.json b/app/src/lang/ca-ES/index.json index 2b745a2d39..21171aa42c 100644 --- a/app/src/lang/ca-ES/index.json +++ b/app/src/lang/ca-ES/index.json @@ -95,7 +95,7 @@ "company": "Company", "title": "Title", "timezone": "Timezone", - "locale": "Locale", + "language": "language", "avatar": "Avatar", "theme": "Theme", "2fa_secret": "Two-Factor Authentication" diff --git a/app/src/lang/ca-ES/interfaces.json b/app/src/lang/ca-ES/interfaces.json index 56ac88cbfe..ef8ce9be5f 100644 --- a/app/src/lang/ca-ES/interfaces.json +++ b/app/src/lang/ca-ES/interfaces.json @@ -372,7 +372,7 @@ "placeholder": "Placeholder", "placeholder_comment": "Enter placeholder text", "localized": "Localized", - "localized_comment": "Localize the output to the user's locale", + "localized_comment": "Localize the output to the user's language", "icon_left": "Icon Left", "icon_left_comment": "Choose an optional icon to display on the left of the input", "icon_right": "Icon Right", diff --git a/app/src/lang/cs-CZ/index.json b/app/src/lang/cs-CZ/index.json index a5f1c929b0..a7cb01361e 100644 --- a/app/src/lang/cs-CZ/index.json +++ b/app/src/lang/cs-CZ/index.json @@ -95,7 +95,7 @@ "company": "Společnost", "title": "Title", "timezone": "Časové pásmo", - "locale": "Lokalizace", + "language": "Lokalizace", "avatar": "Avatar", "theme": "Téma", "2fa_secret": "Dvoufázové ověření" diff --git a/app/src/lang/cs-CZ/interfaces.json b/app/src/lang/cs-CZ/interfaces.json index a8b83ca4f1..a5e315cfd3 100644 --- a/app/src/lang/cs-CZ/interfaces.json +++ b/app/src/lang/cs-CZ/interfaces.json @@ -372,7 +372,7 @@ "placeholder": "Placeholder", "placeholder_comment": "Enter placeholder text", "localized": "Localized", - "localized_comment": "Localize the output to the user's locale", + "localized_comment": "Localize the output to the user's language", "icon_left": "Icon Left", "icon_left_comment": "Choose an optional icon to display on the left of the input", "icon_right": "Icon Right", diff --git a/app/src/lang/da-DK/index.json b/app/src/lang/da-DK/index.json index 15695a2d6c..dced723807 100644 --- a/app/src/lang/da-DK/index.json +++ b/app/src/lang/da-DK/index.json @@ -95,7 +95,7 @@ "company": "Company", "title": "Title", "timezone": "Timezone", - "locale": "Locale", + "language": "language", "avatar": "Avatar", "theme": "Theme", "2fa_secret": "Two-Factor Authentication" diff --git a/app/src/lang/da-DK/interfaces.json b/app/src/lang/da-DK/interfaces.json index e083af9c71..5f70e092ba 100644 --- a/app/src/lang/da-DK/interfaces.json +++ b/app/src/lang/da-DK/interfaces.json @@ -372,7 +372,7 @@ "placeholder": "Placeholder", "placeholder_comment": "Enter placeholder text", "localized": "Localized", - "localized_comment": "Localize the output to the user's locale", + "localized_comment": "Localize the output to the user's language", "icon_left": "Icon Left", "icon_left_comment": "Choose an optional icon to display on the left of the input", "icon_right": "Icon Right", diff --git a/app/src/lang/de-DE/index.json b/app/src/lang/de-DE/index.json index f6cf77b437..fec72afe4b 100644 --- a/app/src/lang/de-DE/index.json +++ b/app/src/lang/de-DE/index.json @@ -95,7 +95,7 @@ "company": "Firma", "title": "Titel", "timezone": "Zeitzone", - "locale": "Sprache", + "language": "Sprache", "avatar": "Avatar", "theme": "Design", "2fa_secret": "Zwei-Faktor-Authentifizierung" diff --git a/app/src/lang/de-DE/interfaces.json b/app/src/lang/de-DE/interfaces.json index 55737b0248..dc22e8736e 100644 --- a/app/src/lang/de-DE/interfaces.json +++ b/app/src/lang/de-DE/interfaces.json @@ -372,7 +372,7 @@ "placeholder": "Placeholder", "placeholder_comment": "Enter placeholder text", "localized": "Lokalisiert", - "localized_comment": "Localize the output to the user's locale", + "localized_comment": "Localize the output to the user's language", "icon_left": "Icon links", "icon_left_comment": "Optionales Icon, für Anzeige links neben der Eingabe", "icon_right": "Icon rechts", diff --git a/app/src/lang/el-GR/index.json b/app/src/lang/el-GR/index.json index 964840e1b2..c1035d9668 100644 --- a/app/src/lang/el-GR/index.json +++ b/app/src/lang/el-GR/index.json @@ -95,7 +95,7 @@ "company": "Εταιρεία", "title": "Τίτλος", "timezone": "Ζώνη ώρας", - "locale": "Γλώσσα", + "language": "Γλώσσα", "avatar": "Avatar", "theme": "Θέμα", "2fa_secret": "Έλεγχος ταυτότητας δυο παραγόντων" diff --git a/app/src/lang/el-GR/interfaces.json b/app/src/lang/el-GR/interfaces.json index 64ea746cac..fdcd9c2dde 100644 --- a/app/src/lang/el-GR/interfaces.json +++ b/app/src/lang/el-GR/interfaces.json @@ -372,7 +372,7 @@ "placeholder": "Placeholder", "placeholder_comment": "Enter placeholder text", "localized": "Localized", - "localized_comment": "Localize the output to the user's locale", + "localized_comment": "Localize the output to the user's language", "icon_left": "Icon Left", "icon_left_comment": "Choose an optional icon to display on the left of the input", "icon_right": "Icon Right", diff --git a/app/src/lang/en-US/index.json b/app/src/lang/en-US/index.json index f1b467031d..10cf9b9f67 100644 --- a/app/src/lang/en-US/index.json +++ b/app/src/lang/en-US/index.json @@ -1019,7 +1019,7 @@ "company": "Company", "title": "Title", "timezone": "Timezone", - "locale": "Locale", + "language": "language", "avatar": "Avatar", "theme": "Theme", "tfa_secret": "Two-Factor Authentication" diff --git a/app/src/lang/es-419/index.json b/app/src/lang/es-419/index.json index 94bb74eb9c..43bc591d2e 100644 --- a/app/src/lang/es-419/index.json +++ b/app/src/lang/es-419/index.json @@ -95,7 +95,7 @@ "company": "Empresa", "title": "Título", "timezone": "Zona horaria", - "locale": "Localización", + "language": "Localización", "avatar": "Avatar", "theme": "Tema", "2fa_secret": "Autenticación de dos factores" diff --git a/app/src/lang/es-CL/index.json b/app/src/lang/es-CL/index.json index 67bfd707a3..ad109456a7 100644 --- a/app/src/lang/es-CL/index.json +++ b/app/src/lang/es-CL/index.json @@ -95,7 +95,7 @@ "company": "Empresa", "title": "Título", "timezone": "Zona horaria", - "locale": "Localización", + "language": "Localización", "avatar": "Avatar", "theme": "Tema", "2fa_secret": "Autenticación de dos factores" diff --git a/app/src/lang/es-ES/index.json b/app/src/lang/es-ES/index.json index 9d5c699498..4937d4e8c3 100644 --- a/app/src/lang/es-ES/index.json +++ b/app/src/lang/es-ES/index.json @@ -95,7 +95,7 @@ "company": "Empresa", "title": "Título", "timezone": "Zona horaria", - "locale": "Localización", + "language": "Localización", "avatar": "Avatar", "theme": "Tema", "2fa_secret": "Autenticación de dos factores" diff --git a/app/src/lang/fi-FI/index.json b/app/src/lang/fi-FI/index.json index 15695a2d6c..dced723807 100644 --- a/app/src/lang/fi-FI/index.json +++ b/app/src/lang/fi-FI/index.json @@ -95,7 +95,7 @@ "company": "Company", "title": "Title", "timezone": "Timezone", - "locale": "Locale", + "language": "language", "avatar": "Avatar", "theme": "Theme", "2fa_secret": "Two-Factor Authentication" diff --git a/app/src/lang/fi-FI/interfaces.json b/app/src/lang/fi-FI/interfaces.json index e083af9c71..5f70e092ba 100644 --- a/app/src/lang/fi-FI/interfaces.json +++ b/app/src/lang/fi-FI/interfaces.json @@ -372,7 +372,7 @@ "placeholder": "Placeholder", "placeholder_comment": "Enter placeholder text", "localized": "Localized", - "localized_comment": "Localize the output to the user's locale", + "localized_comment": "Localize the output to the user's language", "icon_left": "Icon Left", "icon_left_comment": "Choose an optional icon to display on the left of the input", "icon_right": "Icon Right", diff --git a/app/src/lang/fr-FR/index.json b/app/src/lang/fr-FR/index.json index 4ba54571e8..98caba6a90 100644 --- a/app/src/lang/fr-FR/index.json +++ b/app/src/lang/fr-FR/index.json @@ -95,7 +95,7 @@ "company": "Entreprise", "title": "Titre", "timezone": "Fuseau horaire", - "locale": "Langue", + "language": "Langue", "avatar": "Avatar", "theme": "Thème", "2fa_secret": "Authentification à deux facteurs" diff --git a/app/src/lang/he-IL/index.json b/app/src/lang/he-IL/index.json index c173f549c3..94ddd9c479 100644 --- a/app/src/lang/he-IL/index.json +++ b/app/src/lang/he-IL/index.json @@ -95,7 +95,7 @@ "company": "Company", "title": "Title", "timezone": "Timezone", - "locale": "Locale", + "language": "language", "avatar": "Avatar", "theme": "Theme", "2fa_secret": "Two-Factor Authentication" diff --git a/app/src/lang/he-IL/interfaces.json b/app/src/lang/he-IL/interfaces.json index e083af9c71..5f70e092ba 100644 --- a/app/src/lang/he-IL/interfaces.json +++ b/app/src/lang/he-IL/interfaces.json @@ -372,7 +372,7 @@ "placeholder": "Placeholder", "placeholder_comment": "Enter placeholder text", "localized": "Localized", - "localized_comment": "Localize the output to the user's locale", + "localized_comment": "Localize the output to the user's language", "icon_left": "Icon Left", "icon_left_comment": "Choose an optional icon to display on the left of the input", "icon_right": "Icon Right", diff --git a/app/src/lang/hu-HU/index.json b/app/src/lang/hu-HU/index.json index 7bd5c29afd..d0e8e67388 100644 --- a/app/src/lang/hu-HU/index.json +++ b/app/src/lang/hu-HU/index.json @@ -95,7 +95,7 @@ "company": "Company", "title": "Title", "timezone": "Timezone", - "locale": "Locale", + "language": "language", "avatar": "Avatar", "theme": "Theme", "2fa_secret": "Two-Factor Authentication" diff --git a/app/src/lang/hu-HU/interfaces.json b/app/src/lang/hu-HU/interfaces.json index a289fc748b..47988753d0 100644 --- a/app/src/lang/hu-HU/interfaces.json +++ b/app/src/lang/hu-HU/interfaces.json @@ -372,7 +372,7 @@ "placeholder": "Placeholder", "placeholder_comment": "Enter placeholder text", "localized": "Localized", - "localized_comment": "Localize the output to the user's locale", + "localized_comment": "Localize the output to the user's language", "icon_left": "Icon Left", "icon_left_comment": "Choose an optional icon to display on the left of the input", "icon_right": "Icon Right", diff --git a/app/src/lang/id-ID/index.json b/app/src/lang/id-ID/index.json index 50aeda8c3b..8258511e29 100644 --- a/app/src/lang/id-ID/index.json +++ b/app/src/lang/id-ID/index.json @@ -95,7 +95,7 @@ "company": "Company", "title": "Title", "timezone": "Timezone", - "locale": "Locale", + "language": "language", "avatar": "Avatar", "theme": "Theme", "2fa_secret": "Two-Factor Authentication" diff --git a/app/src/lang/id-ID/interfaces.json b/app/src/lang/id-ID/interfaces.json index 73169ca987..1cba83719a 100644 --- a/app/src/lang/id-ID/interfaces.json +++ b/app/src/lang/id-ID/interfaces.json @@ -372,7 +372,7 @@ "placeholder": "Placeholder", "placeholder_comment": "Enter placeholder text", "localized": "Localized", - "localized_comment": "Localize the output to the user's locale", + "localized_comment": "Localize the output to the user's language", "icon_left": "Icon Left", "icon_left_comment": "Choose an optional icon to display on the left of the input", "icon_right": "Icon Right", diff --git a/app/src/lang/is-IS/index.json b/app/src/lang/is-IS/index.json index 7241955f47..2e2745f401 100644 --- a/app/src/lang/is-IS/index.json +++ b/app/src/lang/is-IS/index.json @@ -95,7 +95,7 @@ "company": "Company", "title": "Title", "timezone": "Timezone", - "locale": "Locale", + "language": "language", "avatar": "Avatar", "theme": "Theme", "2fa_secret": "Two-Factor Authentication" diff --git a/app/src/lang/is-IS/interfaces.json b/app/src/lang/is-IS/interfaces.json index e083af9c71..5f70e092ba 100644 --- a/app/src/lang/is-IS/interfaces.json +++ b/app/src/lang/is-IS/interfaces.json @@ -372,7 +372,7 @@ "placeholder": "Placeholder", "placeholder_comment": "Enter placeholder text", "localized": "Localized", - "localized_comment": "Localize the output to the user's locale", + "localized_comment": "Localize the output to the user's language", "icon_left": "Icon Left", "icon_left_comment": "Choose an optional icon to display on the left of the input", "icon_right": "Icon Right", diff --git a/app/src/lang/it-IT/index.json b/app/src/lang/it-IT/index.json index e7f8d17f34..48b13a4275 100644 --- a/app/src/lang/it-IT/index.json +++ b/app/src/lang/it-IT/index.json @@ -95,7 +95,7 @@ "company": "Azienda", "title": "Titolo", "timezone": "Fuso orario", - "locale": "Localizzazione", + "language": "Localizzazione", "avatar": "Avatar", "theme": "Tema", "2fa_secret": "Autenticazione a due fattori" diff --git a/app/src/lang/it-IT/interfaces.json b/app/src/lang/it-IT/interfaces.json index eca55009e0..b758606d77 100644 --- a/app/src/lang/it-IT/interfaces.json +++ b/app/src/lang/it-IT/interfaces.json @@ -372,7 +372,7 @@ "placeholder": "Placeholder", "placeholder_comment": "Enter placeholder text", "localized": "Localizzato", - "localized_comment": "Localize the output to the user's locale", + "localized_comment": "Localize the output to the user's language", "icon_left": "Icona a sinistra", "icon_left_comment": "Scegli un'icona facoltativa da visualizzare sulla sinistra dell'input", "icon_right": "Icona a destra", diff --git a/app/src/lang/ja-JP/index.json b/app/src/lang/ja-JP/index.json index f44ad3dfad..1c7e156b4f 100644 --- a/app/src/lang/ja-JP/index.json +++ b/app/src/lang/ja-JP/index.json @@ -95,7 +95,7 @@ "company": "Company", "title": "標題", "timezone": "Timezone", - "locale": "Locale", + "language": "language", "avatar": "Avatar", "theme": "Theme", "2fa_secret": "Two-Factor Authentication" diff --git a/app/src/lang/ja-JP/interfaces.json b/app/src/lang/ja-JP/interfaces.json index d65157e298..02525da304 100644 --- a/app/src/lang/ja-JP/interfaces.json +++ b/app/src/lang/ja-JP/interfaces.json @@ -372,7 +372,7 @@ "placeholder": "Placeholder", "placeholder_comment": "Enter placeholder text", "localized": "Localized", - "localized_comment": "Localize the output to the user's locale", + "localized_comment": "Localize the output to the user's language", "icon_left": "Icon Left", "icon_left_comment": "Choose an optional icon to display on the left of the input", "icon_right": "Icon Right", diff --git a/app/src/lang/ko-KR/index.json b/app/src/lang/ko-KR/index.json index 15695a2d6c..dced723807 100644 --- a/app/src/lang/ko-KR/index.json +++ b/app/src/lang/ko-KR/index.json @@ -95,7 +95,7 @@ "company": "Company", "title": "Title", "timezone": "Timezone", - "locale": "Locale", + "language": "language", "avatar": "Avatar", "theme": "Theme", "2fa_secret": "Two-Factor Authentication" diff --git a/app/src/lang/ko-KR/interfaces.json b/app/src/lang/ko-KR/interfaces.json index e083af9c71..5f70e092ba 100644 --- a/app/src/lang/ko-KR/interfaces.json +++ b/app/src/lang/ko-KR/interfaces.json @@ -372,7 +372,7 @@ "placeholder": "Placeholder", "placeholder_comment": "Enter placeholder text", "localized": "Localized", - "localized_comment": "Localize the output to the user's locale", + "localized_comment": "Localize the output to the user's language", "icon_left": "Icon Left", "icon_left_comment": "Choose an optional icon to display on the left of the input", "icon_right": "Icon Right", diff --git a/app/src/lang/lt-LT/index.json b/app/src/lang/lt-LT/index.json index 71f1338959..8eecaf33e6 100644 --- a/app/src/lang/lt-LT/index.json +++ b/app/src/lang/lt-LT/index.json @@ -95,7 +95,7 @@ "company": "Company", "title": "Title", "timezone": "Timezone", - "locale": "Locale", + "language": "language", "avatar": "Avatar", "theme": "Theme", "2fa_secret": "Two-Factor Authentication" diff --git a/app/src/lang/lt-LT/interfaces.json b/app/src/lang/lt-LT/interfaces.json index 75b9752809..12b00910ad 100644 --- a/app/src/lang/lt-LT/interfaces.json +++ b/app/src/lang/lt-LT/interfaces.json @@ -372,7 +372,7 @@ "placeholder": "Placeholder", "placeholder_comment": "Enter placeholder text", "localized": "Localized", - "localized_comment": "Localize the output to the user's locale", + "localized_comment": "Localize the output to the user's language", "icon_left": "Icon Left", "icon_left_comment": "Choose an optional icon to display on the left of the input", "icon_right": "Icon Right", diff --git a/app/src/lang/ms-MY/index.json b/app/src/lang/ms-MY/index.json index 23c5378848..6aea4f6990 100644 --- a/app/src/lang/ms-MY/index.json +++ b/app/src/lang/ms-MY/index.json @@ -95,7 +95,7 @@ "company": "Company", "title": "Title", "timezone": "Timezone", - "locale": "Locale", + "language": "language", "avatar": "Avatar", "theme": "Theme", "2fa_secret": "Two-Factor Authentication" diff --git a/app/src/lang/ms-MY/interfaces.json b/app/src/lang/ms-MY/interfaces.json index e24a07e9ba..5de6056dde 100644 --- a/app/src/lang/ms-MY/interfaces.json +++ b/app/src/lang/ms-MY/interfaces.json @@ -372,7 +372,7 @@ "placeholder": "Placeholder", "placeholder_comment": "Enter placeholder text", "localized": "Localized", - "localized_comment": "Localize the output to the user's locale", + "localized_comment": "Localize the output to the user's language", "icon_left": "Icon Left", "icon_left_comment": "Choose an optional icon to display on the left of the input", "icon_right": "Icon Right", diff --git a/app/src/lang/nl-NL/index.json b/app/src/lang/nl-NL/index.json index 8689efb5be..511055f70d 100644 --- a/app/src/lang/nl-NL/index.json +++ b/app/src/lang/nl-NL/index.json @@ -97,7 +97,7 @@ "company": "Bedrijf", "title": "Titel", "timezone": "Tijdszone", - "locale": "Taal", + "language": "Taal", "avatar": "Avatar", "theme": "Thema", "2fa_secret": "2FA (Twee-Factor Authenticatie)" diff --git a/app/src/lang/nl-NL/interfaces.json b/app/src/lang/nl-NL/interfaces.json index facfdb2f47..31a96f28b3 100644 --- a/app/src/lang/nl-NL/interfaces.json +++ b/app/src/lang/nl-NL/interfaces.json @@ -372,7 +372,7 @@ "placeholder": "Placeholder", "placeholder_comment": "Voer placeholder tekst in", "localized": "Gelokaliseerd", - "localized_comment": "Localize the output to the user's locale", + "localized_comment": "Localize the output to the user's language", "icon_left": "Icon Left", "icon_left_comment": "Choose an optional icon to display on the left of the input", "icon_right": "Icon Right", diff --git a/app/src/lang/no-NO/index.json b/app/src/lang/no-NO/index.json index 5f69cfc3c5..d25fa528b1 100644 --- a/app/src/lang/no-NO/index.json +++ b/app/src/lang/no-NO/index.json @@ -95,7 +95,7 @@ "company": "Company", "title": "Title", "timezone": "Timezone", - "locale": "Locale", + "language": "language", "avatar": "Avatar", "theme": "Theme", "2fa_secret": "Two-Factor Authentication" diff --git a/app/src/lang/no-NO/interfaces.json b/app/src/lang/no-NO/interfaces.json index 27cd6b3f83..640b2f023f 100644 --- a/app/src/lang/no-NO/interfaces.json +++ b/app/src/lang/no-NO/interfaces.json @@ -372,7 +372,7 @@ "placeholder": "Placeholder", "placeholder_comment": "Enter placeholder text", "localized": "Localized", - "localized_comment": "Localize the output to the user's locale", + "localized_comment": "Localize the output to the user's language", "icon_left": "Icon Left", "icon_left_comment": "Choose an optional icon to display on the left of the input", "icon_right": "Icon Right", diff --git a/app/src/lang/pl-PL/index.json b/app/src/lang/pl-PL/index.json index 32f0a3561b..ac9fd1dd92 100644 --- a/app/src/lang/pl-PL/index.json +++ b/app/src/lang/pl-PL/index.json @@ -95,7 +95,7 @@ "company": "Firma", "title": "Title", "timezone": "Strefa czasowa", - "locale": "Język", + "language": "Język", "avatar": "Avatar", "theme": "Motyw", "2fa_secret": "Uwierzytelnianie dwuetapowe" diff --git a/app/src/lang/pl-PL/interfaces.json b/app/src/lang/pl-PL/interfaces.json index d5b8baf4ee..2673d04539 100644 --- a/app/src/lang/pl-PL/interfaces.json +++ b/app/src/lang/pl-PL/interfaces.json @@ -372,7 +372,7 @@ "placeholder": "Placeholder", "placeholder_comment": "Enter placeholder text", "localized": "Localized", - "localized_comment": "Localize the output to the user's locale", + "localized_comment": "Localize the output to the user's language", "icon_left": "Icon Left", "icon_left_comment": "Choose an optional icon to display on the left of the input", "icon_right": "Icon Right", diff --git a/app/src/lang/pt-BR/index.json b/app/src/lang/pt-BR/index.json index 137dbae0f2..e72e66ffce 100644 --- a/app/src/lang/pt-BR/index.json +++ b/app/src/lang/pt-BR/index.json @@ -95,7 +95,7 @@ "company": "Empresa", "title": "Título", "timezone": "Fuso Horário", - "locale": "Localidade", + "language": "Localidade", "avatar": "Imagem de Perfil", "theme": "Tema", "2fa_secret": "Autenticação em Duas Etapas" diff --git a/app/src/lang/pt-BR/interfaces.json b/app/src/lang/pt-BR/interfaces.json index 6ec15b5941..927ce864d1 100644 --- a/app/src/lang/pt-BR/interfaces.json +++ b/app/src/lang/pt-BR/interfaces.json @@ -372,7 +372,7 @@ "placeholder": "Placeholder", "placeholder_comment": "Enter placeholder text", "localized": "Localizado", - "localized_comment": "Localize the output to the user's locale", + "localized_comment": "Localize the output to the user's language", "icon_left": "Ícone à Esquerda", "icon_left_comment": "Escolha um ícone opcional para exibir à esquerda da entrada", "icon_right": "Ícone à Direita", diff --git a/app/src/lang/pt-PT/index.json b/app/src/lang/pt-PT/index.json index dfe9a0ab66..4bbcfa8221 100644 --- a/app/src/lang/pt-PT/index.json +++ b/app/src/lang/pt-PT/index.json @@ -95,7 +95,7 @@ "company": "Company", "title": "Title", "timezone": "Timezone", - "locale": "Locale", + "language": "language", "avatar": "Avatar", "theme": "Theme", "2fa_secret": "Two-Factor Authentication" diff --git a/app/src/lang/pt-PT/interfaces.json b/app/src/lang/pt-PT/interfaces.json index 739f63bd63..b09e456119 100644 --- a/app/src/lang/pt-PT/interfaces.json +++ b/app/src/lang/pt-PT/interfaces.json @@ -372,7 +372,7 @@ "placeholder": "Placeholder", "placeholder_comment": "Enter placeholder text", "localized": "Localized", - "localized_comment": "Localize the output to the user's locale", + "localized_comment": "Localize the output to the user's language", "icon_left": "Icon Left", "icon_left_comment": "Choose an optional icon to display on the left of the input", "icon_right": "Icon Right", diff --git a/app/src/lang/ro-RO/index.json b/app/src/lang/ro-RO/index.json index d25ee36102..aa3e206273 100644 --- a/app/src/lang/ro-RO/index.json +++ b/app/src/lang/ro-RO/index.json @@ -95,7 +95,7 @@ "company": "Companie", "title": "Titlu", "timezone": "Fus orar", - "locale": "Setări regionale", + "language": "Setări regionale", "avatar": "Avatar", "theme": "Temă", "2fa_secret": "Autentificare în doi pași" diff --git a/app/src/lang/ro-RO/interfaces.json b/app/src/lang/ro-RO/interfaces.json index 4886bc49bf..a7285c60a1 100644 --- a/app/src/lang/ro-RO/interfaces.json +++ b/app/src/lang/ro-RO/interfaces.json @@ -372,7 +372,7 @@ "placeholder": "Placeholder", "placeholder_comment": "Enter placeholder text", "localized": "Localized", - "localized_comment": "Localize the output to the user's locale", + "localized_comment": "Localize the output to the user's language", "icon_left": "Icon Left", "icon_left_comment": "Choose an optional icon to display on the left of the input", "icon_right": "Icon Right", diff --git a/app/src/lang/ru-RU/index.json b/app/src/lang/ru-RU/index.json index 17d140c07d..80cc2c025d 100644 --- a/app/src/lang/ru-RU/index.json +++ b/app/src/lang/ru-RU/index.json @@ -95,7 +95,7 @@ "company": "Компания", "title": "Заголовок", "timezone": "Часовой пояс", - "locale": "Язык", + "language": "Язык", "avatar": "Аватар", "theme": "Тема", "2fa_secret": "Двухфакторная аутентификация" diff --git a/app/src/lang/sr-SP/index.json b/app/src/lang/sr-SP/index.json index 22654f4915..ac976e6272 100644 --- a/app/src/lang/sr-SP/index.json +++ b/app/src/lang/sr-SP/index.json @@ -95,7 +95,7 @@ "company": "Company", "title": "Title", "timezone": "Timezone", - "locale": "Locale", + "language": "language", "avatar": "Avatar", "theme": "Theme", "2fa_secret": "Two-Factor Authentication" diff --git a/app/src/lang/sr-SP/interfaces.json b/app/src/lang/sr-SP/interfaces.json index 638afbf377..76659e867b 100644 --- a/app/src/lang/sr-SP/interfaces.json +++ b/app/src/lang/sr-SP/interfaces.json @@ -372,7 +372,7 @@ "placeholder": "Placeholder", "placeholder_comment": "Enter placeholder text", "localized": "Localized", - "localized_comment": "Localize the output to the user's locale", + "localized_comment": "Localize the output to the user's language", "icon_left": "Icon Left", "icon_left_comment": "Choose an optional icon to display on the left of the input", "icon_right": "Icon Right", diff --git a/app/src/lang/sv-SE/index.json b/app/src/lang/sv-SE/index.json index 4429399160..5b5fae21c9 100644 --- a/app/src/lang/sv-SE/index.json +++ b/app/src/lang/sv-SE/index.json @@ -95,7 +95,7 @@ "company": "Företag", "title": "Rubrik", "timezone": "Tidszon", - "locale": "Språk", + "language": "Språk", "avatar": "Avatar", "theme": "Tema", "2fa_secret": "Two-Factor Authentication" diff --git a/app/src/lang/sv-SE/interfaces.json b/app/src/lang/sv-SE/interfaces.json index 8c811eb7a8..4e501033c9 100644 --- a/app/src/lang/sv-SE/interfaces.json +++ b/app/src/lang/sv-SE/interfaces.json @@ -372,7 +372,7 @@ "placeholder": "Placeholder", "placeholder_comment": "Enter placeholder text", "localized": "Localized", - "localized_comment": "Localize the output to the user's locale", + "localized_comment": "Localize the output to the user's language", "icon_left": "Icon Left", "icon_left_comment": "Choose an optional icon to display on the left of the input", "icon_right": "Icon Right", diff --git a/app/src/lang/tr-TR/index.json b/app/src/lang/tr-TR/index.json index ff42a54c11..cae4906d2d 100644 --- a/app/src/lang/tr-TR/index.json +++ b/app/src/lang/tr-TR/index.json @@ -95,7 +95,7 @@ "company": "Şirket", "title": "Ünvan", "timezone": "Zaman Dilimi", - "locale": "Dil (Ülke)", + "language": "Dil (Ülke)", "avatar": "Avatar", "theme": "Tema", "2fa_secret": "İki Faktörlü Kimlik Doğrulama" diff --git a/app/src/lang/uk-UA/index.json b/app/src/lang/uk-UA/index.json index a96c74855d..6833b8f415 100644 --- a/app/src/lang/uk-UA/index.json +++ b/app/src/lang/uk-UA/index.json @@ -95,7 +95,7 @@ "company": "Компанія", "title": "Title", "timezone": "Часовий пояс", - "locale": "Локаль", + "language": "Локаль", "avatar": "Avatar", "theme": "Тема", "2fa_secret": "Двофакторна автентифікація" diff --git a/app/src/lang/uk-UA/interfaces.json b/app/src/lang/uk-UA/interfaces.json index 469132c917..fe62f6003d 100644 --- a/app/src/lang/uk-UA/interfaces.json +++ b/app/src/lang/uk-UA/interfaces.json @@ -372,7 +372,7 @@ "placeholder": "Заповнювач", "placeholder_comment": "Введіть текст заповнювача", "localized": "Localized", - "localized_comment": "Localize the output to the user's locale", + "localized_comment": "Localize the output to the user's language", "icon_left": "Icon Left", "icon_left_comment": "Choose an optional icon to display on the left of the input", "icon_right": "Icon Right", diff --git a/app/src/lang/vi-VN/index.json b/app/src/lang/vi-VN/index.json index 8a2674d79e..8737522aff 100644 --- a/app/src/lang/vi-VN/index.json +++ b/app/src/lang/vi-VN/index.json @@ -95,7 +95,7 @@ "company": "Company", "title": "Title", "timezone": "Timezone", - "locale": "Locale", + "language": "language", "avatar": "Avatar", "theme": "Theme", "2fa_secret": "Two-Factor Authentication" diff --git a/app/src/lang/vi-VN/interfaces.json b/app/src/lang/vi-VN/interfaces.json index e083af9c71..5f70e092ba 100644 --- a/app/src/lang/vi-VN/interfaces.json +++ b/app/src/lang/vi-VN/interfaces.json @@ -372,7 +372,7 @@ "placeholder": "Placeholder", "placeholder_comment": "Enter placeholder text", "localized": "Localized", - "localized_comment": "Localize the output to the user's locale", + "localized_comment": "Localize the output to the user's language", "icon_left": "Icon Left", "icon_left_comment": "Choose an optional icon to display on the left of the input", "icon_right": "Icon Right", diff --git a/app/src/lang/zh-CN/index.json b/app/src/lang/zh-CN/index.json index 310b4831d2..075c137b31 100644 --- a/app/src/lang/zh-CN/index.json +++ b/app/src/lang/zh-CN/index.json @@ -95,7 +95,7 @@ "company": "公司", "title": "标题", "timezone": "时区", - "locale": "区域", + "language": "区域", "avatar": "头像", "theme": "主题", "2fa_secret": "2FA(双因素身份验证)" diff --git a/app/src/lang/zh-CN/interfaces.json b/app/src/lang/zh-CN/interfaces.json index d6df8f2be2..398af74101 100644 --- a/app/src/lang/zh-CN/interfaces.json +++ b/app/src/lang/zh-CN/interfaces.json @@ -372,7 +372,7 @@ "placeholder": "Placeholder", "placeholder_comment": "Enter placeholder text", "localized": "Localized", - "localized_comment": "Localize the output to the user's locale", + "localized_comment": "Localize the output to the user's language", "icon_left": "左图标", "icon_left_comment": "Choose an optional icon to display on the left of the input", "icon_right": "右图标", diff --git a/app/src/lang/zh-TW/index.json b/app/src/lang/zh-TW/index.json index 2a5d99976c..473af4fb35 100644 --- a/app/src/lang/zh-TW/index.json +++ b/app/src/lang/zh-TW/index.json @@ -95,7 +95,7 @@ "company": "Company", "title": "Title", "timezone": "Timezone", - "locale": "Locale", + "language": "language", "avatar": "Avatar", "theme": "Theme", "2fa_secret": "Two-Factor Authentication" diff --git a/app/src/lang/zh-TW/interfaces.json b/app/src/lang/zh-TW/interfaces.json index 9ed725d6d1..6596ff6d57 100644 --- a/app/src/lang/zh-TW/interfaces.json +++ b/app/src/lang/zh-TW/interfaces.json @@ -372,7 +372,7 @@ "placeholder": "Placeholder", "placeholder_comment": "Enter placeholder text", "localized": "Localized", - "localized_comment": "Localize the output to the user's locale", + "localized_comment": "Localize the output to the user's language", "icon_left": "Icon Left", "icon_left_comment": "Choose an optional icon to display on the left of the input", "icon_right": "Icon Right", diff --git a/app/src/modules/settings/routes/data-model/field-detail/components/schema.vue b/app/src/modules/settings/routes/data-model/field-detail/components/schema.vue index 8b0fc06d98..c6b7970ac5 100644 --- a/app/src/modules/settings/routes/data-model/field-detail/components/schema.vue +++ b/app/src/modules/settings/routes/data-model/field-detail/components/schema.vue @@ -128,10 +128,10 @@
{{ $t('translations') }}