From 26edecf048c4c4efa398f95984335d6b52ec60b2 Mon Sep 17 00:00:00 2001 From: Marco Capetta Date: Wed, 8 Jan 2025 13:49:26 +0100 Subject: [PATCH] MT#59913 Add new Portuguese language to soundset The new Portuguese language has been added to the available prompts and the csc ui has to propose it as possibile predefined soundsets. At the same time the list of languanges has been alphabetically ordered. Change-Id: I9fca6151ff2b856512acded2df621c708cb3b67b (cherry picked from commit d1f390e42e0a603b76588d1d7f42b9fb8fb43bc9) --- .../CscPbxSoundSetAddForm.vue | 38 ++++++++++--------- 1 file changed, 21 insertions(+), 17 deletions(-) diff --git a/src/components/pages/PbxConfiguration/CscPbxSoundSetAddForm.vue b/src/components/pages/PbxConfiguration/CscPbxSoundSetAddForm.vue index 662b6b0d..9590b579 100644 --- a/src/components/pages/PbxConfiguration/CscPbxSoundSetAddForm.vue +++ b/src/components/pages/PbxConfiguration/CscPbxSoundSetAddForm.vue @@ -138,44 +138,48 @@ export default { data: this.getDefaults(), languageOptions: [ { - value: 'en', - label: 'English' - }, - { - value: 'es', - label: 'Spanish' + value: 'ar', + label: 'Arabic' }, { - value: 'it', - label: 'Italian' + value: 'de', + label: 'German' }, { - value: 'ro', - label: 'Romanian' + value: 'en', + label: 'English' }, { - value: 'de', - label: 'German' + value: 'es', + label: 'Spanish' }, { value: 'fr', label: 'French' }, { - value: 'ar', - label: 'Arabic' + value: 'he', + label: 'Hebrew' + }, + { + value: 'it', + label: 'Italian' }, { value: 'nl', label: 'Dutch' }, { - value: 'he', - label: 'Hebrew' + value: 'pt', + label: 'Portuguese' }, { value: 'pt_br', - label: 'Brazialian' + label: 'Brazilian' + }, + { + value: 'ro', + label: 'Romanian' } ], v$: useValidate()