From 8cee3bbe447255e80ae73ba7f6f2c2dbf3f9a5d4 Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Mon, 30 Sep 2013 16:16:32 +0000 Subject: [PATCH] Fix a few things in app_config.php leaving fr-ca and changing some of the single quotes to double quotes. --- app/adminer/app_config.php | 2 +- app/call_block/app_config.php | 15 ++++--- app/call_block/app_languages.php | 57 ++++++++++++------------ app/call_center/app_languages.php | 2 - app/call_flows/app_languages.php | 5 --- app/conference_centers/app_languages.php | 8 ++-- app/conferences_active/app_config.php | 21 ++++----- app/contacts/app_languages.php | 2 - app/content/app_languages.php | 39 ++++++++++++++++ app/destinations/app_config.php | 4 +- app/devices/app_languages.php | 4 ++ app/dialplan_features/app_config.php | 2 +- app/dialplan_outbound/app_config.php | 2 +- app/exec/app_config.php | 4 +- app/extensions/app_languages.php | 2 +- app/fifo/app_config.php | 2 +- app/fifo/app_languages.php | 1 - app/fifo_list/app_config.php | 14 +++--- app/hot_desking/app_config.php | 4 +- app/login/app_config.php | 2 +- app/modules/app_config.php | 2 +- app/music_on_hold/app_config.php | 2 +- app/music_on_hold/app_languages.php | 3 ++ app/recordings/app_config.php | 16 +++---- app/services/app_config.php | 12 ++--- app/sip_profiles/app_config.php | 12 +++++ app/sql_query/app_config.php | 4 +- app/time_conditions/app_config.php | 2 +- app/traffic_graph/app_config.php | 4 +- app/voicemail_greetings/app_config.php | 18 ++++---- app/voicemails/app_languages.php | 3 +- core/apps/app_config.php | 2 +- core/default_settings/app_config.php | 4 +- core/domain_settings/app_config.php | 4 +- core/upgrade/app_config.php | 8 ++-- core/user_settings/app_config.php | 10 ++--- 36 files changed, 175 insertions(+), 123 deletions(-) diff --git a/app/adminer/app_config.php b/app/adminer/app_config.php index 87afb79277..7ac4941f2d 100644 --- a/app/adminer/app_config.php +++ b/app/adminer/app_config.php @@ -15,7 +15,7 @@ $apps[$x]['description']['fr-fr'] = 'Adminer (précédemment phpMinAdmin) est un outil gestion de base de données complet écrite en php. Adminer est disponible pour MySQL, PostgreSQL, SQLite, MS SQL et Oracle.'; $apps[$x]['description']['fr-ca'] = ''; $apps[$x]['description']['fr-ch'] = ''; - $apps[$x]['description']['pt-pt'] = 'Adminer (anteriormente phpMinAdmin) é uma completa ferramenta de gestão de banco de dados escrito em PHP. Adminer está disponível para MySQL, PostgreSQL, SQLite, MS SQL e Oracle.'; + $apps[$x]['description']['pt-pt'] = 'Adminer (anteriormente phpMinAdmin) é uma ferramenta completa para gestão de bases de dados escrita em PHP. O Adminer está disponível para MySQL, PostgreSQL, SQLite, MS SQL e Oracle.'; $apps[$x]['description']['pt-br'] = ''; //menu details diff --git a/app/call_block/app_config.php b/app/call_block/app_config.php index 83bd7194d0..11b27933bf 100644 --- a/app/call_block/app_config.php +++ b/app/call_block/app_config.php @@ -79,19 +79,23 @@ $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = 'char(36)'; $apps[$x]['db'][$y]['fields'][$z]['key']['type'] = 'primary'; $z++; - $apps[$x]['db'][$y]['fields'][$z]['name'] = 'blocked_caller_name'; + $apps[$x]['db'][$y]['fields'][$z]['name']['text'] = 'call_block_name'; + $apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = 'blocked_caller_name'; $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; $apps[$x]['db'][$y]['fields'][$z]['description']['en'] = 'Enter the name.'; $z++; - $apps[$x]['db'][$y]['fields'][$z]['name'] = 'blocked_caller_number'; + $apps[$x]['db'][$y]['fields'][$z]['name']['text'] = 'call_block_number'; + $apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = 'blocked_caller_number'; $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; $apps[$x]['db'][$y]['fields'][$z]['description']['en'] = 'Enter the full phone number.'; $z++; - $apps[$x]['db'][$y]['fields'][$z]['name'] = 'blocked_call_count'; + $apps[$x]['db'][$y]['fields'][$z]['name']['text'] = 'call_block_count'; + $apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = 'blocked_call_count'; $apps[$x]['db'][$y]['fields'][$z]['type'] = 'numeric'; $apps[$x]['db'][$y]['fields'][$z]['description']['en'] = 'Number of calls.'; $z++; - $apps[$x]['db'][$y]['fields'][$z]['name'] = 'blocked_call_action'; + $apps[$x]['db'][$y]['fields'][$z]['name']['text'] = 'call_block_action'; + $apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = 'blocked_call_action'; $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; $apps[$x]['db'][$y]['fields'][$z]['description']['en'] = 'Action for call.'; $z++; @@ -99,7 +103,8 @@ $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; $apps[$x]['db'][$y]['fields'][$z]['description']['en'] = 'Date/Time number was added.'; $z++; - $apps[$x]['db'][$y]['fields'][$z]['name'] = 'block_call_enabled'; + $apps[$x]['db'][$y]['fields'][$z]['name']['text'] = 'call_block_enabled'; + $apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = 'block_call_enabled'; $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; $apps[$x]['db'][$y]['fields'][$z]['description']['en'] = 'Enable/disable blocking the call.'; $z++; diff --git a/app/call_block/app_languages.php b/app/call_block/app_languages.php index 5579412433..6afed476e6 100644 --- a/app/call_block/app_languages.php +++ b/app/call_block/app_languages.php @@ -3,27 +3,27 @@ $text['title-call-block']['en-us'] = 'Call Block'; $text['title-call-block']['pt-pt'] = ''; $text['title-call-block']['fr-fr'] = "Bloquage d'appel"; - + $text['description-call-block']['en-us'] = 'A list of numbers from which to block calls.'; $text['description-call-block']['pt-pt'] = ''; $text['description-call-block']['fr-fr'] = "Une liste de numéro dont on veut bloquer les appels"; - + $text['label-number']['en-us'] = 'Number'; $text['label-number']['pt-pt'] = ''; $text['label-number']['fr-fr'] = "Numéro"; - + $text['label-name']['en-us'] = 'Name'; $text['label-name']['pt-pt'] = ''; $text['label-name']['fr-fr'] = "Nom"; - + $text['label-Count']['en-us'] = 'Count'; $text['label-Count']['pt-pt'] = ''; $text['label-Count']['fr-fr'] = "Décompte"; - + $text['label-date-added']['en-us'] = 'Date Added'; $text['label-date-added']['pt-pt'] = ''; $text['label-date-added']['fr-fr'] = "Date Ajoutée"; - + $text['label-action']['en-us'] = 'Action'; $text['label-action']['pt-pt'] = ''; $text['label-action']['fr-fr'] = "Action"; @@ -32,7 +32,6 @@ $text['label-enabled']['pt-pt'] = ''; $text['label-enabled']['fr-fr'] = "Actif"; - $text['button-edit']['en-us'] = 'Edit'; $text['button-edit']['pt-pt'] = ''; $text['button-edit']['fr-fr'] = "Editer"; @@ -40,82 +39,82 @@ $text['button-delete']['en-us'] = 'Delete'; $text['button-delete']['pt-pt'] = ''; $text['button-delete']['fr-fr'] = "Supprimer"; - + $text['button-add']['en-us'] = 'Add'; $text['button-add']['pt-pt'] = ''; $text['button-add']['fr-fr'] = "Ajouter"; - + $text['confirm-delete']['en-us'] = 'Do you really want to delete this?'; $text['confirm-delete']['pt-pt'] = ''; $text['confirm-delete']['fr-fr'] = "Voulez-vous vraiment supprimer cela?"; - + // call_block_cdr_add.php $text['label-add-complete']['en-us'] = 'Add Complete'; $text['label-add-complete']['pt-pt'] = ''; $text['label-add-complete']['fr-fr'] = "Ajouté"; - + // call_block_delete.php $text['label-message']['en-us'] = 'Message'; $text['label-message']['pt-pt'] = ''; $text['label-message']['fr-fr'] = "Message"; - + $text['label-delete-complete']['en-us'] = 'Delete Complete'; $text['label-delete-complete']['pt-pt'] = ''; $text['label-delete-complete']['fr-fr'] = "Supprimé"; - + // call_block_edit.php $text['label-provide-name']['en-us'] = 'Please provide: Name'; $text['label-provide-name']['pt-pt'] = ''; $text['label-provide-name']['fr-fr'] = "Merci d'indiquer: Nom"; - + $text['label-provide-number']['en-us'] = 'Please provide: Number'; $text['label-provide-number']['pt-pt'] = ''; $text['label-provide-number']['fr-fr'] = "Merci d'indiquer: Numéro"; - + $text['label-provide-enabled']['en-us'] = 'Please provide: Enabled'; $text['label-provide-enabled']['pt-pt'] = ''; $text['label-provide-enabled']['fr-fr'] = "Merci d'indiquer: Actif"; - + $text['label-update-complete']['en-us'] = 'Update Complete'; $text['label-update-complete']['pt-pt'] = ''; $text['label-update-complete']['fr-fr'] = "Mis à jour"; - + $text['label-called-on']['en-us'] = 'Called on'; $text['label-called-on']['pt-pt'] = ''; $text['label-called-on']['fr-fr'] = "Appelé sur"; - + $text['label-edit-add']['en-us'] = 'Call Block Add'; $text['label-edit-add']['pt-pt'] = ''; $text['label-edit-add']['fr-fr'] = "Ajouter bloquage d'appel"; - + $text['label-edit-edit']['en-us'] = 'Call Block Edit'; $text['label-edit-edit']['pt-pt'] = ''; $text['label-edit-edit']['fr-fr'] = "Editer le bloquage d'appel"; - + $text['label-add-note']['en-us'] = 'Block calls from a number. Either select a number from the list above or enter the number, name and enable below.'; $text['label-add-note']['pt-pt'] = ''; $text['label-add-note']['fr-fr'] = "Bloquer les appels à partir d'un numéro. Choisissez un numéro dans liste ou entrez un numéro, nom et activer le."; - + $text['label-edit-note']['en-us'] = 'Block calls from a number. Edit the name and enable/disable below.'; $text['label-edit-note']['pt-pt'] = ''; $text['label-edit-note']['fr-fr'] = "Bloquer les appels à partir d'un numéro. Editer le nom et activer/désactiver ci-dessous."; - + $text['label-exact-number']['en-us'] = 'Enter the exact number.'; $text['label-exact-number']['pt-pt'] = ''; $text['label-exact-number']['fr-fr'] = "Entrer le numéro exact."; - + $text['label-reject']['en-us'] = 'Reject'; $text['label-reject']['pt-pt'] = ''; $text['label-reject']['fr-fr'] = "Rejeter."; - + $text['label-busy']['en-us'] = 'Busy'; $text['label-busy']['pt-pt'] = ''; $text['label-busy']['fr-fr'] = "Occupé"; - + $text['label-action-message']['en-us'] = 'Set an action for calls from this number.'; $text['label-action-message']['pt-pt'] = ''; $text['label-action-message']['fr-fr'] = "Choisir une action pour les appels venant de ce numéro."; - + $text['label-true']['en-us'] = 'true'; $text['label-true']['pt-pt'] = ''; $text['label-true']['fr-fr'] = "Oui"; @@ -123,15 +122,15 @@ $text['label-false']['en-us'] = 'false'; $text['label-false']['pt-pt'] = ''; $text['label-false']['fr-fr'] = "Non"; - + $text['label-enable-message']['en-us'] = 'Set to true to enable call blocking for this number.'; $text['label-enable-message']['pt-pt'] = ''; $text['label-enable-message']['fr-fr'] = "Choisir Oui pour activer le bloquage d'appel. "; - + $text['button-save']['en-us'] = 'Save'; $text['button-save']['pt-pt'] = ''; $text['button-save']['fr-fr'] = "Sauvegarder"; - + $text['button-back']['en-us'] = 'Back'; $text['button-back']['pt-pt'] = ''; $text['button-back']['fr-fr'] = "Retour"; diff --git a/app/call_center/app_languages.php b/app/call_center/app_languages.php index 07404384cc..1dfa84935e 100644 --- a/app/call_center/app_languages.php +++ b/app/call_center/app_languages.php @@ -261,13 +261,11 @@ $text['button-reload']['en-us'] = 'Reload'; $text['button-reload']['fr-fr'] = "recharger"; - $text['confirm-delete']['en-us'] = 'Do you really want to delete this?'; $text['confirm-delete']['fr-fr'] = "Voulez-vous vraiment supprimer cela?"; $text['confirm-copy']['en-us'] = 'Do you really want to copy this?'; $text['confirm-copy']['fr-fr'] = "Voulez-vous vraiment copier cela?"; - $text['message-add']['en-us'] = 'Add Completed'; $text['message-add']['fr-fr'] = "Ajouté"; $text['message-update']['en-us'] = 'Update Completed'; diff --git a/app/call_flows/app_languages.php b/app/call_flows/app_languages.php index 5bc0932e0d..3c9cd8676c 100644 --- a/app/call_flows/app_languages.php +++ b/app/call_flows/app_languages.php @@ -1,7 +1,6 @@ diff --git a/app/contacts/app_languages.php b/app/contacts/app_languages.php index 60e92c96e2..dcf5ed09bb 100644 --- a/app/contacts/app_languages.php +++ b/app/contacts/app_languages.php @@ -23,8 +23,6 @@ $text['button-search']['pt-pt'] = ''; $text['button-search']['fr-fr'] = 'Chercher'; - - // contact $text['title-contact-add']['en-us'] = 'Contact Add'; diff --git a/app/content/app_languages.php b/app/content/app_languages.php index c49ef01a68..96183dbd4e 100644 --- a/app/content/app_languages.php +++ b/app/content/app_languages.php @@ -27,82 +27,121 @@ */ $text['title-rss']['en-us'] = 'RSS Feed'; $text['title-rss']['fr-fr'] = 'RSS Feed'; + $text['description-rss']['en-us'] = 'Task List for RSS...'; $text['description-rss']['fr-fr'] = 'Liste de Tâches pour RSS...'; + $text['message-add']['en-us'] = 'Add Complete'; $text['message-add']['fr-fr'] = 'ajouté'; + $text['button-back']['en-us'] = 'Back'; $text['button-back']['fr-fr'] = 'Retour'; + $text['button-public']['en-us'] = 'public'; $text['button-public']['fr-fr'] = 'public'; + $text['label-order']['en-us'] = 'Order'; $text['label-order']['fr-fr'] = 'Ordre'; + $text['label-content']['en-us'] = 'Content'; $text['label-content']['fr-fr'] = 'Contenu'; + $text['button-add-title']['en-us'] = 'Add'; $text['button-add-title']['fr-fr'] = 'Ajouter'; + $text['message-delete-done']['en-us'] = 'Delete Completed'; $text['message-delete-done']['fr-fr'] = 'Supprimé'; + $text['label-list']['en-us'] = 'List'; $text['label-list']['fr-fr'] = 'Liste'; + $text['label-title']['en-us'] = 'Title'; $text['label-title']['fr-fr'] = 'Titre'; + $text['label-link']['en-us'] = 'Link'; $text['label-link']['fr-fr'] = 'Lien'; + $text['label-group']['en-us'] = 'Group'; $text['label-group']['fr-fr'] = 'Groupe'; + $text['label-order']['en-us'] = 'Order'; $text['label-order']['fr-fr'] = 'Ordre'; + $text['label-edit']['en-us'] = 'Edit'; $text['label-edit']['fr-fr'] = 'Editer'; + $text['message-confirm-delete']['en-us'] = 'Do you really want to delete this?'; $text['message-confirm-delete']['fr-fr'] = 'Voulez-vous vraiment faire cela?'; + $text['message-item-down']['en-us'] = 'Item Moved Down'; $text['message-item-down']['fr-fr'] = 'Objet descendu'; + $text['message-item-up']['en-us'] = 'Item Moved Up'; $text['message-item-up']['fr-fr'] = 'Objet remonté'; + $text['label-search']['en-us'] = 'Search Results'; $text['label-search']['fr-fr'] = 'Resultats de la recherche'; + $text['label-id']['en-us'] = 'ID'; $text['label-id']['fr-fr'] = 'ID'; + $text['label-category']['en-us'] = 'Category'; $text['label-category']['fr-fr'] = 'Categorie'; + $text['label-sub-category']['en-us'] = 'Sub Category'; $text['label-sub-category']['fr-fr'] = 'Sous Categorie'; + $text['label-description']['en-us'] = 'Description'; $text['label-description']['fr-fr'] = 'Description'; + $text['button-search']['en-us'] = 'Search'; $text['button-search']['fr-fr'] = 'recherche'; + $text['label-rss-category']['en-us'] = 'RSS Category'; $text['label-rss-category']['fr-fr'] = 'RSS Categorie'; + $text['button-update']['en-us'] = 'Update'; $text['button-update']['fr-fr'] = 'Mise à Jour'; + $text['message-update']['en-us'] = 'Update Complete'; $text['message-update']['fr-fr'] = 'Mis à Jour'; + $text['label-details']['en-us'] = 'Details'; $text['label-details']['fr-fr'] = 'Détails'; + $text['label-template']['en-us'] = 'Template'; $text['label-template']['fr-fr'] = 'Template'; + $text['button-delete']['en-us'] = 'Delete'; $text['button-delete']['fr-fr'] = 'Supprimer'; + $text['label-sub-id']['en-us'] = 'Sub ID'; $text['label-sub-id']['fr-fr'] = 'Sous ID'; + $text['label-sub-title']['en-us'] = 'Sub Title'; $text['label-sub-title']['fr-fr'] = 'Sous Titre'; + $text['label-sub-link']['en-us'] = 'Sub Link'; $text['label-sub-link']['fr-fr'] = 'Sub Link'; + $text['label-sub-desc']['en-us'] = 'Sub Description'; $text['label-sub-desc']['fr-fr'] = 'Sub Description'; + $text['message-error-missing']['en-us'] = 'Error missing'; $text['message-error-missing']['fr-fr'] = 'Erreur missing'; + $text['message-description']['en-us'] = 'Please provide a description.'; $text['message-description']['fr-fr'] = "Merci d'écrire une description."; + $text['label-content-edit']['en-us'] = 'Content Edit'; $text['label-content-edit']['fr-fr'] = "Edition du contenu"; + $text['label-type']['en-us'] = 'Type'; $text['label-type']['fr-fr'] = 'Type'; + $text['label-on-off']['en-us'] = 'on/off'; $text['label-on-off']['fr-fr'] = 'on/off'; + $text['button-save']['en-us'] = 'Save'; $text['button-save']['fr-fr'] = 'Sauvegarde'; diff --git a/app/destinations/app_config.php b/app/destinations/app_config.php index d3bad6ab55..dc1354dbd5 100644 --- a/app/destinations/app_config.php +++ b/app/destinations/app_config.php @@ -13,7 +13,7 @@ $apps[$x]['description']['de-ch'] = ''; $apps[$x]['description']['de-at'] = ''; $apps[$x]['description']['fr-fr'] = "Défini les numéros externes."; - $apps[$x]['description']['fr-ca'] = ''; + $apps[$x]['description']['fr-ca'] = "Usé pour définir cibler nombres externe."; $apps[$x]['description']['fr-ch'] = ''; $apps[$x]['description']['pt-pt'] = 'Utilizado para definir os números de destino externos.'; $apps[$x]['description']['pt-br'] = ''; @@ -25,7 +25,7 @@ $apps[$x]['menu'][0]['title']['de-ch'] = ''; $apps[$x]['menu'][0]['title']['de-at'] = ''; $apps[$x]['menu'][0]['title']['fr-fr'] = 'Destinations'; - $apps[$x]['menu'][0]['title']['fr-ca'] = ''; + $apps[$x]['menu'][0]['title']['fr-ca'] = 'Cibler'; $apps[$x]['menu'][0]['title']['fr-ch'] = ''; $apps[$x]['menu'][0]['title']['pt-pt'] = 'Destinos'; $apps[$x]['menu'][0]['title']['pt-br'] = ''; diff --git a/app/devices/app_languages.php b/app/devices/app_languages.php index e561c55c03..0d22f95837 100644 --- a/app/devices/app_languages.php +++ b/app/devices/app_languages.php @@ -109,6 +109,10 @@ $text['description-server_address']['pt-pt'] = ''; $text['description-server_address']['fr-fr'] = ''; + $text['description-server_address']['en-us'] = 'Select a server address.'; + $text['description-server_address']['pt-pt'] = ''; + $text['description-server_address']['fr-fr'] = ''; + $text['label-outbound_proxy']['en-us'] = 'Outbound Proxy'; $text['label-outbound_proxy']['pt-pt'] = ''; $text['label-outbound_proxy']['fr-fr'] = 'Proxy Sortant'; diff --git a/app/dialplan_features/app_config.php b/app/dialplan_features/app_config.php index 8ab71d3cca..4f4321d3e3 100644 --- a/app/dialplan_features/app_config.php +++ b/app/dialplan_features/app_config.php @@ -13,7 +13,7 @@ $apps[$x]['description']['de-ch'] = ''; $apps[$x]['description']['de-at'] = ''; $apps[$x]['description']['fr-fr'] = "Donne des options aux dialplans comme le transfert, transfert supervisé et plus."; - $apps[$x]['description']['fr-ca'] = ''; + $apps[$x]['description']['fr-ca'] = "Il donne quelqu'options aux dialplans comme transfer, appel en attend et plus."; $apps[$x]['description']['fr-ch'] = ''; $apps[$x]['description']['pt-pt'] = 'Fornece recursos contexto dialplan inclusive em transferência de chamadas e transferência atendidos e mais.'; $apps[$x]['description']['pt-br'] = ''; diff --git a/app/dialplan_outbound/app_config.php b/app/dialplan_outbound/app_config.php index 9c4a337fda..b107eb29a3 100644 --- a/app/dialplan_outbound/app_config.php +++ b/app/dialplan_outbound/app_config.php @@ -13,7 +13,7 @@ $apps[$x]['description']['de-ch'] = ''; $apps[$x]['description']['de-at'] = ''; $apps[$x]['description']['fr-fr'] = "Les dialpans sortants attribuent un appel en fonction d'une ou plusieurs conditions. Quand les conditions sont remplies, l'appel est dirigés vers la passarelle séléctionée."; - $apps[$x]['description']['fr-ca'] = ''; + $apps[$x]['description']['fr-ca'] = "Les dialpants sortants ont une ou plus conditions qui devent répondre. Quand les conditions son tout répondres, l'appel est dirigers vers la passarelle séléctioné."; $apps[$x]['description']['fr-ch'] = ''; $apps[$x]['description']['pt-pt'] = 'Dialplans de saída tem uma ou mais condições que são compatíveis com os atributos de uma chamada. Quando uma chamada coincide com as condições da chamada é então encaminhado para o gateway.'; $apps[$x]['description']['pt-br'] = ''; diff --git a/app/exec/app_config.php b/app/exec/app_config.php index d4dd1fa5ef..42e366ce1d 100644 --- a/app/exec/app_config.php +++ b/app/exec/app_config.php @@ -13,7 +13,7 @@ $apps[$x]['description']['de-ch'] = ''; $apps[$x]['description']['de-at'] = ''; $apps[$x]['description']['fr-fr'] = "Offre un mode pour exécuter des commandes système, PHP ou switch."; - $apps[$x]['description']['fr-ca'] = ''; + $apps[$x]['description']['fr-ca'] = "Il offre un mode d'exécuter des commandes du système, PHP ou switch."; $apps[$x]['description']['fr-ch'] = ''; $apps[$x]['description']['pt-pt'] = 'Fornece uma maneira conveniente para executar o sistema, PHP e comandos do switch.'; $apps[$x]['description']['pt-br'] = ''; @@ -25,7 +25,7 @@ $apps[$x]['menu'][0]['title']['de-ch'] = ''; $apps[$x]['menu'][0]['title']['de-at'] = ''; $apps[$x]['menu'][0]['title']['fr-fr'] = 'Commande'; - $apps[$x]['menu'][0]['title']['fr-ca'] = ''; + $apps[$x]['menu'][0]['title']['fr-ca'] = 'Command'; $apps[$x]['menu'][0]['title']['fr-ch'] = ''; $apps[$x]['menu'][0]['title']['pt-pt'] = 'Comando'; $apps[$x]['menu'][0]['title']['pt-br'] = ''; diff --git a/app/extensions/app_languages.php b/app/extensions/app_languages.php index ca2e3ee2c2..9887ae10fc 100644 --- a/app/extensions/app_languages.php +++ b/app/extensions/app_languages.php @@ -64,7 +64,7 @@ $text['checkbox-range']['en-us'] = 'Auto-generate user with extension as login name'; $text['checkbox-range']['pt-pt'] = ''; - $text['checkbox-range']['fr-fr'] = "Auto-générer l'usager avec l'extension comme ID de login"; + $text['checkbox-range']['fr-fr'] = "Auto-générer l'usager avec l'extension comme ID de login"; $text['label-user_list']['en-us'] = 'User List'; $text['label-user_list']['pt-pt'] = ''; diff --git a/app/fifo/app_config.php b/app/fifo/app_config.php index c7e311ea52..f9f8126b01 100644 --- a/app/fifo/app_config.php +++ b/app/fifo/app_config.php @@ -12,7 +12,7 @@ $apps[$x]['description']['de-de'] = ''; $apps[$x]['description']['de-ch'] = ''; $apps[$x]['description']['de-at'] = ''; - $apps[$x]['description']['fr-fr'] = "Les files sont utilisés pour configurer les salles d'attente (FIFO)."; + $apps[$x]['description']['fr-fr'] = "Les queues sont utilisés pour configurer les salles d'attente (FIFO)."; $apps[$x]['description']['fr-ca'] = ''; $apps[$x]['description']['fr-ch'] = ''; $apps[$x]['description']['pt-pt'] = 'As filas são usados​para configurar as filas de espera para chamadores. Também conhecida como filas FIFO.'; diff --git a/app/fifo/app_languages.php b/app/fifo/app_languages.php index 89d5362a1d..7fdd516140 100644 --- a/app/fifo/app_languages.php +++ b/app/fifo/app_languages.php @@ -30,7 +30,6 @@ $text['header-additional_information']['en-us'] = 'Additional Information'; $text['header-additional_information']['fr-fr'] = 'Informations Additionnelles'; - $text['description-queues']['en-us'] = 'Queues are used to setup waiting lines for callers. Also known as FIFO Queues.'; $text['description-queues']['fr-fr'] = "Les queues sont également appelées files d'attentes ou FIFO queues."; $text['description-queue_add']['en-us'] = 'In simple terms queues are holding patterns for callers to wait until someone is available to take the call. Also known as FIFO Queues.'; diff --git a/app/fifo_list/app_config.php b/app/fifo_list/app_config.php index 54ec142e7a..0b83338f37 100644 --- a/app/fifo_list/app_config.php +++ b/app/fifo_list/app_config.php @@ -13,7 +13,7 @@ $apps[$x]['description']['de-ch'] = ''; $apps[$x]['description']['de-at'] = ''; $apps[$x]['description']['fr-fr'] = "Liste toutes les files d'attente actuellement utilisées avec une ou plus des personnes en attend."; - $apps[$x]['description']['fr-ca'] = ''; + $apps[$x]['description']['fr-ca'] = "Il liste toutes les queues qui sont maintenant utilisés avec une ou plus des personnes en attend."; $apps[$x]['description']['fr-ch'] = ''; $apps[$x]['description']['pt-pt'] = 'Liste todas as filas que estão atualmente ativas com um ou mais interlocutores.'; $apps[$x]['description']['pt-br'] = ''; @@ -24,8 +24,8 @@ $apps[$x]['menu'][0]['title']['de-de'] = ''; $apps[$x]['menu'][0]['title']['de-ch'] = ''; $apps[$x]['menu'][0]['title']['de-at'] = ''; - $apps[$x]['menu'][0]['title']['fr-fr'] = 'Files actives'; - $apps[$x]['menu'][0]['title']['fr-ca'] = ''; + $apps[$x]['menu'][0]['title']['fr-fr'] = 'Queues actives'; + $apps[$x]['menu'][0]['title']['fr-ca'] = 'Queues actives'; $apps[$x]['menu'][0]['title']['fr-ch'] = ''; $apps[$x]['menu'][0]['title']['pt-pt'] = 'Filas Activas'; $apps[$x]['menu'][0]['title']['pt-br'] = ''; @@ -37,19 +37,19 @@ $apps[$x]['menu'][0]['groups'][] = 'superadmin'; //permission details - $apps[$x]['permissions'][0]['name'] = 'active_queues_view'; + $apps[$x]['permissions'][0]['name'] = 'active_queue_view'; $apps[$x]['permissions'][0]['groups'][] = 'admin'; $apps[$x]['permissions'][0]['groups'][] = 'superadmin'; - $apps[$x]['permissions'][1]['name'] = 'active_queues_add'; + $apps[$x]['permissions'][1]['name'] = 'active_queue_add'; $apps[$x]['permissions'][1]['groups'][] = 'admin'; $apps[$x]['permissions'][1]['groups'][] = 'superadmin'; - $apps[$x]['permissions'][2]['name'] = 'active_queues_edit'; + $apps[$x]['permissions'][2]['name'] = 'active_queue_edit'; $apps[$x]['permissions'][2]['groups'][] = 'admin'; $apps[$x]['permissions'][2]['groups'][] = 'superadmin'; - $apps[$x]['permissions'][3]['name'] = 'active_queues_delete'; + $apps[$x]['permissions'][3]['name'] = 'active_queue_delete'; $apps[$x]['permissions'][3]['groups'][] = 'admin'; $apps[$x]['permissions'][3]['groups'][] = 'superadmin'; ?> diff --git a/app/hot_desking/app_config.php b/app/hot_desking/app_config.php index b817262624..7af77490e5 100644 --- a/app/hot_desking/app_config.php +++ b/app/hot_desking/app_config.php @@ -13,7 +13,7 @@ $apps[$x]['description']['de-ch'] = ''; $apps[$x]['description']['de-at'] = ''; $apps[$x]['description']['fr-fr'] = "S'identifier au bureau avec un ID et un mot de passe pour diriger touts les appels vers autre poste. Passer et recevoir appels."; - $apps[$x]['description']['fr-ca'] = ''; + $apps[$x]['description']['fr-ca'] = "S'identifier au bureau avec un ID et la mot de passe pour diriger touts les appels vers autre bureau lointain. Faites et recevoyez appels."; $apps[$x]['description']['fr-ch'] = ''; $apps[$x]['description']['pt-pt'] = 'Entrar em desking quente com um ID e sua senha de correio de voz para encaminhar as chamadas para um ramal remoto. Em seguida, fazer e receber ligações como se estivesse em sua extensão.'; $apps[$x]['description']['pt-br'] = ''; @@ -25,7 +25,7 @@ $apps[$x]['menu'][0]['title']['de-ch'] = ''; $apps[$x]['menu'][0]['title']['de-at'] = ''; $apps[$x]['menu'][0]['title']['fr-fr'] = 'Itinérance'; - $apps[$x]['menu'][0]['title']['fr-ca'] = ''; + $apps[$x]['menu'][0]['title']['fr-ca'] = 'Bureau Lointain'; $apps[$x]['menu'][0]['title']['fr-ch'] = ''; $apps[$x]['menu'][0]['title']['pt-pt'] = 'Hot Desking'; $apps[$x]['menu'][0]['title']['pt-br'] = ''; diff --git a/app/login/app_config.php b/app/login/app_config.php index b304852698..1360228713 100644 --- a/app/login/app_config.php +++ b/app/login/app_config.php @@ -12,7 +12,7 @@ $apps[$x]['description']['de-de'] = ''; $apps[$x]['description']['de-ch'] = ''; $apps[$x]['description']['de-at'] = ''; - $apps[$x]['description']['fr-fr'] = 'Pour connecter un compte usager'; + $apps[$x]['description']['fr-fr'] = "Pour connecter un compte usager"; $apps[$x]['description']['fr-ca'] = ''; $apps[$x]['description']['fr-ch'] = ''; $apps[$x]['description']['pt-pt'] = ''; diff --git a/app/modules/app_config.php b/app/modules/app_config.php index de61cfd7ec..da03632f53 100644 --- a/app/modules/app_config.php +++ b/app/modules/app_config.php @@ -12,7 +12,7 @@ $apps[$x]['description']['de-de'] = ''; $apps[$x]['description']['de-ch'] = ''; $apps[$x]['description']['de-at'] = ''; - $apps[$x]['description']['fr-fr'] = 'Les Modules augmentent les fonctionnalitées du système. Ici il est possible de les activer et de les désactiver.'; + $apps[$x]['description']['fr-fr'] = "Les Modules augmentent les fonctionnalitées du système. Ici il est possible de les activer et de les désactiver."; $apps[$x]['description']['fr-ca'] = ''; $apps[$x]['description']['fr-ch'] = ''; $apps[$x]['description']['pt-pt'] = 'Módulos estendem as funcionalidades do sistema. Utilize esta página para ativar ou desativar módulos.'; diff --git a/app/music_on_hold/app_config.php b/app/music_on_hold/app_config.php index bef9119296..3e89c938a3 100644 --- a/app/music_on_hold/app_config.php +++ b/app/music_on_hold/app_config.php @@ -24,7 +24,7 @@ $apps[$x]['menu'][0]['title']['de-de'] = ''; $apps[$x]['menu'][0]['title']['de-ch'] = ''; $apps[$x]['menu'][0]['title']['de-at'] = ''; - $apps[$x]['menu'][0]['title']['fr-fr'] = 'Musique de Garde'; + $apps[$x]['menu'][0]['title']['fr-fr'] = "Musique de Garde"; $apps[$x]['menu'][0]['title']['fr-ca'] = ''; $apps[$x]['menu'][0]['title']['fr-ch'] = ''; $apps[$x]['menu'][0]['title']['pt-pt'] = 'Musica em Espera'; diff --git a/app/music_on_hold/app_languages.php b/app/music_on_hold/app_languages.php index 11b1ddbee9..0a81ff0e30 100644 --- a/app/music_on_hold/app_languages.php +++ b/app/music_on_hold/app_languages.php @@ -37,11 +37,14 @@ $text['button-clear']['en-us'] = 'Clear'; $text['button-clear']['fr-fr'] = 'Nettoyer'; $text['label-sampling']['en-us'] = 'Sampling'; + $text['label-sampling']['fr-ca'] = 'échatillage'; $text['label-sampling']['fr-fr'] = 'échantillonnage'; $text['label-category']['en-us'] = 'Category'; $text['label-category']['fr-fr'] = 'Categorie'; $text['opt-default']['en-us'] = 'Default'; + $text['opt-default']['en-us'] = 'Défaut'; $text['opt-default']['fr-fr'] = 'Défaut'; + $text['opt-new']['en-us'] = 'New...'; $text['opt-new']['fr-fr'] = 'Nouveau...'; $text['message-click-select']['en-us'] = 'Double-Click to Select an Existing Category'; diff --git a/app/recordings/app_config.php b/app/recordings/app_config.php index 80d4124110..c5b2acbecd 100644 --- a/app/recordings/app_config.php +++ b/app/recordings/app_config.php @@ -12,7 +12,7 @@ $apps[$x]['description']['de-de'] = ''; $apps[$x]['description']['de-ch'] = ''; $apps[$x]['description']['de-at'] = ''; - $apps[$x]['description']['fr-fr'] = 'Gestion des enregistrements principalement utilisé dans les IVR'; + $apps[$x]['description']['fr-fr'] = "Gestion des enregistrements principalement utilisé dans les IVR"; $apps[$x]['description']['fr-ca'] = ''; $apps[$x]['description']['fr-ch'] = ''; $apps[$x]['description']['pt-pt'] = 'Gestor de gravações utilizadas principalmente com um IVR.'; @@ -37,32 +37,32 @@ $apps[$x]['menu'][0]['groups'][] = 'superadmin'; //permission details - $apps[$x]['permissions'][0]['name'] = 'recordings_view'; + $apps[$x]['permissions'][0]['name'] = 'recording_view'; $apps[$x]['permissions'][0]['groups'][] = 'admin'; $apps[$x]['permissions'][0]['groups'][] = 'superadmin'; - $apps[$x]['permissions'][1]['name'] = 'recordings_add'; + $apps[$x]['permissions'][1]['name'] = 'recording_add'; $apps[$x]['permissions'][1]['groups'][] = 'admin'; $apps[$x]['permissions'][1]['groups'][] = 'superadmin'; - $apps[$x]['permissions'][2]['name'] = 'recordings_edit'; + $apps[$x]['permissions'][2]['name'] = 'recording_edit'; $apps[$x]['permissions'][2]['groups'][] = 'admin'; $apps[$x]['permissions'][2]['groups'][] = 'superadmin'; - $apps[$x]['permissions'][3]['name'] = 'recordings_delete'; + $apps[$x]['permissions'][3]['name'] = 'recording_delete'; $apps[$x]['permissions'][3]['groups'][] = 'admin'; $apps[$x]['permissions'][3]['groups'][] = 'superadmin'; - $apps[$x]['permissions'][4]['name'] = 'recordings_upload'; + $apps[$x]['permissions'][4]['name'] = 'recording_upload'; $apps[$x]['permissions'][4]['groups'][] = 'admin'; $apps[$x]['permissions'][4]['groups'][] = 'superadmin'; - $apps[$x]['permissions'][5]['name'] = 'recordings_play'; + $apps[$x]['permissions'][5]['name'] = 'recording_play'; $apps[$x]['permissions'][5]['groups'][] = 'user'; $apps[$x]['permissions'][5]['groups'][] = 'admin'; $apps[$x]['permissions'][5]['groups'][] = 'superadmin'; - $apps[$x]['permissions'][6]['name'] = 'recordings_download'; + $apps[$x]['permissions'][6]['name'] = 'recording_download'; $apps[$x]['permissions'][6]['groups'][] = 'user'; $apps[$x]['permissions'][6]['groups'][] = 'admin'; $apps[$x]['permissions'][6]['groups'][] = 'superadmin'; diff --git a/app/services/app_config.php b/app/services/app_config.php index 826bddfa74..c075fec765 100644 --- a/app/services/app_config.php +++ b/app/services/app_config.php @@ -12,7 +12,7 @@ $apps[$x]['description']['de-de'] = ''; $apps[$x]['description']['de-ch'] = ''; $apps[$x]['description']['de-at'] = ''; - $apps[$x]['description']['fr-fr'] = 'Contrôler les services du système'; + $apps[$x]['description']['fr-fr'] = "Contrôler les services du système"; $apps[$x]['description']['fr-ca'] = ''; $apps[$x]['description']['fr-ch'] = ''; $apps[$x]['description']['pt-pt'] = 'Monitorizar Serviços do Sistema.'; @@ -24,7 +24,7 @@ $apps[$x]['menu'][0]['title']['de-de'] = ''; $apps[$x]['menu'][0]['title']['de-ch'] = ''; $apps[$x]['menu'][0]['title']['de-at'] = ''; - $apps[$x]['menu'][0]['title']['fr-fr'] = 'Services'; + $apps[$x]['menu'][0]['title']['fr-fr'] = "Services"; $apps[$x]['menu'][0]['title']['fr-ca'] = ''; $apps[$x]['menu'][0]['title']['fr-ch'] = ''; $apps[$x]['menu'][0]['title']['pt-pt'] = 'Serviços'; @@ -36,16 +36,16 @@ $apps[$x]['menu'][0]['groups'][] = 'superadmin'; //permission details - $apps[$x]['permissions'][0]['name'] = 'services_view'; + $apps[$x]['permissions'][0]['name'] = 'service_view'; $apps[$x]['permissions'][0]['groups'][] = 'superadmin'; - $apps[$x]['permissions'][1]['name'] = 'services_add'; + $apps[$x]['permissions'][1]['name'] = 'service_add'; $apps[$x]['permissions'][1]['groups'][] = 'superadmin'; - $apps[$x]['permissions'][2]['name'] = 'services_edit'; + $apps[$x]['permissions'][2]['name'] = 'service_edit'; $apps[$x]['permissions'][2]['groups'][] = 'superadmin'; - $apps[$x]['permissions'][3]['name'] = 'services_delete'; + $apps[$x]['permissions'][3]['name'] = 'service_delete'; $apps[$x]['permissions'][3]['groups'][] = 'superadmin'; //schema details diff --git a/app/sip_profiles/app_config.php b/app/sip_profiles/app_config.php index a32944a35b..141de95905 100644 --- a/app/sip_profiles/app_config.php +++ b/app/sip_profiles/app_config.php @@ -60,6 +60,18 @@ $y++; $apps[$x]['permissions'][$y]['name'] = 'sip_profile_setting_delete'; $apps[$x]['permissions'][$y]['groups'][] = 'superadmin'; + $y++; + $apps[$x]['permissions'][$y]['name'] = 'sip_profile_setting_view'; + $apps[$x]['permissions'][$y]['groups'][] = 'superadmin'; + $y++; + $apps[$x]['permissions'][$y]['name'] = 'sip_profile_setting_add'; + $apps[$x]['permissions'][$y]['groups'][] = 'superadmin'; + $y++; + $apps[$x]['permissions'][$y]['name'] = 'sip_profile_setting_edit'; + $apps[$x]['permissions'][$y]['groups'][] = 'superadmin'; + $y++; + $apps[$x]['permissions'][$y]['name'] = 'sip_profile_setting_delete'; + $apps[$x]['permissions'][$y]['groups'][] = 'superadmin'; //schema details $y = 0; //table array index diff --git a/app/sql_query/app_config.php b/app/sql_query/app_config.php index be4f6b8073..2242e0c657 100644 --- a/app/sql_query/app_config.php +++ b/app/sql_query/app_config.php @@ -12,7 +12,7 @@ $apps[$x]['description']['de-de'] = ''; $apps[$x]['description']['de-ch'] = ''; $apps[$x]['description']['de-at'] = ''; - $apps[$x]['description']['fr-fr'] = 'Lancer de requêtes SQL'; + $apps[$x]['description']['fr-fr'] = "Lancer de requêtes SQL"; $apps[$x]['description']['fr-ca'] = ''; $apps[$x]['description']['fr-ch'] = ''; $apps[$x]['description']['pt-pt'] = 'Executar comandos Língua estruturação de consulta.'; @@ -24,7 +24,7 @@ $apps[$x]['menu'][0]['title']['de-de'] = ''; $apps[$x]['menu'][0]['title']['de-ch'] = ''; $apps[$x]['menu'][0]['title']['de-at'] = ''; - $apps[$x]['menu'][0]['title']['fr-fr'] = 'Requête SQL'; + $apps[$x]['menu'][0]['title']['fr-fr'] = "Requête SQL"; $apps[$x]['menu'][0]['title']['fr-ca'] = ''; $apps[$x]['menu'][0]['title']['fr-ch'] = ''; $apps[$x]['menu'][0]['title']['pt-pt'] = 'Consulta SQL'; diff --git a/app/time_conditions/app_config.php b/app/time_conditions/app_config.php index 1e820939a8..ec1e07686b 100644 --- a/app/time_conditions/app_config.php +++ b/app/time_conditions/app_config.php @@ -24,7 +24,7 @@ $apps[$x]['menu'][0]['title']['de-de'] = ''; $apps[$x]['menu'][0]['title']['de-ch'] = ''; $apps[$x]['menu'][0]['title']['de-at'] = ''; - $apps[$x]['menu'][0]['title']['fr-fr'] = 'Conditions Temporelles'; + $apps[$x]['menu'][0]['title']['fr-fr'] = "Conditions Temporelles"; $apps[$x]['menu'][0]['title']['fr-ca'] = ''; $apps[$x]['menu'][0]['title']['fr-ch'] = ''; $apps[$x]['menu'][0]['title']['pt-pt'] = 'Condições de tempo'; diff --git a/app/traffic_graph/app_config.php b/app/traffic_graph/app_config.php index 5909f25c6d..7a0b2fa6e1 100644 --- a/app/traffic_graph/app_config.php +++ b/app/traffic_graph/app_config.php @@ -12,7 +12,7 @@ $apps[$x]['description']['de-de'] = ''; $apps[$x]['description']['de-ch'] = ''; $apps[$x]['description']['de-at'] = ''; - $apps[$x]['description']['fr-fr'] = 'Affiche le traffique Réseau via SVG'; + $apps[$x]['description']['fr-fr'] = "Affiche le traffique Réseau via SVG"; $apps[$x]['description']['fr-ca'] = ''; $apps[$x]['description']['fr-ch'] = ''; $apps[$x]['description']['pt-pt'] = 'Utiliza SVG para mostrar o tráfego de rede.'; @@ -24,7 +24,7 @@ $apps[$x]['menu'][0]['title']['de-de'] = ''; $apps[$x]['menu'][0]['title']['de-ch'] = ''; $apps[$x]['menu'][0]['title']['de-at'] = ''; - $apps[$x]['menu'][0]['title']['fr-fr'] = 'Traffic Graphe'; + $apps[$x]['menu'][0]['title']['fr-fr'] = "Traffic Graphe"; $apps[$x]['menu'][0]['title']['fr-ca'] = ''; $apps[$x]['menu'][0]['title']['fr-ch'] = ''; $apps[$x]['menu'][0]['title']['pt-pt'] = 'Grafico de Trafego'; diff --git a/app/voicemail_greetings/app_config.php b/app/voicemail_greetings/app_config.php index a1fcfcf8e7..77db2f82f2 100644 --- a/app/voicemail_greetings/app_config.php +++ b/app/voicemail_greetings/app_config.php @@ -12,10 +12,10 @@ $apps[$x]['description']['de-de'] = ''; $apps[$x]['description']['de-ch'] = ''; $apps[$x]['description']['de-at'] = ''; - $apps[$x]['description']['fr-fr'] = 'Accueil messagerie Vocale'; + $apps[$x]['description']['fr-fr'] = "Accueil messagerie Vocale"; $apps[$x]['description']['fr-ca'] = ''; $apps[$x]['description']['fr-ch'] = ''; - $apps[$x]['description']['pt-pt'] = 'Gestor de saudações de correio de voz para extensões.'; + $apps[$x]['description']['pt-pt'] = "Gestor de saudações de correio de voz para extensões."; $apps[$x]['description']['pt-br'] = ''; //menu details @@ -28,37 +28,37 @@ //$apps[$x]['menu'][0]['groups'][] = 'superadmin'; //permission details - $apps[$x]['permissions'][0]['name'] = 'voicemail_greetings_view'; + $apps[$x]['permissions'][0]['name'] = 'voicemail_greeting_view'; $apps[$x]['permissions'][0]['groups'][] = 'user'; $apps[$x]['permissions'][0]['groups'][] = 'admin'; $apps[$x]['permissions'][0]['groups'][] = 'superadmin'; - $apps[$x]['permissions'][1]['name'] = 'voicemail_greetings_add'; + $apps[$x]['permissions'][1]['name'] = 'voicemail_greeting_add'; $apps[$x]['permissions'][1]['groups'][] = 'user'; $apps[$x]['permissions'][1]['groups'][] = 'admin'; $apps[$x]['permissions'][1]['groups'][] = 'superadmin'; - $apps[$x]['permissions'][2]['name'] = 'voicemail_greetings_edit'; + $apps[$x]['permissions'][2]['name'] = 'voicemail_greeting_edit'; $apps[$x]['permissions'][2]['groups'][] = 'user'; $apps[$x]['permissions'][2]['groups'][] = 'admin'; $apps[$x]['permissions'][2]['groups'][] = 'superadmin'; - $apps[$x]['permissions'][3]['name'] = 'voicemail_greetings_delete'; + $apps[$x]['permissions'][3]['name'] = 'voicemail_greeting_delete'; $apps[$x]['permissions'][3]['groups'][] = 'user'; $apps[$x]['permissions'][3]['groups'][] = 'admin'; $apps[$x]['permissions'][3]['groups'][] = 'superadmin'; - $apps[$x]['permissions'][4]['name'] = 'voicemail_greetings_upload'; + $apps[$x]['permissions'][4]['name'] = 'voicemail_greeting_upload'; $apps[$x]['permissions'][4]['groups'][] = 'user'; $apps[$x]['permissions'][4]['groups'][] = 'admin'; $apps[$x]['permissions'][4]['groups'][] = 'superadmin'; - $apps[$x]['permissions'][5]['name'] = 'voicemail_greetings_play'; + $apps[$x]['permissions'][5]['name'] = 'voicemail_greeting_play'; $apps[$x]['permissions'][5]['groups'][] = 'user'; $apps[$x]['permissions'][5]['groups'][] = 'admin'; $apps[$x]['permissions'][5]['groups'][] = 'superadmin'; - $apps[$x]['permissions'][6]['name'] = 'voicemail_greetings_download'; + $apps[$x]['permissions'][6]['name'] = 'voicemail_greeting_download'; $apps[$x]['permissions'][6]['groups'][] = 'user'; $apps[$x]['permissions'][6]['groups'][] = 'admin'; $apps[$x]['permissions'][6]['groups'][] = 'superadmin'; diff --git a/app/voicemails/app_languages.php b/app/voicemails/app_languages.php index 4da724539f..2b05deb9c0 100644 --- a/app/voicemails/app_languages.php +++ b/app/voicemails/app_languages.php @@ -29,7 +29,6 @@ $text['description-voicemail_password']['pt-pt'] = ''; $text['description-voicemail_password']['fr-fr'] = ''; - $text['label-greeting_id']['en-us'] = 'Greeting ID'; $text['label-greeting_id']['pt-pt'] = ''; $text['label-greeting_id']['fr-fr'] = 'ID de Salutation'; @@ -236,7 +235,7 @@ $text['label-message_status']['fr-fr'] = 'Etat'; $text['description-message_status']['en-us'] = 'Status'; - $text['description-message_status']['pt-pt'] = ''; + $text['description-message_status']['pt-pt'] = 'Estado'; $text['description-message_status']['fr-fr'] = 'Etat'; $text['label-message_priority']['en-us'] = 'Priority'; diff --git a/core/apps/app_config.php b/core/apps/app_config.php index a08fc8bb45..10f82ee4d4 100644 --- a/core/apps/app_config.php +++ b/core/apps/app_config.php @@ -24,7 +24,7 @@ $apps[$x]['menu'][0]['title']['de-de'] = ''; $apps[$x]['menu'][0]['title']['de-ch'] = ''; $apps[$x]['menu'][0]['title']['de-at'] = ''; - $apps[$x]['menu'][0]['title']['fr-fr'] = 'Gestion App'; + $apps[$x]['menu'][0]['title']['fr-fr'] = "Gestion App"; $apps[$x]['menu'][0]['title']['fr-ca'] = ''; $apps[$x]['menu'][0]['title']['fr-ch'] = ''; $apps[$x]['menu'][0]['title']['pt-pt'] = 'Gestor de Aplicações'; diff --git a/core/default_settings/app_config.php b/core/default_settings/app_config.php index a60e7091d7..5f175c20c2 100644 --- a/core/default_settings/app_config.php +++ b/core/default_settings/app_config.php @@ -12,7 +12,7 @@ $apps[$x]['description']['de-de'] = ''; $apps[$x]['description']['de-ch'] = ''; $apps[$x]['description']['de-at'] = ''; - $apps[$x]['description']['fr-fr'] = 'Configurations par défaut applicable à tous les domaines'; + $apps[$x]['description']['fr-fr'] = "Configurations par défaut applicable à tous les domaines"; $apps[$x]['description']['fr-ca'] = ''; $apps[$x]['description']['fr-ch'] = ''; $apps[$x]['description']['pt-pt'] = 'Configurações padrão que se aplicam a todos os domínios.'; @@ -24,7 +24,7 @@ $apps[$x]['menu'][0]['title']['de-de'] = ''; $apps[$x]['menu'][0]['title']['de-ch'] = ''; $apps[$x]['menu'][0]['title']['de-at'] = ''; - $apps[$x]['menu'][0]['title']['fr-fr'] = 'Confs par Défaut'; + $apps[$x]['menu'][0]['title']['fr-fr'] = "Confs par Défaut"; $apps[$x]['menu'][0]['title']['fr-ca'] = ''; $apps[$x]['menu'][0]['title']['fr-ch'] = ''; $apps[$x]['menu'][0]['title']['pt-pt'] = 'Predefinições'; diff --git a/core/domain_settings/app_config.php b/core/domain_settings/app_config.php index ea0a99d24a..8c9dfc6d3e 100644 --- a/core/domain_settings/app_config.php +++ b/core/domain_settings/app_config.php @@ -24,10 +24,10 @@ $apps[$x]['menu'][0]['title']['de-de'] = ''; $apps[$x]['menu'][0]['title']['de-ch'] = ''; $apps[$x]['menu'][0]['title']['de-at'] = ''; - $apps[$x]['menu'][0]['title']['fr-fr'] = 'domaines'; + $apps[$x]['menu'][0]['title']['fr-fr'] = "domaines"; $apps[$x]['menu'][0]['title']['fr-ca'] = ''; $apps[$x]['menu'][0]['title']['fr-ch'] = ''; - $apps[$x]['menu'][0]['title']['pt-pt'] = 'Dominios'; + $apps[$x]['menu'][0]['title']['pt-pt'] = "Dominios"; $apps[$x]['menu'][0]['title']['pt-br'] = ''; $apps[$x]['menu'][0]['uuid'] = '4fa7e90b-6d6c-12d4-712f-62857402b801'; $apps[$x]['menu'][0]['parent_uuid'] = '594d99c5-6128-9c88-ca35-4b33392cec0f'; diff --git a/core/upgrade/app_config.php b/core/upgrade/app_config.php index 0955a720ab..77b7e4119e 100644 --- a/core/upgrade/app_config.php +++ b/core/upgrade/app_config.php @@ -11,10 +11,10 @@ $apps[$x]['description']['de-de'] = ''; $apps[$x]['description']['de-ch'] = ''; $apps[$x]['description']['de-at'] = ''; - $apps[$x]['description']['fr-fr'] = 'Mise à jour du Schéma de la base de données'; + $apps[$x]['description']['fr-fr'] = "Mise à jour du Schéma de la base de données"; $apps[$x]['description']['fr-ca'] = ''; $apps[$x]['description']['fr-ch'] = ''; - $apps[$x]['description']['pt-pt'] = 'Atualizar o esquema de base de dados.'; + $apps[$x]['description']['pt-pt'] = "Atualizar o esquema de base de dados."; $apps[$x]['description']['pt-br'] = ''; //menu details @@ -23,10 +23,10 @@ $apps[$x]['menu'][0]['title']['de-de'] = ''; $apps[$x]['menu'][0]['title']['de-ch'] = ''; $apps[$x]['menu'][0]['title']['de-at'] = ''; - $apps[$x]['menu'][0]['title']['fr-fr'] = 'MàJ BDD'; + $apps[$x]['menu'][0]['title']['fr-fr'] = "MàJ BDD"; $apps[$x]['menu'][0]['title']['fr-ca'] = ''; $apps[$x]['menu'][0]['title']['fr-ch'] = ''; - $apps[$x]['menu'][0]['title']['pt-pt'] = 'Actualizar BD'; + $apps[$x]['menu'][0]['title']['pt-pt'] = "Actualizar BD"; $apps[$x]['menu'][0]['title']['pt-br'] = ''; $apps[$x]['menu'][0]['uuid'] = '8c826e92-be3c-0944-669a-24e5b915d562'; $apps[$x]['menu'][0]['parent_uuid'] = '594d99c5-6128-9c88-ca35-4b33392cec0f'; diff --git a/core/user_settings/app_config.php b/core/user_settings/app_config.php index 8cc515430e..52499058bc 100644 --- a/core/user_settings/app_config.php +++ b/core/user_settings/app_config.php @@ -7,7 +7,7 @@ $apps[$x]['version'] = ''; $apps[$x]['license'] = 'Mozilla Public License 1.1'; $apps[$x]['url'] = 'http://www.fusionpbx.com'; - $apps[$x]['description']['en-us'] = 'User account settings can be changed by the user.'; + $apps[$x]['description']['en-us'] = "User account settings can be changed by the user."; $apps[$x]['description']['es-mx'] = ''; $apps[$x]['description']['de-de'] = ''; $apps[$x]['description']['de-ch'] = ''; @@ -24,10 +24,10 @@ $apps[$x]['menu'][0]['title']['de-de'] = ''; $apps[$x]['menu'][0]['title']['de-ch'] = ''; $apps[$x]['menu'][0]['title']['de-at'] = ''; - $apps[$x]['menu'][0]['title']['fr-fr'] = 'Confs du Compte'; + $apps[$x]['menu'][0]['title']['fr-fr'] = "Confs du Compte"; $apps[$x]['menu'][0]['title']['fr-ca'] = ''; $apps[$x]['menu'][0]['title']['fr-ch'] = ''; - $apps[$x]['menu'][0]['title']['pt-pt'] = 'Configurações da Conta'; + $apps[$x]['menu'][0]['title']['pt-pt'] = "Configurações da Conta"; $apps[$x]['menu'][0]['title']['pt-br'] = ''; $apps[$x]['menu'][0]['uuid'] = '4d532f0b-c206-c39d-ff33-fc67d668fb69'; $apps[$x]['menu'][0]['parent_uuid'] = '02194288-6d56-6d3e-0b1a-d53a2bc10788'; @@ -38,12 +38,12 @@ $apps[$x]['menu'][0]['groups'][] = 'superadmin'; //permission details - $apps[$x]['permissions'][0]['name'] = 'user_account_settings_view'; + $apps[$x]['permissions'][0]['name'] = 'user_account_setting_view'; $apps[$x]['permissions'][0]['groups'][] = 'user'; $apps[$x]['permissions'][0]['groups'][] = 'admin'; $apps[$x]['permissions'][0]['groups'][] = 'superadmin'; - $apps[$x]['permissions'][1]['name'] = 'user_account_settings_edit'; + $apps[$x]['permissions'][1]['name'] = 'user_account_setting_edit'; $apps[$x]['permissions'][1]['groups'][] = 'user'; $apps[$x]['permissions'][1]['groups'][] = 'admin'; $apps[$x]['permissions'][1]['groups'][] = 'superadmin';