diff --git a/client/app/telecom/dashboard/telecom-dashboard.js b/client/app/telecom/dashboard/telecom-dashboard.js index 8e3dc3c48..ddd46d37a 100644 --- a/client/app/telecom/dashboard/telecom-dashboard.js +++ b/client/app/telecom/dashboard/telecom-dashboard.js @@ -20,7 +20,7 @@ angular.module('managerApp').config(($stateProvider) => { noTranslations: true, }, }, - translations: ['common', 'telecom/dashboard'], + translations: ['.'], resolve: { $title(translations, $translate) { return $translate('telecom_dashboard_page_title'); diff --git a/client/app/telecom/freeFax/freeFax.js b/client/app/telecom/freeFax/freeFax.js index c63521c62..5300e6d74 100644 --- a/client/app/telecom/freeFax/freeFax.js +++ b/client/app/telecom/freeFax/freeFax.js @@ -21,7 +21,7 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'FreeFax', }, }, - translations: ['common', 'telecom/freeFax'], + translations: ['.'], resolve: { $title(translations, $translate, $stateParams) { return $translate.instant('freefax_page_title', { name: $stateParams.serviceName }, null, null, 'escape'); diff --git a/client/app/telecom/freeFax/notifications/freeFax-notifications.js b/client/app/telecom/freeFax/notifications/freeFax-notifications.js index 7060a99b1..691c94cb4 100644 --- a/client/app/telecom/freeFax/notifications/freeFax-notifications.js +++ b/client/app/telecom/freeFax/notifications/freeFax-notifications.js @@ -9,6 +9,6 @@ angular.module('managerApp').config(($stateProvider) => { noTranslations: true, }, }, - translations: ['common', 'telecom/freeFax'], + translations: ['../../freeFax'], }); }); diff --git a/client/app/telecom/freeFax/voicemailConfiguration/freeFax-voicemailConfiguration.js b/client/app/telecom/freeFax/voicemailConfiguration/freeFax-voicemailConfiguration.js index 9351e18da..eb887f4f6 100644 --- a/client/app/telecom/freeFax/voicemailConfiguration/freeFax-voicemailConfiguration.js +++ b/client/app/telecom/freeFax/voicemailConfiguration/freeFax-voicemailConfiguration.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'VoicemailConf', }, }, - translations: [ - 'telecom/freeFax/voicemailConfiguration', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/orders/accessories/telecom-orders-accessories.js b/client/app/telecom/orders/accessories/telecom-orders-accessories.js index 54052f722..60de71d4d 100644 --- a/client/app/telecom/orders/accessories/telecom-orders-accessories.js +++ b/client/app/telecom/orders/accessories/telecom-orders-accessories.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'AccessoriesOrderCtrl', }, }, - translations: [ - 'telecom/orders/accessories', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/orders/alias/telecom-orders-alias.js b/client/app/telecom/orders/alias/telecom-orders-alias.js index b03399cf3..2819892dc 100644 --- a/client/app/telecom/orders/alias/telecom-orders-alias.js +++ b/client/app/telecom/orders/alias/telecom-orders-alias.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'OrdersAliasCtrl', }, }, - translations: [ - 'telecom/orders/alias', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/orders/show/telecom-orders-show.js b/client/app/telecom/orders/show/telecom-orders-show.js index e6401d954..1e84b577b 100644 --- a/client/app/telecom/orders/show/telecom-orders-show.js +++ b/client/app/telecom/orders/show/telecom-orders-show.js @@ -14,6 +14,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'OrderFollowUpCtrl', }, }, - translations: ['common', 'telecom/pack/xdsl/orderFollowUp'], + translations: ['../../pack/xdsl/orderFollowUp'], }); }); diff --git a/client/app/telecom/orders/sms/telecom-orders-sms.js b/client/app/telecom/orders/sms/telecom-orders-sms.js index 7d71c704f..986998f0f 100644 --- a/client/app/telecom/orders/sms/telecom-orders-sms.js +++ b/client/app/telecom/orders/sms/telecom-orders-sms.js @@ -12,9 +12,8 @@ angular.module('managerApp').config(($stateProvider) => { }, }, translations: [ - 'common', - 'telecom/orders/sms', - 'telecom/sms/order', + '.', + '../../sms/order', ], }); }); diff --git a/client/app/telecom/orders/telecom-orders.js b/client/app/telecom/orders/telecom-orders.js index 10cb8c782..1cf833ff7 100644 --- a/client/app/telecom/orders/telecom-orders.js +++ b/client/app/telecom/orders/telecom-orders.js @@ -11,7 +11,7 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'OrdersCtrl', }, }, - translations: ['common', 'telecom/orders', 'telecom/pack/common'], + translations: ['.', '../pack/common'], resolve: { $title(translations, $translate) { return $translate('telecom_order_page_title'); diff --git a/client/app/telecom/overTheBox/configure/overTheBox-configure.js b/client/app/telecom/overTheBox/configure/overTheBox-configure.js index af0e90c32..32f1817b8 100644 --- a/client/app/telecom/overTheBox/configure/overTheBox-configure.js +++ b/client/app/telecom/overTheBox/configure/overTheBox-configure.js @@ -9,9 +9,7 @@ angular.module('managerApp').config(($stateProvider, $urlRouterProvider) => { controllerAs: 'OverTheBoxConfigure', }, }, - translations: [ - 'telecom/overTheBox/configure', - ], + translations: ['.'], }); // special redirection for /configure/overTheBox which is inside internal OTB UX diff --git a/client/app/telecom/overTheBox/details/overTheBox-details.js b/client/app/telecom/overTheBox/details/overTheBox-details.js index 92acceda6..9a199d6cd 100644 --- a/client/app/telecom/overTheBox/details/overTheBox-details.js +++ b/client/app/telecom/overTheBox/details/overTheBox-details.js @@ -14,11 +14,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'OverTheBoxDetails', }, }, - translations: [ - 'common', - 'telecom/overTheBox/details', - 'telecom/overTheBox/warning', - 'telecom/overTheBox/remote', - ], + translations: ['.', '../warning', '../remote'], }); }); diff --git a/client/app/telecom/overTheBox/docs/overTheBox-docs.js b/client/app/telecom/overTheBox/docs/overTheBox-docs.js index 5bd70f367..96f6067ef 100644 --- a/client/app/telecom/overTheBox/docs/overTheBox-docs.js +++ b/client/app/telecom/overTheBox/docs/overTheBox-docs.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'OverTheBoxDocs', }, }, - translations: [ - 'telecom/overTheBox/docs', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/overTheBox/logs/overTheBox-logs.js b/client/app/telecom/overTheBox/logs/overTheBox-logs.js index d7036276e..345ab30fd 100644 --- a/client/app/telecom/overTheBox/logs/overTheBox-logs.js +++ b/client/app/telecom/overTheBox/logs/overTheBox-logs.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'OTBLogs', }, }, - translations: [ - 'telecom/overTheBox/logs', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/overTheBox/order/order-overTheBox.js b/client/app/telecom/overTheBox/order/order-overTheBox.js index 1776c43b8..ed6ad8621 100644 --- a/client/app/telecom/overTheBox/order/order-overTheBox.js +++ b/client/app/telecom/overTheBox/order/order-overTheBox.js @@ -21,9 +21,9 @@ angular.module('managerApp').config(($stateProvider) => { }, }, translations: [ - 'telecom/overTheBox', - 'telecom/overTheBox/order', - 'telecom/overTheBox/warning', + '.', + '..', + '../warning', ], }); }); diff --git a/client/app/telecom/overTheBox/overTheBox.js b/client/app/telecom/overTheBox/overTheBox.js index 86f4f8957..52a4f547a 100644 --- a/client/app/telecom/overTheBox/overTheBox.js +++ b/client/app/telecom/overTheBox/overTheBox.js @@ -10,11 +10,10 @@ angular.module('managerApp').config(($stateProvider) => { }, }, translations: [ - 'common', - 'telecom/overTheBox', - 'telecom/overTheBox/details', - 'telecom/overTheBox/warning', - 'telecom/overTheBox/remote', + '.', + './details', + './warning', + './remote', ], resolve: { $title(translations, $translate, $stateParams, OvhApiOverTheBox) { diff --git a/client/app/telecom/overTheBox/remote/overTheBox-remote.js b/client/app/telecom/overTheBox/remote/overTheBox-remote.js index bcf87918d..89e752b05 100644 --- a/client/app/telecom/overTheBox/remote/overTheBox-remote.js +++ b/client/app/telecom/overTheBox/remote/overTheBox-remote.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'OverTheBoxRemote', }, }, - translations: [ - 'telecom/overTheBox/remote', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/overTheBox/tasks/overTheBox-tasks.js b/client/app/telecom/overTheBox/tasks/overTheBox-tasks.js index 184fce5e4..7ab7b8d21 100644 --- a/client/app/telecom/overTheBox/tasks/overTheBox-tasks.js +++ b/client/app/telecom/overTheBox/tasks/overTheBox-tasks.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'OverTheBoxTasks', }, }, - translations: [ - 'telecom/overTheBox/tasks', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/pack/migration/telecom-pack-migration.js b/client/app/telecom/pack/migration/telecom-pack-migration.js index d1d30c82a..eae6f5afc 100644 --- a/client/app/telecom/pack/migration/telecom-pack-migration.js +++ b/client/app/telecom/pack/migration/telecom-pack-migration.js @@ -38,8 +38,6 @@ angular.module('managerApp').config(($stateProvider) => { noTranslations: true, }, }, - translations: [ - 'telecom/pack/migration', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/pack/move/pack-move.js b/client/app/telecom/pack/move/pack-move.js index e9f389755..d89166a64 100644 --- a/client/app/telecom/pack/move/pack-move.js +++ b/client/app/telecom/pack/move/pack-move.js @@ -8,9 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'PackMove', }, }, - translations: [ - 'telecom/pack/move', - 'telecom/pack/move/contract', - ], + translations: ['.', './contract'], }); }); diff --git a/client/app/telecom/pack/pack.js b/client/app/telecom/pack/pack.js index 8187f39df..fe075e0cb 100644 --- a/client/app/telecom/pack/pack.js +++ b/client/app/telecom/pack/pack.js @@ -46,11 +46,10 @@ angular.module('managerApp').config(($stateProvider) => { }, }, translations: [ - 'common', - 'telecom/pack', - 'telecom/pack/common', - 'telecom/task', - 'telecom/pack/slots/emailPro', + '.', + './common', + '../task', + '../pack/slots/emailPro', ], }); }); diff --git a/client/app/telecom/pack/resiliation/pack-resiliation.js b/client/app/telecom/pack/resiliation/pack-resiliation.js index f1023f835..25b921cc4 100644 --- a/client/app/telecom/pack/resiliation/pack-resiliation.js +++ b/client/app/telecom/pack/resiliation/pack-resiliation.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'PackResiliation', }, }, - translations: [ - 'telecom/pack/resiliation', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/pack/slots/domain/activation/pack-domain-activation.js b/client/app/telecom/pack/slots/domain/activation/pack-domain-activation.js index 44024d457..18e661250 100644 --- a/client/app/telecom/pack/slots/domain/activation/pack-domain-activation.js +++ b/client/app/telecom/pack/slots/domain/activation/pack-domain-activation.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'PackDomainActivation', }, }, - translations: [ - 'telecom/pack/slots/domain/activation', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/pack/slots/emailPro/add/pack-emailPro-add.js b/client/app/telecom/pack/slots/emailPro/add/pack-emailPro-add.js index d5738538b..dce676243 100644 --- a/client/app/telecom/pack/slots/emailPro/add/pack-emailPro-add.js +++ b/client/app/telecom/pack/slots/emailPro/add/pack-emailPro-add.js @@ -8,6 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: ['common', 'telecom/pack/slots/emailPro/add'], + translations: ['.'], }); }); diff --git a/client/app/telecom/pack/slots/emailPro/detail/pack-emailPro-detail.js b/client/app/telecom/pack/slots/emailPro/detail/pack-emailPro-detail.js index 8e8098681..813fb4e93 100644 --- a/client/app/telecom/pack/slots/emailPro/detail/pack-emailPro-detail.js +++ b/client/app/telecom/pack/slots/emailPro/detail/pack-emailPro-detail.js @@ -8,6 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: ['common', 'telecom/pack/slots/emailPro/detail'], + translations: ['.'], }); }); diff --git a/client/app/telecom/pack/slots/exchangeIndividual/add/pack-exchangeIndividual-add.js b/client/app/telecom/pack/slots/exchangeIndividual/add/pack-exchangeIndividual-add.js index 2848c3944..ceb752327 100644 --- a/client/app/telecom/pack/slots/exchangeIndividual/add/pack-exchangeIndividual-add.js +++ b/client/app/telecom/pack/slots/exchangeIndividual/add/pack-exchangeIndividual-add.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'ctrl', }, }, - translations: [ - 'telecom/pack/slots/exchangeIndividual/add', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/pack/slots/hostedEmail/add/pack-hostedEmail-add.js b/client/app/telecom/pack/slots/hostedEmail/add/pack-hostedEmail-add.js index f75a9e8ec..86188b1fd 100644 --- a/client/app/telecom/pack/slots/hostedEmail/add/pack-hostedEmail-add.js +++ b/client/app/telecom/pack/slots/hostedEmail/add/pack-hostedEmail-add.js @@ -8,6 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'ctrl', }, }, - translations: ['common', 'telecom/pack/slots/hostedEmail/add'], + translations: ['.'], }); }); diff --git a/client/app/telecom/pack/slots/hostedEmail/detail/pack-hostedEmail-detail.js b/client/app/telecom/pack/slots/hostedEmail/detail/pack-hostedEmail-detail.js index 7aaf15be9..8c98b16e9 100644 --- a/client/app/telecom/pack/slots/hostedEmail/detail/pack-hostedEmail-detail.js +++ b/client/app/telecom/pack/slots/hostedEmail/detail/pack-hostedEmail-detail.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'DetailCtrl', }, }, - translations: [ - 'telecom/pack/slots/hostedEmail/detail', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/pack/slots/hubic/activation/pack-hubic-activation.js b/client/app/telecom/pack/slots/hubic/activation/pack-hubic-activation.js index 3abe456be..091a93b40 100644 --- a/client/app/telecom/pack/slots/hubic/activation/pack-hubic-activation.js +++ b/client/app/telecom/pack/slots/hubic/activation/pack-hubic-activation.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'PackHubicActivation', }, }, - translations: [ - 'telecom/pack/slots/hubic/activation', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/pack/slots/voipEcoFax/activation/pack-voipEcoFax-activation.js b/client/app/telecom/pack/slots/voipEcoFax/activation/pack-voipEcoFax-activation.js index f0de3ee71..2eb4c663f 100644 --- a/client/app/telecom/pack/slots/voipEcoFax/activation/pack-voipEcoFax-activation.js +++ b/client/app/telecom/pack/slots/voipEcoFax/activation/pack-voipEcoFax-activation.js @@ -8,6 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'PackFaxActivationCtrl', }, }, - translations: ['common', 'telecom/pack/slots/voipEcoFax/activation'], + translations: ['.'], }); }); diff --git a/client/app/telecom/pack/slots/voipLine/activation/pack-voipLine-activation.js b/client/app/telecom/pack/slots/voipLine/activation/pack-voipLine-activation.js index 345ae7421..1aa7b0e74 100644 --- a/client/app/telecom/pack/slots/voipLine/activation/pack-voipLine-activation.js +++ b/client/app/telecom/pack/slots/voipLine/activation/pack-voipLine-activation.js @@ -8,6 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'PackVoipLineActivationCtrl', }, }, - translations: ['common', 'telecom/pack', 'telecom/pack/slots/voipLine/activation'], + translations: ['.'], }); }); diff --git a/client/app/telecom/pack/xdsl/access/deconsolidation/pack-xdsl-access-deconsolidation.js b/client/app/telecom/pack/xdsl/access/deconsolidation/pack-xdsl-access-deconsolidation.js index 9fb6a8d98..41c202653 100644 --- a/client/app/telecom/pack/xdsl/access/deconsolidation/pack-xdsl-access-deconsolidation.js +++ b/client/app/telecom/pack/xdsl/access/deconsolidation/pack-xdsl-access-deconsolidation.js @@ -8,6 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { templateUrl: 'app/telecom/pack/xdsl/access/deconsolidation/pack-xdsl-access-deconsolidation.html', }, }, - translations: ['common', 'telecom/pack/xdsl/access/deconsolidation', 'telecom/pack/xdsl/access/deconsolidation/contract'], + translations: ['.', './contract'], }); }); diff --git a/client/app/telecom/pack/xdsl/access/diagnostic/pack-xdsl-access-diagnostic.js b/client/app/telecom/pack/xdsl/access/diagnostic/pack-xdsl-access-diagnostic.js index 88cd89bd8..a9d8f58aa 100644 --- a/client/app/telecom/pack/xdsl/access/diagnostic/pack-xdsl-access-diagnostic.js +++ b/client/app/telecom/pack/xdsl/access/diagnostic/pack-xdsl-access-diagnostic.js @@ -8,6 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { templateUrl: 'app/telecom/pack/xdsl/access/diagnostic/pack-xdsl-access-diagnostic.html', }, }, - translations: ['common', 'telecom/pack/xdsl/access/diagnostic'], + translations: ['.'], }); }); diff --git a/client/app/telecom/pack/xdsl/access/ip/pack-xdsl-access-ip.js b/client/app/telecom/pack/xdsl/access/ip/pack-xdsl-access-ip.js index d98f3b6b6..94eb28400 100644 --- a/client/app/telecom/pack/xdsl/access/ip/pack-xdsl-access-ip.js +++ b/client/app/telecom/pack/xdsl/access/ip/pack-xdsl-access-ip.js @@ -8,12 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { templateUrl: 'app/telecom/pack/xdsl/access/ip/pack-xdsl-access-ip.html', }, }, - translations: [ - 'common', - 'telecom/pack/xdsl', - 'telecom/pack/xdsl/access', - 'telecom/pack/xdsl/access/ip', - 'telecom/pack/xdsl/access/ip/order', - ], + translations: ['.', './order'], }); }); diff --git a/client/app/telecom/pack/xdsl/access/linediagnostic/pack-xdsl-access-linediagnostic.js b/client/app/telecom/pack/xdsl/access/linediagnostic/pack-xdsl-access-linediagnostic.js index 592ad6550..60adece61 100644 --- a/client/app/telecom/pack/xdsl/access/linediagnostic/pack-xdsl-access-linediagnostic.js +++ b/client/app/telecom/pack/xdsl/access/linediagnostic/pack-xdsl-access-linediagnostic.js @@ -8,6 +8,5 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'PackxdslaccesslinediagnosticCtrl', }, }, - translations: ['common'], }); }); diff --git a/client/app/telecom/pack/xdsl/access/notifications/pack-xdsl-access-notifications.js b/client/app/telecom/pack/xdsl/access/notifications/pack-xdsl-access-notifications.js index 63522b140..d918baceb 100644 --- a/client/app/telecom/pack/xdsl/access/notifications/pack-xdsl-access-notifications.js +++ b/client/app/telecom/pack/xdsl/access/notifications/pack-xdsl-access-notifications.js @@ -10,6 +10,6 @@ angular.module('managerApp') templateUrl: 'app/telecom/pack/xdsl/access/notifications/pack-xdsl-access-notifications.html', }, }, - translations: ['common', 'telecom/pack/xdsl/access', 'telecom/pack/xdsl/access/notifications'], + translations: ['..', '.'], }); }); diff --git a/client/app/telecom/pack/xdsl/missingRio/pack-xdsl-missing-rio.js b/client/app/telecom/pack/xdsl/missingRio/pack-xdsl-missing-rio.js index 632d55122..c6d3e4e58 100644 --- a/client/app/telecom/pack/xdsl/missingRio/pack-xdsl-missing-rio.js +++ b/client/app/telecom/pack/xdsl/missingRio/pack-xdsl-missing-rio.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'PackXdslMissingRio', }, }, - translations: [ - 'telecom/pack/xdsl/missingRio', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/pack/xdsl/modem/dmz/pack-xdsl-modem-dmz.js b/client/app/telecom/pack/xdsl/modem/dmz/pack-xdsl-modem-dmz.js index fa7fc7a39..e081053bf 100644 --- a/client/app/telecom/pack/xdsl/modem/dmz/pack-xdsl-modem-dmz.js +++ b/client/app/telecom/pack/xdsl/modem/dmz/pack-xdsl-modem-dmz.js @@ -8,6 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'DmzCtrl', }, }, - translations: ['common', 'telecom/pack/xdsl/modem/dmz'], + translations: ['.'], }); }); diff --git a/client/app/telecom/pack/xdsl/modem/pack-xdsl-modem.js b/client/app/telecom/pack/xdsl/modem/pack-xdsl-modem.js index 529642cd5..2b54ebaa3 100644 --- a/client/app/telecom/pack/xdsl/modem/pack-xdsl-modem.js +++ b/client/app/telecom/pack/xdsl/modem/pack-xdsl-modem.js @@ -79,20 +79,20 @@ angular.module('managerApp').config(($stateProvider) => { }, }, translations: [ - 'telecom/pack/xdsl/modem', - 'telecom/pack/xdsl/modem/connectedDevices', - 'telecom/pack/xdsl/modem/bridgeMode', - 'telecom/pack/xdsl/modem/dmz', - 'telecom/pack/xdsl/modem/firewall', - 'telecom/pack/xdsl/modem/managedByOvh', - 'telecom/pack/xdsl/modem/mtu', - 'telecom/pack/xdsl/modem/reboot', - 'telecom/pack/xdsl/modem/reset', - 'telecom/pack/xdsl/modem/router/dhcp', - 'telecom/pack/xdsl/modem/router/dhcp/bdhcp', - 'telecom/pack/xdsl/modem/router/lan', - 'telecom/pack/xdsl/modem/router/ports', - 'telecom/pack/xdsl/modem/wifi', + '.', + './connectedDevices', + './bridgeMode', + './dmz', + './firewall', + './managedByOvh', + './mtu', + './reboot', + './reset', + './router/dhcp', + './router/dhcp/bdhcp', + './router/lan', + './router/ports', + './wifi', ], }); }); diff --git a/client/app/telecom/pack/xdsl/modem/wifi/config/pack-xdsl-modem-wifi-config.js b/client/app/telecom/pack/xdsl/modem/wifi/config/pack-xdsl-modem-wifi-config.js index cbcc71fa5..c73695acf 100644 --- a/client/app/telecom/pack/xdsl/modem/wifi/config/pack-xdsl-modem-wifi-config.js +++ b/client/app/telecom/pack/xdsl/modem/wifi/config/pack-xdsl-modem-wifi-config.js @@ -8,7 +8,7 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'ConfigWifiCtrl', }, }, - translations: ['common', 'telecom/pack/xdsl/modem/wifi/config'], + translations: ['.'], params: { wifi: null, }, diff --git a/client/app/telecom/pack/xdsl/orderFollowUp/pack-xdsl-orderFollowUp.js b/client/app/telecom/pack/xdsl/orderFollowUp/pack-xdsl-orderFollowUp.js index 71c5037e4..20e8640d4 100644 --- a/client/app/telecom/pack/xdsl/orderFollowUp/pack-xdsl-orderFollowUp.js +++ b/client/app/telecom/pack/xdsl/orderFollowUp/pack-xdsl-orderFollowUp.js @@ -11,8 +11,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'OrderFollowUpCtrl', }, }, - translations: [ - 'telecom/pack/xdsl/orderFollowUp', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/pack/xdsl/pack-xdsl.js b/client/app/telecom/pack/xdsl/pack-xdsl.js index 05126b5e8..19b4f4b80 100644 --- a/client/app/telecom/pack/xdsl/pack-xdsl.js +++ b/client/app/telecom/pack/xdsl/pack-xdsl.js @@ -29,17 +29,17 @@ angular.module('managerApp').config(($stateProvider) => { }, }, translations: [ - 'common', - 'telecom/pack/xdsl', - 'telecom/pack/xdsl/access', - 'telecom/pack/xdsl/access/deconsolidation', - 'telecom/pack/xdsl/access/statistics', - 'telecom/pack/xdsl/access/ipv6', - 'telecom/pack/xdsl/access/portReset', - 'telecom/pack/xdsl/access/profil', - 'telecom/pack/xdsl/access/rateLimit', - 'telecom/pack/xdsl/access/ip/order', - 'telecom/pack/xdsl/orderFollowUp', + '../common', + '.', + './access', + './access/deconsolidation', + './access/statistics', + './access/ipv6', + './access/portReset', + './access/profil', + './access/rateLimit', + './access/ip/order', + './orderFollowUp', ], resolve: { $title(translations, $translate, $stateParams, OvhApiXdsl) { diff --git a/client/app/telecom/pack/xdsl/resiliation/pack-xdsl-resiliation.js b/client/app/telecom/pack/xdsl/resiliation/pack-xdsl-resiliation.js index 2a9645933..7d1ddde2f 100644 --- a/client/app/telecom/pack/xdsl/resiliation/pack-xdsl-resiliation.js +++ b/client/app/telecom/pack/xdsl/resiliation/pack-xdsl-resiliation.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'PackXdslResiliation', }, }, - translations: [ - 'telecom/pack/xdsl/resiliation', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/sms/dashboard/telecom-sms-dashboard.js b/client/app/telecom/sms/dashboard/telecom-sms-dashboard.js index 335b9d822..7db7394a6 100644 --- a/client/app/telecom/sms/dashboard/telecom-sms-dashboard.js +++ b/client/app/telecom/sms/dashboard/telecom-sms-dashboard.js @@ -8,9 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'SmsDashboardCtrl', }, }, - translations: [ - 'telecom/sms/dashboard', - 'telecom/sms/sms/compose', - ], + translations: ['.', '../sms/compose'], }); }); diff --git a/client/app/telecom/sms/guides/telecom-sms-guides.js b/client/app/telecom/sms/guides/telecom-sms-guides.js index c72588a9e..f670e4132 100644 --- a/client/app/telecom/sms/guides/telecom-sms-guides.js +++ b/client/app/telecom/sms/guides/telecom-sms-guides.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'SmsGuidesCtrl', }, }, - translations: [ - 'telecom/sms/guides', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/sms/options/manage/telecom-sms-options-manage.js b/client/app/telecom/sms/options/manage/telecom-sms-options-manage.js index 8195baff0..934f7e6cd 100644 --- a/client/app/telecom/sms/options/manage/telecom-sms-options-manage.js +++ b/client/app/telecom/sms/options/manage/telecom-sms-options-manage.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'TelecomSmsOptionsManageCtrl', }, }, - translations: [ - 'telecom/sms/options/manage', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/sms/options/recredit/telecom-sms-options-recredit.js b/client/app/telecom/sms/options/recredit/telecom-sms-options-recredit.js index 1db933f57..8c39ae778 100644 --- a/client/app/telecom/sms/options/recredit/telecom-sms-options-recredit.js +++ b/client/app/telecom/sms/options/recredit/telecom-sms-options-recredit.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'TelecomSmsOptionsRecreditCtrl', }, }, - translations: [ - 'telecom/sms/options/recredit', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/sms/options/response/telecom-sms-options-response.js b/client/app/telecom/sms/options/response/telecom-sms-options-response.js index 07e7f9990..7e67c7418 100644 --- a/client/app/telecom/sms/options/response/telecom-sms-options-response.js +++ b/client/app/telecom/sms/options/response/telecom-sms-options-response.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'TelecomSmsOptionsResponseCtrl', }, }, - translations: [ - 'telecom/sms/options/response', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/sms/options/telecom-sms-options.js b/client/app/telecom/sms/options/telecom-sms-options.js index 13a26d662..12c76ee33 100644 --- a/client/app/telecom/sms/options/telecom-sms-options.js +++ b/client/app/telecom/sms/options/telecom-sms-options.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'TelecomSmsOptionsCtrl', }, }, - translations: [ - 'telecom/sms/options', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/sms/order/telecom-sms-order.js b/client/app/telecom/sms/order/telecom-sms-order.js index 544629851..75ab8661a 100644 --- a/client/app/telecom/sms/order/telecom-sms-order.js +++ b/client/app/telecom/sms/order/telecom-sms-order.js @@ -8,9 +8,7 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'SmsOrder', }, }, - translations: [ - 'telecom/sms/order', - ], + translations: ['.'], }); }).constant('SMS_ORDER_PREFIELDS_VALUES', [ 100, diff --git a/client/app/telecom/sms/phonebooks/create/telecom-sms-phonebooks-create.js b/client/app/telecom/sms/phonebooks/create/telecom-sms-phonebooks-create.js index 327bab190..19f37b91e 100644 --- a/client/app/telecom/sms/phonebooks/create/telecom-sms-phonebooks-create.js +++ b/client/app/telecom/sms/phonebooks/create/telecom-sms-phonebooks-create.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'PhonebooksCreateCtrl', }, }, - translations: [ - 'telecom/sms/phonebooks/create', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/sms/phonebooks/telecom-sms-phonebooks.js b/client/app/telecom/sms/phonebooks/telecom-sms-phonebooks.js index 8914fd221..7f46238b7 100644 --- a/client/app/telecom/sms/phonebooks/telecom-sms-phonebooks.js +++ b/client/app/telecom/sms/phonebooks/telecom-sms-phonebooks.js @@ -11,8 +11,6 @@ angular.module('managerApp').config(($stateProvider) => { params: { bookKey: null, }, - translations: [ - 'telecom/sms/phonebooks', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/sms/receivers/telecom-sms-receivers.js b/client/app/telecom/sms/receivers/telecom-sms-receivers.js index 9bd01dcab..646a57eaf 100644 --- a/client/app/telecom/sms/receivers/telecom-sms-receivers.js +++ b/client/app/telecom/sms/receivers/telecom-sms-receivers.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'SmsReceiversCtrl', }, }, - translations: [ - 'telecom/sms/receivers', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/sms/senders/blacklisted/telecom-sms-senders-blacklisted.js b/client/app/telecom/sms/senders/blacklisted/telecom-sms-senders-blacklisted.js index e26cb4ce1..5d5409a8d 100644 --- a/client/app/telecom/sms/senders/blacklisted/telecom-sms-senders-blacklisted.js +++ b/client/app/telecom/sms/senders/blacklisted/telecom-sms-senders-blacklisted.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'SmsSendersBlacklistedCtrl', }, }, - translations: [ - 'telecom/sms/senders/blacklisted', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/sms/senders/telecom-sms-senders.js b/client/app/telecom/sms/senders/telecom-sms-senders.js index 9b4cbf135..a915c8998 100644 --- a/client/app/telecom/sms/senders/telecom-sms-senders.js +++ b/client/app/telecom/sms/senders/telecom-sms-senders.js @@ -8,9 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'SmsSendersCtrl', }, }, - translations: [ - 'telecom/sms/senders', - 'telecom/sms/senders/add', - ], + translations: ['.', './add'], }); }); diff --git a/client/app/telecom/sms/sms/compose/telecom-sms-sms-compose.js b/client/app/telecom/sms/sms/compose/telecom-sms-sms-compose.js index 33e552b0a..d73c38743 100644 --- a/client/app/telecom/sms/sms/compose/telecom-sms-sms-compose.js +++ b/client/app/telecom/sms/sms/compose/telecom-sms-sms-compose.js @@ -8,9 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'SmsComposeCtrl', }, }, - translations: [ - 'telecom/sms/dashboard', - 'telecom/sms/sms/compose', - ], + translations: ['../../../sms/dashboard', '.'], }); }); diff --git a/client/app/telecom/sms/sms/hlr/telecom-sms-sms-hlr.js b/client/app/telecom/sms/sms/hlr/telecom-sms-sms-hlr.js index 8ff9f54a3..6f1ffa08e 100644 --- a/client/app/telecom/sms/sms/hlr/telecom-sms-sms-hlr.js +++ b/client/app/telecom/sms/sms/hlr/telecom-sms-sms-hlr.js @@ -8,9 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'SmsHlrCtrl', }, }, - translations: [ - 'telecom/sms/dashboard', - 'telecom/sms/sms/hlr', - ], + translations: ['../../dashboard', '.'], }); }); diff --git a/client/app/telecom/sms/sms/incoming/telecom-sms-sms-incoming.js b/client/app/telecom/sms/sms/incoming/telecom-sms-sms-incoming.js index 37e2fc487..b4d528d31 100644 --- a/client/app/telecom/sms/sms/incoming/telecom-sms-sms-incoming.js +++ b/client/app/telecom/sms/sms/incoming/telecom-sms-sms-incoming.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'SmsIncomingCtrl', }, }, - translations: [ - 'telecom/sms/sms/incoming', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/sms/sms/outgoing/telecom-sms-sms-outgoing.js b/client/app/telecom/sms/sms/outgoing/telecom-sms-sms-outgoing.js index e8bcce566..2c82e03eb 100644 --- a/client/app/telecom/sms/sms/outgoing/telecom-sms-sms-outgoing.js +++ b/client/app/telecom/sms/sms/outgoing/telecom-sms-sms-outgoing.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'SmsOutgoingCtrl', }, }, - translations: [ - 'telecom/sms/sms/outgoing', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/sms/sms/pending/telecom-sms-sms-pending.js b/client/app/telecom/sms/sms/pending/telecom-sms-sms-pending.js index 2a7691082..9b1be1a42 100644 --- a/client/app/telecom/sms/sms/pending/telecom-sms-sms-pending.js +++ b/client/app/telecom/sms/sms/pending/telecom-sms-sms-pending.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'SmsPendingCtrl', }, }, - translations: [ - 'telecom/sms/sms/pending', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/sms/sms/telecom-sms-sms.js b/client/app/telecom/sms/sms/telecom-sms-sms.js index 211b22771..261ca2739 100644 --- a/client/app/telecom/sms/sms/telecom-sms-sms.js +++ b/client/app/telecom/sms/sms/telecom-sms-sms.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'TelecomSmsSmsCtrl', }, }, - translations: [ - 'telecom/sms/sms', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/sms/sms/templates/telecom-sms-sms-templates.js b/client/app/telecom/sms/sms/templates/telecom-sms-sms-templates.js index b9aeefcc5..3c2f77194 100644 --- a/client/app/telecom/sms/sms/templates/telecom-sms-sms-templates.js +++ b/client/app/telecom/sms/sms/templates/telecom-sms-sms-templates.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/sms/sms/templates', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/sms/telecom-sms.js b/client/app/telecom/sms/telecom-sms.js index 3441eccd3..ef1532ed4 100644 --- a/client/app/telecom/sms/telecom-sms.js +++ b/client/app/telecom/sms/telecom-sms.js @@ -27,8 +27,7 @@ angular.module('managerApp').config(($stateProvider) => { .catch(() => $translate('sms_page_title', { name: $stateParams.serviceName })), }, translations: [ - 'common', - 'telecom/sms', + '../sms', ], }); }); diff --git a/client/app/telecom/sms/users/telecom-sms-users.js b/client/app/telecom/sms/users/telecom-sms-users.js index e76439b1d..e1519bb10 100644 --- a/client/app/telecom/sms/users/telecom-sms-users.js +++ b/client/app/telecom/sms/users/telecom-sms-users.js @@ -9,7 +9,7 @@ angular.module('managerApp').config(($stateProvider) => { }, }, translations: [ - 'telecom/sms/users', + '../../sms/users', ], }); }); diff --git a/client/app/telecom/task/telecom-task.js b/client/app/telecom/task/telecom-task.js index 88c28f264..9b55bff58 100644 --- a/client/app/telecom/task/telecom-task.js +++ b/client/app/telecom/task/telecom-task.js @@ -8,10 +8,7 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'TaskCtrl', }, }, - translations: [ - 'common', - 'telecom/task', - ], + translations: ['.'], resolve: { $title(translations, $translate) { return $translate('telecom_task_page_title'); diff --git a/client/app/telecom/telecom.js b/client/app/telecom/telecom.js index c7c4df00f..10433d9c3 100644 --- a/client/app/telecom/telecom.js +++ b/client/app/telecom/telecom.js @@ -5,7 +5,7 @@ angular.module('managerApp').config(($stateProvider) => { controller: 'TelecomCtrl', controllerAs: 'TelecomCtrl', abstract: true, - translations: ['common', 'telecom'], + translations: ['../common', '.'], resolve: { vipStatus($q, TelecomMediator) { // this can be totally async. We don't force it to be resolved before loading state. diff --git a/client/app/telecom/telephony/alias/administration/convertToLine/telecom-telephony-alias-administration-convert-to-line.js b/client/app/telecom/telephony/alias/administration/convertToLine/telecom-telephony-alias-administration-convert-to-line.js index 7547fc464..acdd079a5 100644 --- a/client/app/telecom/telephony/alias/administration/convertToLine/telecom-telephony-alias-administration-convert-to-line.js +++ b/client/app/telecom/telephony/alias/administration/convertToLine/telecom-telephony-alias-administration-convert-to-line.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'AliasConvertCtrl', }, }, - translations: [ - 'telecom/telephony/alias/administration/convertToLine', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/administration/telecom-telephony-alias-administration.js b/client/app/telecom/telephony/alias/administration/telecom-telephony-alias-administration.js index 3af233ce0..62009657b 100644 --- a/client/app/telecom/telephony/alias/administration/telecom-telephony-alias-administration.js +++ b/client/app/telecom/telephony/alias/administration/telecom-telephony-alias-administration.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'AliasAdministrationCtrl', }, }, - translations: [ - 'telecom/telephony/alias/administration', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/administration/terminate/telecom-telephony-alias-administration-terminate.js b/client/app/telecom/telephony/alias/administration/terminate/telecom-telephony-alias-administration-terminate.js index 7f9c4459c..2b3793187 100644 --- a/client/app/telecom/telephony/alias/administration/terminate/telecom-telephony-alias-administration-terminate.js +++ b/client/app/telecom/telephony/alias/administration/terminate/telecom-telephony-alias-administration-terminate.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'AliasTerminateCtrl', }, }, - translations: [ - 'telecom/telephony/alias/administration/terminate', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/agents/ovhPabx/telecom-telephony-alias-configuration-agents-ovhPabx.js b/client/app/telecom/telephony/alias/configuration/agents/ovhPabx/telecom-telephony-alias-configuration-agents-ovhPabx.js index ca8aba243..c34cac8e3 100644 --- a/client/app/telecom/telephony/alias/configuration/agents/ovhPabx/telecom-telephony-alias-configuration-agents-ovhPabx.js +++ b/client/app/telecom/telephony/alias/configuration/agents/ovhPabx/telecom-telephony-alias-configuration-agents-ovhPabx.js @@ -8,6 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'AgentsOvhPabxCtrl', }, }, - translations: ['telecom/telephony/alias/configuration/agents'], + translations: ['..'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/agents/telecom-telephony-alias-configuration-agents.js b/client/app/telecom/telephony/alias/configuration/agents/telecom-telephony-alias-configuration-agents.js index 20bb7207f..a4ca88d6d 100644 --- a/client/app/telecom/telephony/alias/configuration/agents/telecom-telephony-alias-configuration-agents.js +++ b/client/app/telecom/telephony/alias/configuration/agents/telecom-telephony-alias-configuration-agents.js @@ -2,8 +2,6 @@ angular.module('managerApp').config(($stateProvider) => { $stateProvider.state('telecom.telephony.alias.configuration.agents', { url: '/agents', abstract: true, - translations: [ - 'telecom/telephony/alias/configuration/agents', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/callsFiltering/easyHunting/telecom-telephony-alias-configuration-callsFiltering-easyHunting.js b/client/app/telecom/telephony/alias/configuration/callsFiltering/easyHunting/telecom-telephony-alias-configuration-callsFiltering-easyHunting.js index 82a1be91e..425001193 100644 --- a/client/app/telecom/telephony/alias/configuration/callsFiltering/easyHunting/telecom-telephony-alias-configuration-callsFiltering-easyHunting.js +++ b/client/app/telecom/telephony/alias/configuration/callsFiltering/easyHunting/telecom-telephony-alias-configuration-callsFiltering-easyHunting.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'CallsFilteringEasyHuntingCtrl', }, }, - translations: [ - 'telecom/telephony/alias/configuration/callsFiltering/easyHunting', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/callsFiltering/oldPabx/telecom-telephony-alias-configuration-callsFiltering-oldPabx.js b/client/app/telecom/telephony/alias/configuration/callsFiltering/oldPabx/telecom-telephony-alias-configuration-callsFiltering-oldPabx.js index 4a66c19eb..e046a246e 100644 --- a/client/app/telecom/telephony/alias/configuration/callsFiltering/oldPabx/telecom-telephony-alias-configuration-callsFiltering-oldPabx.js +++ b/client/app/telecom/telephony/alias/configuration/callsFiltering/oldPabx/telecom-telephony-alias-configuration-callsFiltering-oldPabx.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/alias/configuration/callsFiltering/oldPabx', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/callsFiltering/telecom-telephony-alias-configuration-calls-filtering.js b/client/app/telecom/telephony/alias/configuration/callsFiltering/telecom-telephony-alias-configuration-calls-filtering.js index 2e7638c16..82c781a38 100644 --- a/client/app/telecom/telephony/alias/configuration/callsFiltering/telecom-telephony-alias-configuration-calls-filtering.js +++ b/client/app/telecom/telephony/alias/configuration/callsFiltering/telecom-telephony-alias-configuration-calls-filtering.js @@ -2,8 +2,6 @@ angular.module('managerApp').config(($stateProvider) => { $stateProvider.state('telecom.telephony.alias.configuration.callsFiltering', { url: '/callsFiltering', abstract: true, - translations: [ - 'telecom/telephony/alias/configuration/callsFiltering', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/changeType/telecom-telephony-alias-configuration-changeType.js b/client/app/telecom/telephony/alias/configuration/changeType/telecom-telephony-alias-configuration-changeType.js index 398fd1668..4482dd83a 100644 --- a/client/app/telecom/telephony/alias/configuration/changeType/telecom-telephony-alias-configuration-changeType.js +++ b/client/app/telecom/telephony/alias/configuration/changeType/telecom-telephony-alias-configuration-changeType.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'AliasConfigurationChangeTypeCtrl', }, }, - translations: [ - 'telecom/telephony/alias/configuration/changeType', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/members/easyHunting/telecom-telephony-alias-configuration-members-easyHunting.js b/client/app/telecom/telephony/alias/configuration/members/easyHunting/telecom-telephony-alias-configuration-members-easyHunting.js index 07cfaad7e..85d167a54 100644 --- a/client/app/telecom/telephony/alias/configuration/members/easyHunting/telecom-telephony-alias-configuration-members-easyHunting.js +++ b/client/app/telecom/telephony/alias/configuration/members/easyHunting/telecom-telephony-alias-configuration-members-easyHunting.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'MembersEasyHuntingCtrl', }, }, - translations: [ - 'telecom/telephony/alias/configuration/members/easyHunting', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/members/oldPabx/telecom-telephony-alias-configuration-members-oldPabx.js b/client/app/telecom/telephony/alias/configuration/members/oldPabx/telecom-telephony-alias-configuration-members-oldPabx.js index 40376d643..203f57ba9 100644 --- a/client/app/telecom/telephony/alias/configuration/members/oldPabx/telecom-telephony-alias-configuration-members-oldPabx.js +++ b/client/app/telecom/telephony/alias/configuration/members/oldPabx/telecom-telephony-alias-configuration-members-oldPabx.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/alias/configuration/members/oldPabx', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/members/telecom-telephony-alias-configuration-members.js b/client/app/telecom/telephony/alias/configuration/members/telecom-telephony-alias-configuration-members.js index 48cb71fd2..68a260fc3 100644 --- a/client/app/telecom/telephony/alias/configuration/members/telecom-telephony-alias-configuration-members.js +++ b/client/app/telecom/telephony/alias/configuration/members/telecom-telephony-alias-configuration-members.js @@ -2,8 +2,6 @@ angular.module('managerApp').config(($stateProvider) => { $stateProvider.state('telecom.telephony.alias.configuration.members', { url: '/members', abstract: true, - translations: [ - 'telecom/telephony/alias/configuration/members', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/mode/easyHunting/telecom-telephony-alias-configuration-mode-easyHunting.js b/client/app/telecom/telephony/alias/configuration/mode/easyHunting/telecom-telephony-alias-configuration-mode-easyHunting.js index 6c3914e13..ee367ec4f 100644 --- a/client/app/telecom/telephony/alias/configuration/mode/easyHunting/telecom-telephony-alias-configuration-mode-easyHunting.js +++ b/client/app/telecom/telephony/alias/configuration/mode/easyHunting/telecom-telephony-alias-configuration-mode-easyHunting.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'ModeEasyHuntingCtrl', }, }, - translations: [ - 'telecom/telephony/alias/configuration/mode/easyHunting', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/mode/easyPabx/telecom-telephony-alias-configuration-mode-easyPabx.js b/client/app/telecom/telephony/alias/configuration/mode/easyPabx/telecom-telephony-alias-configuration-mode-easyPabx.js index 5bd4b0720..7e31ff714 100644 --- a/client/app/telecom/telephony/alias/configuration/mode/easyPabx/telecom-telephony-alias-configuration-mode-easyPabx.js +++ b/client/app/telecom/telephony/alias/configuration/mode/easyPabx/telecom-telephony-alias-configuration-mode-easyPabx.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/alias/configuration/mode/easyPabx', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/mode/miniPabx/telecom-telephony-alias-configuration-mode-miniPabx.js b/client/app/telecom/telephony/alias/configuration/mode/miniPabx/telecom-telephony-alias-configuration-mode-miniPabx.js index 8b7873681..ae004d55b 100644 --- a/client/app/telecom/telephony/alias/configuration/mode/miniPabx/telecom-telephony-alias-configuration-mode-miniPabx.js +++ b/client/app/telecom/telephony/alias/configuration/mode/miniPabx/telecom-telephony-alias-configuration-mode-miniPabx.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/alias/configuration/mode/miniPabx', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/mode/telecom-telephony-alias-configuration-mode.js b/client/app/telecom/telephony/alias/configuration/mode/telecom-telephony-alias-configuration-mode.js index 3bb5258e4..9a173f532 100644 --- a/client/app/telecom/telephony/alias/configuration/mode/telecom-telephony-alias-configuration-mode.js +++ b/client/app/telecom/telephony/alias/configuration/mode/telecom-telephony-alias-configuration-mode.js @@ -2,8 +2,6 @@ angular.module('managerApp').config(($stateProvider) => { $stateProvider.state('telecom.telephony.alias.configuration.mode', { url: '/mode', abstract: true, - translations: [ - 'telecom/telephony/alias/configuration/mode', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/ovhPabx/menus/telecom-telephony-alias-configuration-ovhPabx-menus.js b/client/app/telecom/telephony/alias/configuration/ovhPabx/menus/telecom-telephony-alias-configuration-ovhPabx-menus.js index 3c312ffab..bad49d900 100644 --- a/client/app/telecom/telephony/alias/configuration/ovhPabx/menus/telecom-telephony-alias-configuration-ovhPabx-menus.js +++ b/client/app/telecom/telephony/alias/configuration/ovhPabx/menus/telecom-telephony-alias-configuration-ovhPabx-menus.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/alias/configuration/ovhPabx/menus', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/ovhPabx/sounds/telecom-telephony-alias-configuration-ovhPabx-sounds.js b/client/app/telecom/telephony/alias/configuration/ovhPabx/sounds/telecom-telephony-alias-configuration-ovhPabx-sounds.js index 646888d14..104a61b18 100644 --- a/client/app/telecom/telephony/alias/configuration/ovhPabx/sounds/telecom-telephony-alias-configuration-ovhPabx-sounds.js +++ b/client/app/telecom/telephony/alias/configuration/ovhPabx/sounds/telecom-telephony-alias-configuration-ovhPabx-sounds.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/alias/configuration/ovhPabx/sounds', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/ovhPabx/telecom-telephony-alias-configuration-ovhPabx.js b/client/app/telecom/telephony/alias/configuration/ovhPabx/telecom-telephony-alias-configuration-ovhPabx.js index f226506f3..d084affb8 100644 --- a/client/app/telecom/telephony/alias/configuration/ovhPabx/telecom-telephony-alias-configuration-ovhPabx.js +++ b/client/app/telecom/telephony/alias/configuration/ovhPabx/telecom-telephony-alias-configuration-ovhPabx.js @@ -2,8 +2,6 @@ angular.module('managerApp').config(($stateProvider) => { $stateProvider.state('telecom.telephony.alias.configuration.ovhPabx', { url: '/ovhPabx', abstract: true, - translations: [ - 'telecom/telephony/alias/configuration/ovhPabx', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/ovhPabx/tts/telecom-telephony-alias-configuration-ovhPabx-tts.js b/client/app/telecom/telephony/alias/configuration/ovhPabx/tts/telecom-telephony-alias-configuration-ovhPabx-tts.js index 1f64df6cb..e72cffe0d 100644 --- a/client/app/telecom/telephony/alias/configuration/ovhPabx/tts/telecom-telephony-alias-configuration-ovhPabx-tts.js +++ b/client/app/telecom/telephony/alias/configuration/ovhPabx/tts/telecom-telephony-alias-configuration-ovhPabx-tts.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/alias/configuration/ovhPabx/tts', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/queues/ovhPabx/telecom-telephony-alias-configuration-queues-ovhPabx.js b/client/app/telecom/telephony/alias/configuration/queues/ovhPabx/telecom-telephony-alias-configuration-queues-ovhPabx.js index 3bd2abb4a..cb5217d76 100644 --- a/client/app/telecom/telephony/alias/configuration/queues/ovhPabx/telecom-telephony-alias-configuration-queues-ovhPabx.js +++ b/client/app/telecom/telephony/alias/configuration/queues/ovhPabx/telecom-telephony-alias-configuration-queues-ovhPabx.js @@ -8,6 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'QueuesOvhPabxCtrl', }, }, - translations: ['telecom/telephony/alias/configuration/queues'], + translations: ['..'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/queues/telecom-telephony-alias-configuration-queues.js b/client/app/telecom/telephony/alias/configuration/queues/telecom-telephony-alias-configuration-queues.js index 0a2ed71a6..57a0bad7f 100644 --- a/client/app/telecom/telephony/alias/configuration/queues/telecom-telephony-alias-configuration-queues.js +++ b/client/app/telecom/telephony/alias/configuration/queues/telecom-telephony-alias-configuration-queues.js @@ -2,8 +2,6 @@ angular.module('managerApp').config(($stateProvider) => { $stateProvider.state('telecom.telephony.alias.configuration.queues', { url: '/queues', abstract: true, - translations: [ - 'telecom/telephony/alias/configuration/queues', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/records/easyHunting/telecom-telephony-alias-configuration-records-easyHunting.js b/client/app/telecom/telephony/alias/configuration/records/easyHunting/telecom-telephony-alias-configuration-records-easyHunting.js index 15a56cf12..fa6850476 100644 --- a/client/app/telecom/telephony/alias/configuration/records/easyHunting/telecom-telephony-alias-configuration-records-easyHunting.js +++ b/client/app/telecom/telephony/alias/configuration/records/easyHunting/telecom-telephony-alias-configuration-records-easyHunting.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'RecordsEasyHuntingCtrl', }, }, - translations: [ - 'telecom/telephony/alias/configuration/records/easyHunting', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/records/ovhPabx/telecom-telephony-alias-configuration-records-ovhPabx.js b/client/app/telecom/telephony/alias/configuration/records/ovhPabx/telecom-telephony-alias-configuration-records-ovhPabx.js index 4b85bb607..c34a2cd28 100644 --- a/client/app/telecom/telephony/alias/configuration/records/ovhPabx/telecom-telephony-alias-configuration-records-ovhPabx.js +++ b/client/app/telecom/telephony/alias/configuration/records/ovhPabx/telecom-telephony-alias-configuration-records-ovhPabx.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'RecordsOvhPabxCtrl', }, }, - translations: [ - 'telecom/telephony/alias/configuration/records/ovhPabx', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/records/telecom-telephony-alias-configuration-records.js b/client/app/telecom/telephony/alias/configuration/records/telecom-telephony-alias-configuration-records.js index 50cf4b25c..fd23ff376 100644 --- a/client/app/telecom/telephony/alias/configuration/records/telecom-telephony-alias-configuration-records.js +++ b/client/app/telecom/telephony/alias/configuration/records/telecom-telephony-alias-configuration-records.js @@ -2,8 +2,6 @@ angular.module('managerApp').config(($stateProvider) => { $stateProvider.state('telecom.telephony.alias.configuration.records', { url: '/records', abstract: true, - translations: [ - 'telecom/telephony/alias/configuration/records', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/scheduler/easyHunting/telecom-telephony-alias-configuration-scheduler-easy-hunting.js b/client/app/telecom/telephony/alias/configuration/scheduler/easyHunting/telecom-telephony-alias-configuration-scheduler-easy-hunting.js index 55598f784..480caab93 100644 --- a/client/app/telecom/telephony/alias/configuration/scheduler/easyHunting/telecom-telephony-alias-configuration-scheduler-easy-hunting.js +++ b/client/app/telecom/telephony/alias/configuration/scheduler/easyHunting/telecom-telephony-alias-configuration-scheduler-easy-hunting.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/alias/configuration/scheduler/easyHunting', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/scheduler/oldPabx/telecom-telephony-alias-configuration-scheduler-old-pabx.js b/client/app/telecom/telephony/alias/configuration/scheduler/oldPabx/telecom-telephony-alias-configuration-scheduler-old-pabx.js index 4793346a6..db9ab4702 100644 --- a/client/app/telecom/telephony/alias/configuration/scheduler/oldPabx/telecom-telephony-alias-configuration-scheduler-old-pabx.js +++ b/client/app/telecom/telephony/alias/configuration/scheduler/oldPabx/telecom-telephony-alias-configuration-scheduler-old-pabx.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/alias/configuration/scheduler/oldPabx', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/scheduler/ovhPabx/telecom-telephony-alias-configuration-scheduler-ovh-pabx.js b/client/app/telecom/telephony/alias/configuration/scheduler/ovhPabx/telecom-telephony-alias-configuration-scheduler-ovh-pabx.js index cdf308b33..48e6dbc8b 100644 --- a/client/app/telecom/telephony/alias/configuration/scheduler/ovhPabx/telecom-telephony-alias-configuration-scheduler-ovh-pabx.js +++ b/client/app/telecom/telephony/alias/configuration/scheduler/ovhPabx/telecom-telephony-alias-configuration-scheduler-ovh-pabx.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/alias/configuration/scheduler/ovhPabx', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/scheduler/telecom-telephony-alias-configuration-scheduler.js b/client/app/telecom/telephony/alias/configuration/scheduler/telecom-telephony-alias-configuration-scheduler.js index 265d8e1e8..8c1c8fe3f 100644 --- a/client/app/telecom/telephony/alias/configuration/scheduler/telecom-telephony-alias-configuration-scheduler.js +++ b/client/app/telecom/telephony/alias/configuration/scheduler/telecom-telephony-alias-configuration-scheduler.js @@ -2,8 +2,6 @@ angular.module('managerApp').config(($stateProvider) => { $stateProvider.state('telecom.telephony.alias.configuration.scheduler', { url: '/scheduler', abstract: true, - translations: [ - 'telecom/telephony/alias/configuration/scheduler', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/stats/telecom-telephony-alias-configuration-stats.js b/client/app/telecom/telephony/alias/configuration/stats/telecom-telephony-alias-configuration-stats.js index f827d7cf6..8ecc25675 100644 --- a/client/app/telecom/telephony/alias/configuration/stats/telecom-telephony-alias-configuration-stats.js +++ b/client/app/telecom/telephony/alias/configuration/stats/telecom-telephony-alias-configuration-stats.js @@ -2,8 +2,6 @@ angular.module('managerApp').config(($stateProvider) => { $stateProvider.state('telecom.telephony.alias.configuration.stats', { url: '/stats', abstract: true, - translations: [ - 'telecom/telephony/alias/configuration/stats', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/telecom-telephony-alias-configuration.js b/client/app/telecom/telephony/alias/configuration/telecom-telephony-alias-configuration.js index 49597e666..4f06b5257 100644 --- a/client/app/telecom/telephony/alias/configuration/telecom-telephony-alias-configuration.js +++ b/client/app/telecom/telephony/alias/configuration/telecom-telephony-alias-configuration.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'AliasConfigurationCtrl', }, }, - translations: [ - 'telecom/telephony/alias/configuration', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/timeCondition/easyHunting/telecom-telephony-alias-configuration-time-condition-easy-hunting.js b/client/app/telecom/telephony/alias/configuration/timeCondition/easyHunting/telecom-telephony-alias-configuration-time-condition-easy-hunting.js index d3bd04f68..b0369dce6 100644 --- a/client/app/telecom/telephony/alias/configuration/timeCondition/easyHunting/telecom-telephony-alias-configuration-time-condition-easy-hunting.js +++ b/client/app/telecom/telephony/alias/configuration/timeCondition/easyHunting/telecom-telephony-alias-configuration-time-condition-easy-hunting.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/alias/configuration/timeCondition/easyHunting', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/timeCondition/oldPabx/telecom-telephony-alias-configuration-time-condition-old-pabx.js b/client/app/telecom/telephony/alias/configuration/timeCondition/oldPabx/telecom-telephony-alias-configuration-time-condition-old-pabx.js index 195e97091..17e7ac475 100644 --- a/client/app/telecom/telephony/alias/configuration/timeCondition/oldPabx/telecom-telephony-alias-configuration-time-condition-old-pabx.js +++ b/client/app/telecom/telephony/alias/configuration/timeCondition/oldPabx/telecom-telephony-alias-configuration-time-condition-old-pabx.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/alias/configuration/timeCondition/oldPabx', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/timeCondition/telecom-telephony-line-calls-time-condition.js b/client/app/telecom/telephony/alias/configuration/timeCondition/telecom-telephony-line-calls-time-condition.js index 180792d9b..ac87a2daa 100644 --- a/client/app/telecom/telephony/alias/configuration/timeCondition/telecom-telephony-line-calls-time-condition.js +++ b/client/app/telecom/telephony/alias/configuration/timeCondition/telecom-telephony-line-calls-time-condition.js @@ -2,8 +2,6 @@ angular.module('managerApp').config(($stateProvider) => { $stateProvider.state('telecom.telephony.alias.configuration.timeCondition', { url: '/timeCondition', abstract: true, - translations: [ - 'telecom/telephony/alias/configuration/timeCondition', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/tones/oldPabx/telecom-telephony-alias-configuration-tones-oldPabx.js b/client/app/telecom/telephony/alias/configuration/tones/oldPabx/telecom-telephony-alias-configuration-tones-oldPabx.js index 322473611..ce565be7f 100644 --- a/client/app/telecom/telephony/alias/configuration/tones/oldPabx/telecom-telephony-alias-configuration-tones-oldPabx.js +++ b/client/app/telecom/telephony/alias/configuration/tones/oldPabx/telecom-telephony-alias-configuration-tones-oldPabx.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/alias/configuration/tones/oldPabx', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/configuration/tones/telecom-telephony-alias-configuration-tones.js b/client/app/telecom/telephony/alias/configuration/tones/telecom-telephony-alias-configuration-tones.js index 4b77d6fd5..8c52cdec0 100644 --- a/client/app/telecom/telephony/alias/configuration/tones/telecom-telephony-alias-configuration-tones.js +++ b/client/app/telecom/telephony/alias/configuration/tones/telecom-telephony-alias-configuration-tones.js @@ -2,8 +2,6 @@ angular.module('managerApp').config(($stateProvider) => { $stateProvider.state('telecom.telephony.alias.configuration.tones', { url: '/tones', abstract: true, - translations: [ - 'telecom/telephony/alias/configuration/tones', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/consumption/incomingCalls/telecom-telephony-alias-consumption-incomingCalls.js b/client/app/telecom/telephony/alias/consumption/incomingCalls/telecom-telephony-alias-consumption-incomingCalls.js index 668ba1853..e9e78f15c 100644 --- a/client/app/telecom/telephony/alias/consumption/incomingCalls/telecom-telephony-alias-consumption-incomingCalls.js +++ b/client/app/telecom/telephony/alias/consumption/incomingCalls/telecom-telephony-alias-consumption-incomingCalls.js @@ -13,9 +13,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'IncomingCallsCtrl', }, }, - translations: [ - 'telecom/telephony/alias/consumption/incomingCalls', - 'telecom/telephony/service/consumption/incomingCalls', - ], + translations: ['.', '../../../service/consumption/incomingCalls'], }); }); diff --git a/client/app/telecom/telephony/alias/consumption/outgoingCalls/telecom-telephony-alias-consumption-outgoingCalls.js b/client/app/telecom/telephony/alias/consumption/outgoingCalls/telecom-telephony-alias-consumption-outgoingCalls.js index 30b1d518f..1d02d4b77 100644 --- a/client/app/telecom/telephony/alias/consumption/outgoingCalls/telecom-telephony-alias-consumption-outgoingCalls.js +++ b/client/app/telecom/telephony/alias/consumption/outgoingCalls/telecom-telephony-alias-consumption-outgoingCalls.js @@ -13,9 +13,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'OutgoingCallsCtrl', }, }, - translations: [ - 'telecom/telephony/alias/consumption/outgoingCalls', - 'telecom/telephony/service/consumption/outgoingCalls', - ], + translations: ['.', '../../../service/consumption/outgoingCalls'], }); }); diff --git a/client/app/telecom/telephony/alias/consumption/telecom-telephony-alias-consumption.js b/client/app/telecom/telephony/alias/consumption/telecom-telephony-alias-consumption.js index c49ea698f..73ecea33c 100644 --- a/client/app/telecom/telephony/alias/consumption/telecom-telephony-alias-consumption.js +++ b/client/app/telecom/telephony/alias/consumption/telecom-telephony-alias-consumption.js @@ -8,9 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'AliasConsumptionCtrl', }, }, - translations: [ - 'telecom/telephony/alias/consumption', - 'telecom/telephony/service/consumption', - ], + translations: ['.', '../../service/consumption'], }); }); diff --git a/client/app/telecom/telephony/alias/contact/telecom-telephony-alias-contact.js b/client/app/telecom/telephony/alias/contact/telecom-telephony-alias-contact.js index 5feddd536..2dcf8e2ec 100644 --- a/client/app/telecom/telephony/alias/contact/telecom-telephony-alias-contact.js +++ b/client/app/telecom/telephony/alias/contact/telecom-telephony-alias-contact.js @@ -8,6 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'ServiceContactCtrl', }, }, - translations: ['common', 'telecom/telephony/service/contact'], + translations: ['../../service/contact'], }); }); diff --git a/client/app/telecom/telephony/alias/portability/order/telecom-telephony-alias-portability-order.js b/client/app/telecom/telephony/alias/portability/order/telecom-telephony-alias-portability-order.js index 60fc0fd10..0125f06ca 100644 --- a/client/app/telecom/telephony/alias/portability/order/telecom-telephony-alias-portability-order.js +++ b/client/app/telecom/telephony/alias/portability/order/telecom-telephony-alias-portability-order.js @@ -8,6 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'PortabilityOrderCtrl', }, }, - translations: ['common', 'telecom/telephony', 'telecom/telephony/alias/portability/order'], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/portability/portabilities/telecom-telephony-alias-portability-portabilities.js b/client/app/telecom/telephony/alias/portability/portabilities/telecom-telephony-alias-portability-portabilities.js index 33c89036f..a48f7476a 100644 --- a/client/app/telecom/telephony/alias/portability/portabilities/telecom-telephony-alias-portability-portabilities.js +++ b/client/app/telecom/telephony/alias/portability/portabilities/telecom-telephony-alias-portability-portabilities.js @@ -8,6 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'PortabilitiesCtrl', }, }, - translations: ['common', 'telecom/telephony/alias/portability/portabilities'], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/special/fees/telecom-telephony-alias-special-fees.js b/client/app/telecom/telephony/alias/special/fees/telecom-telephony-alias-special-fees.js index b78ed3e5d..bf140ad7c 100644 --- a/client/app/telecom/telephony/alias/special/fees/telecom-telephony-alias-special-fees.js +++ b/client/app/telecom/telephony/alias/special/fees/telecom-telephony-alias-special-fees.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/alias/special/fees', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/special/rsva/telecom-telephony-alias-special-rsva.js b/client/app/telecom/telephony/alias/special/rsva/telecom-telephony-alias-special-rsva.js index 76c8af1a7..2f8c79d0a 100644 --- a/client/app/telecom/telephony/alias/special/rsva/telecom-telephony-alias-special-rsva.js +++ b/client/app/telecom/telephony/alias/special/rsva/telecom-telephony-alias-special-rsva.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/alias/special/rsva', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/special/telecom-telephony-alias-special.js b/client/app/telecom/telephony/alias/special/telecom-telephony-alias-special.js index c31f8ea13..bc58e3d92 100644 --- a/client/app/telecom/telephony/alias/special/telecom-telephony-alias-special.js +++ b/client/app/telecom/telephony/alias/special/telecom-telephony-alias-special.js @@ -6,8 +6,6 @@ angular.module('managerApp').config(($stateProvider) => { templateUrl: 'app/telecom/telephony/alias/special/telecom-telephony-alias-special.html', }, }, - translations: [ - 'telecom/telephony/alias/special', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/special/transfer/telecom-telephony-alias-special-transfer.js b/client/app/telecom/telephony/alias/special/transfer/telecom-telephony-alias-special-transfer.js index 8a1a5233c..7fc780f60 100644 --- a/client/app/telecom/telephony/alias/special/transfer/telecom-telephony-alias-special-transfer.js +++ b/client/app/telecom/telephony/alias/special/transfer/telecom-telephony-alias-special-transfer.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/alias/special/transfer', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/svaGenerator/telecom-telephony-alias-svaGenerator.js b/client/app/telecom/telephony/alias/svaGenerator/telecom-telephony-alias-svaGenerator.js index 8a877b661..cefb542aa 100644 --- a/client/app/telecom/telephony/alias/svaGenerator/telecom-telephony-alias-svaGenerator.js +++ b/client/app/telecom/telephony/alias/svaGenerator/telecom-telephony-alias-svaGenerator.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'SvaGeneratorCtrl', }, }, - translations: [ - 'telecom/telephony/alias/svaGenerator', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/alias/telecom-telephony-alias.js b/client/app/telecom/telephony/alias/telecom-telephony-alias.js index 469d3f9bb..8f48bc357 100644 --- a/client/app/telecom/telephony/alias/telecom-telephony-alias.js +++ b/client/app/telecom/telephony/alias/telecom-telephony-alias.js @@ -16,10 +16,7 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'AliasPortabilityCtrl', }, }, - translations: [ - 'telecom/telephony/alias', - 'telecom/telephony/alias/portability', - ], + translations: ['.', './portability'], resolve: { $title(translations, $translate, $stateParams, OvhApiTelephony) { return OvhApiTelephony.Number().v6().get({ diff --git a/client/app/telecom/telephony/billingAccount/abbreviatedNumbers/telecom-telephony-abbreviatedNumbers.js b/client/app/telecom/telephony/billingAccount/abbreviatedNumbers/telecom-telephony-abbreviatedNumbers.js index 48a899b19..9e3355334 100644 --- a/client/app/telecom/telephony/billingAccount/abbreviatedNumbers/telecom-telephony-abbreviatedNumbers.js +++ b/client/app/telecom/telephony/billingAccount/abbreviatedNumbers/telecom-telephony-abbreviatedNumbers.js @@ -8,9 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'AbbreviatedNumbersCtrl', }, }, - translations: [ - 'telecom/telephony/billingAccount', - 'telecom/telephony/billingAccount/abbreviatedNumbers', - ], + translations: ['.', '..'], }); }); diff --git a/client/app/telecom/telephony/billingAccount/administration/addGroup/telecom-telephony-billing-account-administration-add-group.js b/client/app/telecom/telephony/billingAccount/administration/addGroup/telecom-telephony-billing-account-administration-add-group.js index 34b025593..4bcff5f43 100644 --- a/client/app/telecom/telephony/billingAccount/administration/addGroup/telecom-telephony-billing-account-administration-add-group.js +++ b/client/app/telecom/telephony/billingAccount/administration/addGroup/telecom-telephony-billing-account-administration-add-group.js @@ -8,9 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'AddGroupCtrl', }, }, - translations: [ - 'telecom/telephony/billingAccount/administration', - 'telecom/telephony/billingAccount/administration/addGroup', - ], + translations: ['.', '..'], }); }); diff --git a/client/app/telecom/telephony/billingAccount/administration/deleteGroup/telecom-telephony-billing-account-administration-delete-group.js b/client/app/telecom/telephony/billingAccount/administration/deleteGroup/telecom-telephony-billing-account-administration-delete-group.js index 3daba6589..606902bfd 100644 --- a/client/app/telecom/telephony/billingAccount/administration/deleteGroup/telecom-telephony-billing-account-administration-delete-group.js +++ b/client/app/telecom/telephony/billingAccount/administration/deleteGroup/telecom-telephony-billing-account-administration-delete-group.js @@ -8,9 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'DeleteGroupCtrl', }, }, - translations: [ - 'telecom/telephony/billingAccount/administration', - 'telecom/telephony/billingAccount/administration/deleteGroup', - ], + translations: ['.', '..'], }); }); diff --git a/client/app/telecom/telephony/billingAccount/administration/linesGroup/telecom-telephony-billing-account-administration-lines-group.js b/client/app/telecom/telephony/billingAccount/administration/linesGroup/telecom-telephony-billing-account-administration-lines-group.js index 11ce88ee5..c363b6826 100644 --- a/client/app/telecom/telephony/billingAccount/administration/linesGroup/telecom-telephony-billing-account-administration-lines-group.js +++ b/client/app/telecom/telephony/billingAccount/administration/linesGroup/telecom-telephony-billing-account-administration-lines-group.js @@ -8,9 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'LinesGroupCtrl', }, }, - translations: [ - 'telecom/telephony/billingAccount/administration', - 'telecom/telephony/billingAccount/administration/linesGroup', - ], + translations: ['.', '..'], }); }); diff --git a/client/app/telecom/telephony/billingAccount/administration/optionsGroup/telecom-telephony-billing-account-administration-options-group.js b/client/app/telecom/telephony/billingAccount/administration/optionsGroup/telecom-telephony-billing-account-administration-options-group.js index e5eab013d..7b2f66ece 100644 --- a/client/app/telecom/telephony/billingAccount/administration/optionsGroup/telecom-telephony-billing-account-administration-options-group.js +++ b/client/app/telecom/telephony/billingAccount/administration/optionsGroup/telecom-telephony-billing-account-administration-options-group.js @@ -8,6 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'OptionsGroupCtrl', }, }, - translations: ['common', 'telecom/telephony/billingAccount/administration/optionsGroup'], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/billingAccount/administration/telecom-telephony-billing-account-administration.js b/client/app/telecom/telephony/billingAccount/administration/telecom-telephony-billing-account-administration.js index da110e419..36e98411f 100644 --- a/client/app/telecom/telephony/billingAccount/administration/telecom-telephony-billing-account-administration.js +++ b/client/app/telecom/telephony/billingAccount/administration/telecom-telephony-billing-account-administration.js @@ -8,9 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'BillingAccountAdministrationCtrl', }, }, - translations: [ - 'telecom/telephony/billingAccount/administration', - 'telecom/telephony/billingAccount/billing', - ], + translations: ['.', '../billing'], }); }); diff --git a/client/app/telecom/telephony/billingAccount/billing/bill/telecom-telephony-billing-account-billing-bill.js b/client/app/telecom/telephony/billingAccount/billing/bill/telecom-telephony-billing-account-billing-bill.js index 4b4d1f2c0..3b21cc838 100644 --- a/client/app/telecom/telephony/billingAccount/billing/bill/telecom-telephony-billing-account-billing-bill.js +++ b/client/app/telecom/telephony/billingAccount/billing/bill/telecom-telephony-billing-account-billing-bill.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'BillingAccountBillCtrl', }, }, - translations: [ - 'telecom/telephony/billingAccount/billing/bill', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/billingAccount/billing/calledFees/telecom-telephony-billing-account-billing-called-fees.js b/client/app/telecom/telephony/billingAccount/billing/calledFees/telecom-telephony-billing-account-billing-called-fees.js index 7d01da635..2a3bb180e 100644 --- a/client/app/telecom/telephony/billingAccount/billing/calledFees/telecom-telephony-billing-account-billing-called-fees.js +++ b/client/app/telecom/telephony/billingAccount/billing/calledFees/telecom-telephony-billing-account-billing-called-fees.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'CalledFeesCtrl', }, }, - translations: [ - 'telecom/telephony/billingAccount/billing/calledFees', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/billingAccount/billing/creditThreshold/telecom-telephony-billing-account-billing-credit-threshold.js b/client/app/telecom/telephony/billingAccount/billing/creditThreshold/telecom-telephony-billing-account-billing-credit-threshold.js index 5bcb7e7f1..f9b5a6d57 100644 --- a/client/app/telecom/telephony/billingAccount/billing/creditThreshold/telecom-telephony-billing-account-billing-credit-threshold.js +++ b/client/app/telecom/telephony/billingAccount/billing/creditThreshold/telecom-telephony-billing-account-billing-credit-threshold.js @@ -8,9 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'BillingAccountCreditThresholdCtrl', }, }, - translations: [ - 'telecom/telephony/billingAccount/billing', - 'telecom/telephony/billingAccount/billing/creditThreshold', - ], + translations: ['.', '..'], }); }); diff --git a/client/app/telecom/telephony/billingAccount/billing/deposit/telecom-telephony-billing-account-billing-deposit.js b/client/app/telecom/telephony/billingAccount/billing/deposit/telecom-telephony-billing-account-billing-deposit.js index ed5c2221d..14ed8987e 100644 --- a/client/app/telecom/telephony/billingAccount/billing/deposit/telecom-telephony-billing-account-billing-deposit.js +++ b/client/app/telecom/telephony/billingAccount/billing/deposit/telecom-telephony-billing-account-billing-deposit.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'BillingDepositCtrl', }, }, - translations: [ - 'telecom/telephony/billingAccount/billing/deposit', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/billingAccount/billing/depositMovement/telecom-telephony-billing-account-billing-deposit-movement.js b/client/app/telecom/telephony/billingAccount/billing/depositMovement/telecom-telephony-billing-account-billing-deposit-movement.js index 65d4d5636..a421baf4c 100644 --- a/client/app/telecom/telephony/billingAccount/billing/depositMovement/telecom-telephony-billing-account-billing-deposit-movement.js +++ b/client/app/telecom/telephony/billingAccount/billing/depositMovement/telecom-telephony-billing-account-billing-deposit-movement.js @@ -8,9 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'BillingAccountDepositMovementCtrl', }, }, - translations: [ - 'telecom/telephony/billingAccount/billing', - 'telecom/telephony/billingAccount/billing/depositMovement', - ], + translations: ['.', '..'], }); }); diff --git a/client/app/telecom/telephony/billingAccount/billing/groupRepayments/telecom-telephony-billing-account-billing-group-repayments.js b/client/app/telecom/telephony/billingAccount/billing/groupRepayments/telecom-telephony-billing-account-billing-group-repayments.js index 51b6c699d..256598ec6 100644 --- a/client/app/telecom/telephony/billingAccount/billing/groupRepayments/telecom-telephony-billing-account-billing-group-repayments.js +++ b/client/app/telecom/telephony/billingAccount/billing/groupRepayments/telecom-telephony-billing-account-billing-group-repayments.js @@ -7,7 +7,5 @@ angular.module('managerApp').config($stateProvider => $stateProvider.state('tele controllerAs: 'GroupRepaymentsCtrl', }, }, - translations: [ - 'telecom/telephony/billingAccount/billing/groupRepayments', - ], + translations: ['.'], })); diff --git a/client/app/telecom/telephony/billingAccount/billing/repaymentHistory/telecom-telephony-billing-account-billing-repayment-history.js b/client/app/telecom/telephony/billingAccount/billing/repaymentHistory/telecom-telephony-billing-account-billing-repayment-history.js index e3726cd62..d507de413 100644 --- a/client/app/telecom/telephony/billingAccount/billing/repaymentHistory/telecom-telephony-billing-account-billing-repayment-history.js +++ b/client/app/telecom/telephony/billingAccount/billing/repaymentHistory/telecom-telephony-billing-account-billing-repayment-history.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'RepaymentHistoryCtrl', }, }, - translations: [ - 'telecom/telephony/billingAccount/billing/repaymentHistory', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/billingAccount/billing/summary/telecom-telephony-billing-account-billing-summary.js b/client/app/telecom/telephony/billingAccount/billing/summary/telecom-telephony-billing-account-billing-summary.js index da88fd1b7..5311bcd83 100644 --- a/client/app/telecom/telephony/billingAccount/billing/summary/telecom-telephony-billing-account-billing-summary.js +++ b/client/app/telecom/telephony/billingAccount/billing/summary/telecom-telephony-billing-account-billing-summary.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'SummaryCtrl', }, }, - translations: [ - 'telecom/telephony/billingAccount/billing/summary', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/billingAccount/billing/telecom-telephony-billing-account-billing.js b/client/app/telecom/telephony/billingAccount/billing/telecom-telephony-billing-account-billing.js index c852c2d33..e56dca514 100644 --- a/client/app/telecom/telephony/billingAccount/billing/telecom-telephony-billing-account-billing.js +++ b/client/app/telecom/telephony/billingAccount/billing/telecom-telephony-billing-account-billing.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'GroupBillingCtrl', }, }, - translations: [ - 'telecom/telephony/billingAccount/billing', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/billingAccount/billing/tollfreeHistory/telecom-telephony-billing-account-billing-tollfree-history.js b/client/app/telecom/telephony/billingAccount/billing/tollfreeHistory/telecom-telephony-billing-account-billing-tollfree-history.js index 907e6783e..96af63917 100644 --- a/client/app/telecom/telephony/billingAccount/billing/tollfreeHistory/telecom-telephony-billing-account-billing-tollfree-history.js +++ b/client/app/telecom/telephony/billingAccount/billing/tollfreeHistory/telecom-telephony-billing-account-billing-tollfree-history.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'TollfreeHistoryCtrl', }, }, - translations: [ - 'telecom/telephony/billingAccount/billing/tollfreeHistory', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/billingAccount/dashboard/telecom-telephony-billing-account-dashboard.js b/client/app/telecom/telephony/billingAccount/dashboard/telecom-telephony-billing-account-dashboard.js index 1a0dbeee6..4d93af12f 100644 --- a/client/app/telecom/telephony/billingAccount/dashboard/telecom-telephony-billing-account-dashboard.js +++ b/client/app/telecom/telephony/billingAccount/dashboard/telecom-telephony-billing-account-dashboard.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'DashboardCtrl', }, }, - translations: [ - 'telecom/telephony/billingAccount/dashboard', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/billingAccount/manageContacts/telecom-telephony-billing-account-manageContacts.js b/client/app/telecom/telephony/billingAccount/manageContacts/telecom-telephony-billing-account-manageContacts.js index fdff7b088..059acc2aa 100644 --- a/client/app/telecom/telephony/billingAccount/manageContacts/telecom-telephony-billing-account-manageContacts.js +++ b/client/app/telecom/telephony/billingAccount/manageContacts/telecom-telephony-billing-account-manageContacts.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'ManageContactsCtrl', }, }, - translations: [ - 'telecom/telephony/billingAccount/manageContacts', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/billingAccount/orderAlias/geographical/telecom-telephony-billing-account-orderAlias-geographical.js b/client/app/telecom/telephony/billingAccount/orderAlias/geographical/telecom-telephony-billing-account-orderAlias-geographical.js index b28f8a093..c84307117 100644 --- a/client/app/telecom/telephony/billingAccount/orderAlias/geographical/telecom-telephony-billing-account-orderAlias-geographical.js +++ b/client/app/telecom/telephony/billingAccount/orderAlias/geographical/telecom-telephony-billing-account-orderAlias-geographical.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'AliasOrderGeographicalCtrl', }, }, - translations: [ - 'telecom/telephony/billingAccount/orderAlias/geographical', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/billingAccount/orderAlias/international/telecom-telephony-billing-account-orderAlias-international.js b/client/app/telecom/telephony/billingAccount/orderAlias/international/telecom-telephony-billing-account-orderAlias-international.js index 46ad184ba..092af877e 100644 --- a/client/app/telecom/telephony/billingAccount/orderAlias/international/telecom-telephony-billing-account-orderAlias-international.js +++ b/client/app/telecom/telephony/billingAccount/orderAlias/international/telecom-telephony-billing-account-orderAlias-international.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'AliasOrderInternationalCtrl', }, }, - translations: [ - 'telecom/telephony/billingAccount/orderAlias/international', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/billingAccount/orderAlias/nonGeographical/telecom-telephony-billing-account-orderAlias-nonGeographical.js b/client/app/telecom/telephony/billingAccount/orderAlias/nonGeographical/telecom-telephony-billing-account-orderAlias-nonGeographical.js index 1ca9afcaa..e7aa5d765 100644 --- a/client/app/telecom/telephony/billingAccount/orderAlias/nonGeographical/telecom-telephony-billing-account-orderAlias-nonGeographical.js +++ b/client/app/telecom/telephony/billingAccount/orderAlias/nonGeographical/telecom-telephony-billing-account-orderAlias-nonGeographical.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'AliasOrderNonGeographicalCtrl', }, }, - translations: [ - 'telecom/telephony/billingAccount/orderAlias/nonGeographical', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/billingAccount/orderAlias/special/telecom-telephony-billing-account-orderAlias-special.js b/client/app/telecom/telephony/billingAccount/orderAlias/special/telecom-telephony-billing-account-orderAlias-special.js index 04e4f9b93..e0bf03da5 100644 --- a/client/app/telecom/telephony/billingAccount/orderAlias/special/telecom-telephony-billing-account-orderAlias-special.js +++ b/client/app/telecom/telephony/billingAccount/orderAlias/special/telecom-telephony-billing-account-orderAlias-special.js @@ -8,9 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'AliasOrderSpecialCtrl', }, }, - translations: [ - 'telecom/telephony/billingAccount/orderAlias/special', - 'telecom/telephony/alias/special/rsva', - ], + translations: ['.', '../../../alias/special/rsva'], }); }); diff --git a/client/app/telecom/telephony/billingAccount/orderAlias/telecom-telephony-billing-account-orderAlias.js b/client/app/telecom/telephony/billingAccount/orderAlias/telecom-telephony-billing-account-orderAlias.js index 2d6567d28..186a5b907 100644 --- a/client/app/telecom/telephony/billingAccount/orderAlias/telecom-telephony-billing-account-orderAlias.js +++ b/client/app/telecom/telephony/billingAccount/orderAlias/telecom-telephony-billing-account-orderAlias.js @@ -11,8 +11,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'AliasOrderCtrl', }, }, - translations: [ - 'telecom/telephony/billingAccount/orderAlias', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/billingAccount/phonebook/telecom-telephony-billing-account-phonebook.js b/client/app/telecom/telephony/billingAccount/phonebook/telecom-telephony-billing-account-phonebook.js index c29682d22..9fb8f1919 100644 --- a/client/app/telecom/telephony/billingAccount/phonebook/telecom-telephony-billing-account-phonebook.js +++ b/client/app/telecom/telephony/billingAccount/phonebook/telecom-telephony-billing-account-phonebook.js @@ -8,9 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'PhonebookCtrl', }, }, - translations: [ - 'telecom/telephony/billingAccount', - 'telecom/telephony/billingAccount/phonebook', - ], + translations: ['.', '..'], }); }); diff --git a/client/app/telecom/telephony/fax/assist/logs/telecom-telephony-fax-assist-logs.js b/client/app/telecom/telephony/fax/assist/logs/telecom-telephony-fax-assist-logs.js index ee498e9c8..fb8abe679 100644 --- a/client/app/telecom/telephony/fax/assist/logs/telecom-telephony-fax-assist-logs.js +++ b/client/app/telecom/telephony/fax/assist/logs/telecom-telephony-fax-assist-logs.js @@ -8,9 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'LogsCtrl', }, }, - translations: [ - 'common', - 'telecom/telephony/service/assist/logs', - ], + translations: ['../../../service/assist/logs'], }); }); diff --git a/client/app/telecom/telephony/fax/assist/orders/telecom-telephony-fax-assist-orders.js b/client/app/telecom/telephony/fax/assist/orders/telecom-telephony-fax-assist-orders.js index 4fddd10cd..dfb9f02e4 100644 --- a/client/app/telecom/telephony/fax/assist/orders/telecom-telephony-fax-assist-orders.js +++ b/client/app/telecom/telephony/fax/assist/orders/telecom-telephony-fax-assist-orders.js @@ -8,9 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'OrdersCtrl', }, }, - translations: [ - 'common', - 'telecom/telephony/service/assist/orders', - ], + translations: ['../../../service/assist/orders'], }); }); diff --git a/client/app/telecom/telephony/fax/assist/support/telecom-telephony-fax-assist-support.js b/client/app/telecom/telephony/fax/assist/support/telecom-telephony-fax-assist-support.js index 47cef6696..0e05e99c0 100644 --- a/client/app/telecom/telephony/fax/assist/support/telecom-telephony-fax-assist-support.js +++ b/client/app/telecom/telephony/fax/assist/support/telecom-telephony-fax-assist-support.js @@ -8,9 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'SupportCtrl', }, }, - translations: [ - 'common', - 'telecom/telephony/service/assist/support', - ], + translations: ['../../../service/assist/support'], }); }); diff --git a/client/app/telecom/telephony/fax/assist/telecom-telephony-fax-assist.js b/client/app/telecom/telephony/fax/assist/telecom-telephony-fax-assist.js index 24b801f70..dbc5cedb2 100644 --- a/client/app/telecom/telephony/fax/assist/telecom-telephony-fax-assist.js +++ b/client/app/telecom/telephony/fax/assist/telecom-telephony-fax-assist.js @@ -8,9 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/fax/assist', - 'telecom/telephony/service/assist', - ], + translations: ['.', '../../service/assist'], }); }); diff --git a/client/app/telecom/telephony/fax/consumption/incomingFax/telecom-telephony-fax-consumption-incomingFax.js b/client/app/telecom/telephony/fax/consumption/incomingFax/telecom-telephony-fax-consumption-incomingFax.js index 7205c2c18..c473dfad9 100644 --- a/client/app/telecom/telephony/fax/consumption/incomingFax/telecom-telephony-fax-consumption-incomingFax.js +++ b/client/app/telecom/telephony/fax/consumption/incomingFax/telecom-telephony-fax-consumption-incomingFax.js @@ -12,9 +12,9 @@ angular.module('managerApp').config(($stateProvider) => { }, }, translations: [ - 'telecom/telephony/fax/consumption/incomingFax', - 'telecom/telephony/service/consumption', - 'telecom/telephony/service/consumption/incomingFax', + '.', + '../../../service/consumption', + '../../../service/consumption/incomingFax', ], }); }); diff --git a/client/app/telecom/telephony/fax/consumption/outgoingFax/telecom-telephony-fax-consumption-outgoingFax.js b/client/app/telecom/telephony/fax/consumption/outgoingFax/telecom-telephony-fax-consumption-outgoingFax.js index e494159f5..37ba10e81 100644 --- a/client/app/telecom/telephony/fax/consumption/outgoingFax/telecom-telephony-fax-consumption-outgoingFax.js +++ b/client/app/telecom/telephony/fax/consumption/outgoingFax/telecom-telephony-fax-consumption-outgoingFax.js @@ -12,9 +12,9 @@ angular.module('managerApp').config(($stateProvider) => { }, }, translations: [ - 'telecom/telephony/fax/consumption/outgoingFax', - 'telecom/telephony/service/consumption', - 'telecom/telephony/service/consumption/outgoingFax', + '.', + '../../consumption', + '../../consumption/outgoingFax', ], }); }); diff --git a/client/app/telecom/telephony/fax/consumption/telecom-telephony-fax-consumption.js b/client/app/telecom/telephony/fax/consumption/telecom-telephony-fax-consumption.js index 470a8fccd..e7649e10c 100644 --- a/client/app/telecom/telephony/fax/consumption/telecom-telephony-fax-consumption.js +++ b/client/app/telecom/telephony/fax/consumption/telecom-telephony-fax-consumption.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/fax/consumption', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/fax/contact/telecom-telephony-fax-contact.js b/client/app/telecom/telephony/fax/contact/telecom-telephony-fax-contact.js index d4ced000a..4b5f48975 100644 --- a/client/app/telecom/telephony/fax/contact/telecom-telephony-fax-contact.js +++ b/client/app/telecom/telephony/fax/contact/telecom-telephony-fax-contact.js @@ -8,10 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'ServiceContactCtrl', }, }, - translations: [ - 'common', - 'telecom/telephony/fax', - 'telecom/telephony/service/contact', - ], + translations: ['..', '../../service/contact'], }); }); diff --git a/client/app/telecom/telephony/fax/fax/campaigns/telecom-telephony-fax-fax-campaigns.js b/client/app/telecom/telephony/fax/fax/campaigns/telecom-telephony-fax-fax-campaigns.js index 7ac24cf0c..7fc83d94a 100644 --- a/client/app/telecom/telephony/fax/fax/campaigns/telecom-telephony-fax-fax-campaigns.js +++ b/client/app/telecom/telephony/fax/fax/campaigns/telecom-telephony-fax-fax-campaigns.js @@ -12,8 +12,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'CampaignsCtrl', }, }, - translations: [ - 'telecom/telephony/service/fax/campaigns', - ], + translations: ['../../../service/fax/campaigns'], }); }); diff --git a/client/app/telecom/telephony/fax/fax/convertToVoicefax/telecom-telephony-fax-fax-convertToVoicefax.js b/client/app/telecom/telephony/fax/fax/convertToVoicefax/telecom-telephony-fax-fax-convertToVoicefax.js index ac7e49eb4..8c751efba 100644 --- a/client/app/telecom/telephony/fax/fax/convertToVoicefax/telecom-telephony-fax-fax-convertToVoicefax.js +++ b/client/app/telecom/telephony/fax/fax/convertToVoicefax/telecom-telephony-fax-fax-convertToVoicefax.js @@ -14,8 +14,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/service/fax/convertToVoicefax', - ], + translations: ['../../../service/fax/convertToVoicefax'], }); }); diff --git a/client/app/telecom/telephony/fax/fax/customDomains/telecom-telephony-fax-fax-customDomains.js b/client/app/telecom/telephony/fax/fax/customDomains/telecom-telephony-fax-fax-customDomains.js index e4d13a8a0..0c3462513 100644 --- a/client/app/telecom/telephony/fax/fax/customDomains/telecom-telephony-fax-fax-customDomains.js +++ b/client/app/telecom/telephony/fax/fax/customDomains/telecom-telephony-fax-fax-customDomains.js @@ -12,8 +12,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/service/fax/customDomains', - ], + translations: ['../../../service/fax/customDomains'], }); }); diff --git a/client/app/telecom/telephony/fax/fax/filtering/telecom-telephony-fax-fax-filtering.js b/client/app/telecom/telephony/fax/fax/filtering/telecom-telephony-fax-fax-filtering.js index d29ef9bfa..a698ba10a 100644 --- a/client/app/telecom/telephony/fax/fax/filtering/telecom-telephony-fax-fax-filtering.js +++ b/client/app/telecom/telephony/fax/fax/filtering/telecom-telephony-fax-fax-filtering.js @@ -12,8 +12,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/service/fax/filtering', - ], + translations: ['../../../service/fax/filtering'], }); }); diff --git a/client/app/telecom/telephony/fax/fax/password/telecom-telephony-fax-fax-password.js b/client/app/telecom/telephony/fax/fax/password/telecom-telephony-fax-fax-password.js index 886df3b4c..c4cf076eb 100644 --- a/client/app/telecom/telephony/fax/fax/password/telecom-telephony-fax-fax-password.js +++ b/client/app/telecom/telephony/fax/fax/password/telecom-telephony-fax-fax-password.js @@ -12,8 +12,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'PasswordCtrl', }, }, - translations: [ - 'telecom/telephony/service/fax/password', - ], + translations: ['../../../service/fax/password'], }); }); diff --git a/client/app/telecom/telephony/fax/fax/settings/telecom-telephony-fax-fax-settings.js b/client/app/telecom/telephony/fax/fax/settings/telecom-telephony-fax-fax-settings.js index dfa1c4281..a4c51d869 100644 --- a/client/app/telecom/telephony/fax/fax/settings/telecom-telephony-fax-fax-settings.js +++ b/client/app/telecom/telephony/fax/fax/settings/telecom-telephony-fax-fax-settings.js @@ -12,8 +12,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'SettingsCtrl', }, }, - translations: [ - 'telecom/telephony/service/fax/settings', - ], + translations: ['../../../service/fax/settings'], }); }); diff --git a/client/app/telecom/telephony/fax/fax/telecom-telephony-fax-fax.js b/client/app/telecom/telephony/fax/fax/telecom-telephony-fax-fax.js index ebcf87313..edde0c4ec 100644 --- a/client/app/telecom/telephony/fax/fax/telecom-telephony-fax-fax.js +++ b/client/app/telecom/telephony/fax/fax/telecom-telephony-fax-fax.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/fax/fax', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/fax/management/informations/telecom-telephony-fax-management-informations.js b/client/app/telecom/telephony/fax/management/informations/telecom-telephony-fax-management-informations.js index ed2dcd811..9633a346f 100644 --- a/client/app/telecom/telephony/fax/management/informations/telecom-telephony-fax-management-informations.js +++ b/client/app/telecom/telephony/fax/management/informations/telecom-telephony-fax-management-informations.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/fax/management/informations', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/fax/management/terminate/telecom-telephony-fax-management-terminate.js b/client/app/telecom/telephony/fax/management/terminate/telecom-telephony-fax-management-terminate.js index df9612bfa..1bbc653c0 100644 --- a/client/app/telecom/telephony/fax/management/terminate/telecom-telephony-fax-management-terminate.js +++ b/client/app/telecom/telephony/fax/management/terminate/telecom-telephony-fax-management-terminate.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/fax/management/terminate', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/fax/telecom-telephony-fax.js b/client/app/telecom/telephony/fax/telecom-telephony-fax.js index 26d2ca198..8d3d3ca7d 100644 --- a/client/app/telecom/telephony/fax/telecom-telephony-fax.js +++ b/client/app/telecom/telephony/fax/telecom-telephony-fax.js @@ -16,10 +16,7 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/fax', - 'telecom/telephony/fax/management', - ], + translations: ['.', './management'], resolve: { $title(translations, $translate, $stateParams) { return $translate('telephony_fax_page_title', { name: $stateParams.serviceName }); diff --git a/client/app/telecom/telephony/fax/voicemail/activation/telecom-telephony-fax-voicemail-options.js b/client/app/telecom/telephony/fax/voicemail/activation/telecom-telephony-fax-voicemail-options.js index b62abbca3..df2f93647 100644 --- a/client/app/telecom/telephony/fax/voicemail/activation/telecom-telephony-fax-voicemail-options.js +++ b/client/app/telecom/telephony/fax/voicemail/activation/telecom-telephony-fax-voicemail-options.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/fax/voicemail/activation', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/fax/voicemail/management/telecom-telephony-fax-voicemail-management.js b/client/app/telecom/telephony/fax/voicemail/management/telecom-telephony-fax-voicemail-management.js index 796e7ba14..e3ef296b5 100644 --- a/client/app/telecom/telephony/fax/voicemail/management/telecom-telephony-fax-voicemail-management.js +++ b/client/app/telecom/telephony/fax/voicemail/management/telecom-telephony-fax-voicemail-management.js @@ -12,9 +12,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'VoicemailManagementCtrl', }, }, - translations: [ - 'common', - 'telecom/telephony/service/voicemail/management', - ], + translations: ['../../../service/voicemail/management'], }); }); diff --git a/client/app/telecom/telephony/fax/voicemail/options/telecom-telephony-fax-voicemail-options.js b/client/app/telecom/telephony/fax/voicemail/options/telecom-telephony-fax-voicemail-options.js index ba5b5294f..d2d220cb5 100644 --- a/client/app/telecom/telephony/fax/voicemail/options/telecom-telephony-fax-voicemail-options.js +++ b/client/app/telecom/telephony/fax/voicemail/options/telecom-telephony-fax-voicemail-options.js @@ -12,9 +12,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'VoicemailOptionsCtrl', }, }, - translations: [ - 'common', - 'telecom/telephony/service/voicemail/options', - ], + translations: ['../../../service/voicemail/options'], }); }); diff --git a/client/app/telecom/telephony/fax/voicemail/password/telecom-telephony-fax-voicemail-password.js b/client/app/telecom/telephony/fax/voicemail/password/telecom-telephony-fax-voicemail-password.js index df52b7b39..1f097636b 100644 --- a/client/app/telecom/telephony/fax/voicemail/password/telecom-telephony-fax-voicemail-password.js +++ b/client/app/telecom/telephony/fax/voicemail/password/telecom-telephony-fax-voicemail-password.js @@ -12,9 +12,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'VoicemailPasswordCtrl', }, }, - translations: [ - 'common', - 'telecom/telephony/service/voicemail/password', - ], + translations: ['../../../service/voicemail/password'], }); }); diff --git a/client/app/telecom/telephony/fax/voicemail/telecom-telephony-fax-voicemail.js b/client/app/telecom/telephony/fax/voicemail/telecom-telephony-fax-voicemail.js index d3f7f7180..dd0ce3925 100644 --- a/client/app/telecom/telephony/fax/voicemail/telecom-telephony-fax-voicemail.js +++ b/client/app/telecom/telephony/fax/voicemail/telecom-telephony-fax-voicemail.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/fax/voicemail', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/answer/defaultVoicemail/telecom-telephony-line-answer-defaultVoicemail.js b/client/app/telecom/telephony/line/answer/defaultVoicemail/telecom-telephony-line-answer-defaultVoicemail.js index c72e5c24c..616ae3c02 100644 --- a/client/app/telecom/telephony/line/answer/defaultVoicemail/telecom-telephony-line-answer-defaultVoicemail.js +++ b/client/app/telecom/telephony/line/answer/defaultVoicemail/telecom-telephony-line-answer-defaultVoicemail.js @@ -12,9 +12,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'DefaultVoicemailCtrl', }, }, - translations: [ - 'telecom/telephony/line/answer', - 'telecom/telephony/service/voicemail/default', - ], + translations: ['..', '../../../service/voicemail/default'], }); }); diff --git a/client/app/telecom/telephony/line/answer/telecom-telephony-line-answer.js b/client/app/telecom/telephony/line/answer/telecom-telephony-line-answer.js index aaa8931eb..11b8adce4 100644 --- a/client/app/telecom/telephony/line/answer/telecom-telephony-line-answer.js +++ b/client/app/telecom/telephony/line/answer/telecom-telephony-line-answer.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'LineAnswerCtrl', }, }, - translations: [ - 'telecom/telephony/line/answer', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/answer/voicemailManagement/telecom-telephony-line-answer-voicemailManagement.js b/client/app/telecom/telephony/line/answer/voicemailManagement/telecom-telephony-line-answer-voicemailManagement.js index c1a97d52a..1181594a5 100644 --- a/client/app/telecom/telephony/line/answer/voicemailManagement/telecom-telephony-line-answer-voicemailManagement.js +++ b/client/app/telecom/telephony/line/answer/voicemailManagement/telecom-telephony-line-answer-voicemailManagement.js @@ -12,6 +12,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'VoicemailManagementCtrl', }, }, - translations: ['common', 'telecom/telephony/service/voicemail/management', 'telecom/telephony/line/answer'], + translations: ['..', '../../../service/voicemail/management'], }); }); diff --git a/client/app/telecom/telephony/line/answer/voicemailOptions/telecom-telephony-line-answer-voicemailOptions.js b/client/app/telecom/telephony/line/answer/voicemailOptions/telecom-telephony-line-answer-voicemailOptions.js index 10a83c50c..e04af9144 100644 --- a/client/app/telecom/telephony/line/answer/voicemailOptions/telecom-telephony-line-answer-voicemailOptions.js +++ b/client/app/telecom/telephony/line/answer/voicemailOptions/telecom-telephony-line-answer-voicemailOptions.js @@ -12,6 +12,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'VoicemailOptionsCtrl', }, }, - translations: ['common', 'telecom/telephony/service/voicemail/options', 'telecom/telephony/line/answer'], + translations: ['..', '../../../service/voicemail/options'], }); }); diff --git a/client/app/telecom/telephony/line/answer/voicemailPassword/telecom-telephony-line-answer-voicemailPassword.js b/client/app/telecom/telephony/line/answer/voicemailPassword/telecom-telephony-line-answer-voicemailPassword.js index 6e7ce35a8..30b7bca3e 100644 --- a/client/app/telecom/telephony/line/answer/voicemailPassword/telecom-telephony-line-answer-voicemailPassword.js +++ b/client/app/telecom/telephony/line/answer/voicemailPassword/telecom-telephony-line-answer-voicemailPassword.js @@ -12,6 +12,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'VoicemailPasswordCtrl', }, }, - translations: ['common', 'telecom/telephony/service/voicemail/password', 'telecom/telephony/line/answer'], + translations: ['..', '../../../service/voicemail/password'], }); }); diff --git a/client/app/telecom/telephony/line/assist/logs/telecom-telephony-line-assist-logs.js b/client/app/telecom/telephony/line/assist/logs/telecom-telephony-line-assist-logs.js index 278442446..beadb59c8 100644 --- a/client/app/telecom/telephony/line/assist/logs/telecom-telephony-line-assist-logs.js +++ b/client/app/telecom/telephony/line/assist/logs/telecom-telephony-line-assist-logs.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'LogsCtrl', }, }, - translations: [ - 'telecom/telephony/service/assist/logs', - ], + translations: ['../../../service/assist/logs'], }); }); diff --git a/client/app/telecom/telephony/line/assist/orders/telecom-telephony-line-assist-orders.js b/client/app/telecom/telephony/line/assist/orders/telecom-telephony-line-assist-orders.js index 18af7d759..e2b7f6c69 100644 --- a/client/app/telecom/telephony/line/assist/orders/telecom-telephony-line-assist-orders.js +++ b/client/app/telecom/telephony/line/assist/orders/telecom-telephony-line-assist-orders.js @@ -8,6 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'OrdersCtrl', }, }, - translations: ['common', 'telecom/telephony/service/assist/orders'], + translations: ['../../../service/assist/orders'], }); }); diff --git a/client/app/telecom/telephony/line/assist/rma/telecom-telephony-line-assist-rma.js b/client/app/telecom/telephony/line/assist/rma/telecom-telephony-line-assist-rma.js index 4e7d6a124..3d0a15b21 100644 --- a/client/app/telecom/telephony/line/assist/rma/telecom-telephony-line-assist-rma.js +++ b/client/app/telecom/telephony/line/assist/rma/telecom-telephony-line-assist-rma.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'RmaCtrl', }, }, - translations: [ - 'telecom/telephony/line/assist/rma', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/assist/support/telecom-telephony-line-assist-support.js b/client/app/telecom/telephony/line/assist/support/telecom-telephony-line-assist-support.js index e991c2487..dde97dd8c 100644 --- a/client/app/telecom/telephony/line/assist/support/telecom-telephony-line-assist-support.js +++ b/client/app/telecom/telephony/line/assist/support/telecom-telephony-line-assist-support.js @@ -8,6 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'SupportCtrl', }, }, - translations: ['common', 'telecom/telephony/service/assist/support'], + translations: ['../../../service/assist/support'], }); }); diff --git a/client/app/telecom/telephony/line/assist/telecom-telephony-line-assist.js b/client/app/telecom/telephony/line/assist/telecom-telephony-line-assist.js index 4ca453872..c2e4d0be8 100644 --- a/client/app/telecom/telephony/line/assist/telecom-telephony-line-assist.js +++ b/client/app/telecom/telephony/line/assist/telecom-telephony-line-assist.js @@ -8,9 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'LineAssistCtrl', }, }, - translations: [ - 'telecom/telephony/line/assist', - 'telecom/telephony/service/assist', - ], + translations: ['../../service/assist'], }); }); diff --git a/client/app/telecom/telephony/line/assist/troubleshooting/telecom-telephony-line-assist-troubleshooting.js b/client/app/telecom/telephony/line/assist/troubleshooting/telecom-telephony-line-assist-troubleshooting.js index 6cc1d6fdc..859f66a94 100644 --- a/client/app/telecom/telephony/line/assist/troubleshooting/telecom-telephony-line-assist-troubleshooting.js +++ b/client/app/telecom/telephony/line/assist/troubleshooting/telecom-telephony-line-assist-troubleshooting.js @@ -52,10 +52,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'ManualConfigCtrl', }, }, - translations: [ - 'telecom/telephony/line/assist/troubleshooting', - 'telecom/telephony/line/assist/troubleshooting/autoConfig', - 'telecom/telephony/line/assist/troubleshooting/manualConfig', - ], + translations: ['.', './autoConfig', './manualConfig'], }); }); diff --git a/client/app/telecom/telephony/line/calls/abbreviatedNumbers/telecom-telephony-line-calls-abbreviatedNumbers.js b/client/app/telecom/telephony/line/calls/abbreviatedNumbers/telecom-telephony-line-calls-abbreviatedNumbers.js index 96d606a3d..475a28d6f 100644 --- a/client/app/telecom/telephony/line/calls/abbreviatedNumbers/telecom-telephony-line-calls-abbreviatedNumbers.js +++ b/client/app/telecom/telephony/line/calls/abbreviatedNumbers/telecom-telephony-line-calls-abbreviatedNumbers.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'LineAbbreviatedNumbersCtrl', }, }, - translations: [ - 'telecom/telephony/line/calls/abbreviatedNumbers', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/calls/callWaiting/telecom-telephony-line-calls-callWaiting.js b/client/app/telecom/telephony/line/calls/callWaiting/telecom-telephony-line-calls-callWaiting.js index 4c6c0b96e..217852a72 100644 --- a/client/app/telecom/telephony/line/calls/callWaiting/telecom-telephony-line-calls-callWaiting.js +++ b/client/app/telecom/telephony/line/calls/callWaiting/telecom-telephony-line-calls-callWaiting.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'LineCallWaitingCtrl', }, }, - translations: [ - 'telecom/telephony/line/calls/callWaiting', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/calls/click2Call/add-user/telecom-telephony-line-calls-click2Call-add-user.js b/client/app/telecom/telephony/line/calls/click2Call/add-user/telecom-telephony-line-calls-click2Call-add-user.js index a3b54edd1..bc84718f5 100644 --- a/client/app/telecom/telephony/line/calls/click2Call/add-user/telecom-telephony-line-calls-click2Call-add-user.js +++ b/client/app/telecom/telephony/line/calls/click2Call/add-user/telecom-telephony-line-calls-click2Call-add-user.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'Click2CallAddUserCtrl', }, }, - translations: [ - 'telecom/telephony/line/calls/click2Call/add-user', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/calls/click2Call/change-password/telecom-telephony-line-calls-click2Call-change-password-user.js b/client/app/telecom/telephony/line/calls/click2Call/change-password/telecom-telephony-line-calls-click2Call-change-password-user.js index 6db057eb2..1bc47297c 100644 --- a/client/app/telecom/telephony/line/calls/click2Call/change-password/telecom-telephony-line-calls-click2Call-change-password-user.js +++ b/client/app/telecom/telephony/line/calls/click2Call/change-password/telecom-telephony-line-calls-click2Call-change-password-user.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'Click2CallChangePasswordCtrl', }, }, - translations: [ - 'telecom/telephony/line/calls/click2Call/change-password', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/calls/click2Call/telecom-telephony-line-calls-click2Call.js b/client/app/telecom/telephony/line/calls/click2Call/telecom-telephony-line-calls-click2Call.js index 16137a348..05327c5d2 100644 --- a/client/app/telecom/telephony/line/calls/click2Call/telecom-telephony-line-calls-click2Call.js +++ b/client/app/telecom/telephony/line/calls/click2Call/telecom-telephony-line-calls-click2Call.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'Click2CallCtrl', }, }, - translations: [ - 'telecom/telephony/line/calls/click2Call', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/calls/displayNumber/telecom-telephony-line-calls-displayNumber.js b/client/app/telecom/telephony/line/calls/displayNumber/telecom-telephony-line-calls-displayNumber.js index b77958e1b..821327f26 100644 --- a/client/app/telecom/telephony/line/calls/displayNumber/telecom-telephony-line-calls-displayNumber.js +++ b/client/app/telecom/telephony/line/calls/displayNumber/telecom-telephony-line-calls-displayNumber.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'LineDisplayNumberCtrl', }, }, - translations: [ - 'telecom/telephony/line/calls/displayNumber', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/calls/events/telecom-telephony-line-calls-events.js b/client/app/telecom/telephony/line/calls/events/telecom-telephony-line-calls-events.js index 62c0ae98f..4850a0421 100644 --- a/client/app/telecom/telephony/line/calls/events/telecom-telephony-line-calls-events.js +++ b/client/app/telecom/telephony/line/calls/events/telecom-telephony-line-calls-events.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'EventsCtrl', }, }, - translations: [ - 'telecom/telephony/line/calls/events', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/calls/externalNumber/telecom-telephony-line-calls-externalNumber.js b/client/app/telecom/telephony/line/calls/externalNumber/telecom-telephony-line-calls-externalNumber.js index 48d34e41b..e879bf6af 100644 --- a/client/app/telecom/telephony/line/calls/externalNumber/telecom-telephony-line-calls-externalNumber.js +++ b/client/app/telecom/telephony/line/calls/externalNumber/telecom-telephony-line-calls-externalNumber.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/line/calls/externalNumber', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/calls/filtering/telecom-telephony-line-calls-filtering.js b/client/app/telecom/telephony/line/calls/filtering/telecom-telephony-line-calls-filtering.js index 8fa622d9f..ee1a08ef3 100644 --- a/client/app/telecom/telephony/line/calls/filtering/telecom-telephony-line-calls-filtering.js +++ b/client/app/telecom/telephony/line/calls/filtering/telecom-telephony-line-calls-filtering.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'CallsFilteringCtrl', }, }, - translations: [ - 'telecom/telephony/line/calls/filtering', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/calls/forward/telecom-telephony-line-calls-forward.js b/client/app/telecom/telephony/line/calls/forward/telecom-telephony-line-calls-forward.js index 86242ed8e..d7b2c554e 100644 --- a/client/app/telecom/telephony/line/calls/forward/telecom-telephony-line-calls-forward.js +++ b/client/app/telecom/telephony/line/calls/forward/telecom-telephony-line-calls-forward.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'LineForwardCtrl', }, }, - translations: [ - 'telecom/telephony/line/calls/forward', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/calls/lockOutCall/telecom-telephony-line-calls-lockOutCall.js b/client/app/telecom/telephony/line/calls/lockOutCall/telecom-telephony-line-calls-lockOutCall.js index b6aba2878..f8a07bdbb 100644 --- a/client/app/telecom/telephony/line/calls/lockOutCall/telecom-telephony-line-calls-lockOutCall.js +++ b/client/app/telecom/telephony/line/calls/lockOutCall/telecom-telephony-line-calls-lockOutCall.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'LineLockOutCallCtrl', }, }, - translations: [ - 'telecom/telephony/line/calls/lockOutCall', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/calls/simultaneousLines/telecom-telephony-line-calls-simultaneousLines.js b/client/app/telecom/telephony/line/calls/simultaneousLines/telecom-telephony-line-calls-simultaneousLines.js index 18e00d630..8d7369373 100644 --- a/client/app/telecom/telephony/line/calls/simultaneousLines/telecom-telephony-line-calls-simultaneousLines.js +++ b/client/app/telecom/telephony/line/calls/simultaneousLines/telecom-telephony-line-calls-simultaneousLines.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'LineSimultaneousLinesCtrl', }, }, - translations: [ - 'telecom/telephony/line/calls/simultaneousLines', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/calls/simultaneousLines/trunk/telecom-telephony-line-trunk-calls.simultaneousLines.js b/client/app/telecom/telephony/line/calls/simultaneousLines/trunk/telecom-telephony-line-trunk-calls.simultaneousLines.js index 7da65fa6e..db59f0175 100644 --- a/client/app/telecom/telephony/line/calls/simultaneousLines/trunk/telecom-telephony-line-trunk-calls.simultaneousLines.js +++ b/client/app/telecom/telephony/line/calls/simultaneousLines/trunk/telecom-telephony-line-trunk-calls.simultaneousLines.js @@ -8,6 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: ['common', 'telecom/telephony/line/calls/simultaneousLines'], + translations: ['..'], }); }); diff --git a/client/app/telecom/telephony/line/calls/telecom-telephony-line-calls.js b/client/app/telecom/telephony/line/calls/telecom-telephony-line-calls.js index 4371a02ab..538afa0ae 100644 --- a/client/app/telecom/telephony/line/calls/telecom-telephony-line-calls.js +++ b/client/app/telecom/telephony/line/calls/telecom-telephony-line-calls.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'LineCallsCtrl', }, }, - translations: [ - 'telecom/telephony/line/calls', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/calls/timeCondition/telecom-telephony-line-calls-time-condition.js b/client/app/telecom/telephony/line/calls/timeCondition/telecom-telephony-line-calls-time-condition.js index e5dfb14c5..0f9bfaf07 100644 --- a/client/app/telecom/telephony/line/calls/timeCondition/telecom-telephony-line-calls-time-condition.js +++ b/client/app/telecom/telephony/line/calls/timeCondition/telecom-telephony-line-calls-time-condition.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/line/calls/timeCondition', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/consumption/incomingCalls/telecom-telephony-line-consumption-incomingCalls.js b/client/app/telecom/telephony/line/consumption/incomingCalls/telecom-telephony-line-consumption-incomingCalls.js index fcd390c29..6b2c64515 100644 --- a/client/app/telecom/telephony/line/consumption/incomingCalls/telecom-telephony-line-consumption-incomingCalls.js +++ b/client/app/telecom/telephony/line/consumption/incomingCalls/telecom-telephony-line-consumption-incomingCalls.js @@ -13,8 +13,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'IncomingCallsCtrl', }, }, - translations: [ - 'telecom/telephony/line/consumption/incomingCalls', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/consumption/incomingFax/telecom-telephony-line-consumption-incomingFax.js b/client/app/telecom/telephony/line/consumption/incomingFax/telecom-telephony-line-consumption-incomingFax.js index a17244a0e..75cf8fc3b 100644 --- a/client/app/telecom/telephony/line/consumption/incomingFax/telecom-telephony-line-consumption-incomingFax.js +++ b/client/app/telecom/telephony/line/consumption/incomingFax/telecom-telephony-line-consumption-incomingFax.js @@ -13,8 +13,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/line/consumption/incomingFax', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/consumption/outgoingCalls/telecom-telephony-line-consumption-outgoingCalls.js b/client/app/telecom/telephony/line/consumption/outgoingCalls/telecom-telephony-line-consumption-outgoingCalls.js index f9de1adcb..00360ce90 100644 --- a/client/app/telecom/telephony/line/consumption/outgoingCalls/telecom-telephony-line-consumption-outgoingCalls.js +++ b/client/app/telecom/telephony/line/consumption/outgoingCalls/telecom-telephony-line-consumption-outgoingCalls.js @@ -13,8 +13,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'OutgoingCallsCtrl', }, }, - translations: [ - 'telecom/telephony/line/consumption/outgoingCalls', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/consumption/outgoingFax/telecom-telephony-line-consumption-outgoingFax.js b/client/app/telecom/telephony/line/consumption/outgoingFax/telecom-telephony-line-consumption-outgoingFax.js index f6e76998a..54f7cef9a 100644 --- a/client/app/telecom/telephony/line/consumption/outgoingFax/telecom-telephony-line-consumption-outgoingFax.js +++ b/client/app/telecom/telephony/line/consumption/outgoingFax/telecom-telephony-line-consumption-outgoingFax.js @@ -13,8 +13,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/line/consumption/outgoingFax', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/consumption/telecom-telephony-line-consumption.js b/client/app/telecom/telephony/line/consumption/telecom-telephony-line-consumption.js index 3ecf6372f..11c9f8e0a 100644 --- a/client/app/telecom/telephony/line/consumption/telecom-telephony-line-consumption.js +++ b/client/app/telecom/telephony/line/consumption/telecom-telephony-line-consumption.js @@ -9,12 +9,12 @@ angular.module('managerApp').config(($stateProvider) => { }, }, translations: [ - 'telecom/telephony/line/consumption', - 'telecom/telephony/service/consumption', - 'telecom/telephony/service/consumption/incomingCalls', - 'telecom/telephony/service/consumption/outgoingCalls', - 'telecom/telephony/service/consumption/incomingFax', - 'telecom/telephony/service/consumption/outgoingFax', + '../consumption', + '../../service/consumption', + '../../service/consumption/incomingCalls', + '../../service/consumption/outgoingCalls', + '../../service/consumption/incomingFax', + '../../service/consumption/outgoingFax', ], }); }); diff --git a/client/app/telecom/telephony/line/contact/telecom-telephony-line-contact.js b/client/app/telecom/telephony/line/contact/telecom-telephony-line-contact.js index c484b80f7..0d4fd0621 100644 --- a/client/app/telecom/telephony/line/contact/telecom-telephony-line-contact.js +++ b/client/app/telecom/telephony/line/contact/telecom-telephony-line-contact.js @@ -8,6 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'ServiceContactCtrl', }, }, - translations: ['common', 'telecom/telephony/service/contact'], + translations: ['../../service/contact'], }); }); diff --git a/client/app/telecom/telephony/line/fax/campaigns/telecom-telephony-line-fax-campaigns.js b/client/app/telecom/telephony/line/fax/campaigns/telecom-telephony-line-fax-campaigns.js index fd482ddd5..ae9529fbc 100644 --- a/client/app/telecom/telephony/line/fax/campaigns/telecom-telephony-line-fax-campaigns.js +++ b/client/app/telecom/telephony/line/fax/campaigns/telecom-telephony-line-fax-campaigns.js @@ -12,6 +12,5 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'CampaignsCtrl', }, }, - translations: ['common'], }); }); diff --git a/client/app/telecom/telephony/line/fax/convertToVoicefax/telecom-telephony-line-fax-convertToVoicefax.js b/client/app/telecom/telephony/line/fax/convertToVoicefax/telecom-telephony-line-fax-convertToVoicefax.js index b3d5523fb..6e7eb51d5 100644 --- a/client/app/telecom/telephony/line/fax/convertToVoicefax/telecom-telephony-line-fax-convertToVoicefax.js +++ b/client/app/telecom/telephony/line/fax/convertToVoicefax/telecom-telephony-line-fax-convertToVoicefax.js @@ -12,6 +12,5 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: ['common'], }); }); diff --git a/client/app/telecom/telephony/line/fax/customDomains/telecom-telephony-line-fax-customDomains.js b/client/app/telecom/telephony/line/fax/customDomains/telecom-telephony-line-fax-customDomains.js index deda7ef71..5867f013f 100644 --- a/client/app/telecom/telephony/line/fax/customDomains/telecom-telephony-line-fax-customDomains.js +++ b/client/app/telecom/telephony/line/fax/customDomains/telecom-telephony-line-fax-customDomains.js @@ -12,8 +12,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/service/fax/customDomains', - ], + translations: ['../../../service/fax/customDomains'], }); }); diff --git a/client/app/telecom/telephony/line/fax/filtering/telecom-telephony-line-fax-filtering.js b/client/app/telecom/telephony/line/fax/filtering/telecom-telephony-line-fax-filtering.js index 5872706a4..b35c9a7b9 100644 --- a/client/app/telecom/telephony/line/fax/filtering/telecom-telephony-line-fax-filtering.js +++ b/client/app/telecom/telephony/line/fax/filtering/telecom-telephony-line-fax-filtering.js @@ -12,6 +12,5 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: ['common'], }); }); diff --git a/client/app/telecom/telephony/line/fax/password/telecom-telephony-line-fax-password.js b/client/app/telecom/telephony/line/fax/password/telecom-telephony-line-fax-password.js index 01179b4be..10a7fc4dc 100644 --- a/client/app/telecom/telephony/line/fax/password/telecom-telephony-line-fax-password.js +++ b/client/app/telecom/telephony/line/fax/password/telecom-telephony-line-fax-password.js @@ -12,8 +12,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'PasswordCtrl', }, }, - translations: [ - 'telecom/telephony/service/fax/password', - ], + translations: ['../../../service/fax/password'], }); }); diff --git a/client/app/telecom/telephony/line/fax/settings/telecom-telephony-line-fax-settings.js b/client/app/telecom/telephony/line/fax/settings/telecom-telephony-line-fax-settings.js index c4b3e7d34..67d54d347 100644 --- a/client/app/telecom/telephony/line/fax/settings/telecom-telephony-line-fax-settings.js +++ b/client/app/telecom/telephony/line/fax/settings/telecom-telephony-line-fax-settings.js @@ -12,6 +12,5 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'SettingsCtrl', }, }, - translations: ['common'], }); }); diff --git a/client/app/telecom/telephony/line/fax/telecom-telephony-line-fax.js b/client/app/telecom/telephony/line/fax/telecom-telephony-line-fax.js index 1aa388996..747e71327 100644 --- a/client/app/telecom/telephony/line/fax/telecom-telephony-line-fax.js +++ b/client/app/telecom/telephony/line/fax/telecom-telephony-line-fax.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'LineFaxCtrl', }, }, - translations: [ - 'telecom/telephony/line/fax', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/management/convert/telecom-telephony-line-management-convert.js b/client/app/telecom/telephony/line/management/convert/telecom-telephony-line-management-convert.js index d4f231522..6d3359759 100644 --- a/client/app/telecom/telephony/line/management/convert/telecom-telephony-line-management-convert.js +++ b/client/app/telecom/telephony/line/management/convert/telecom-telephony-line-management-convert.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'LineConvertCtrl', }, }, - translations: [ - 'telecom/telephony/line/management/convert', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/management/detailsOffer/telecom-telephony-line-management-detailsOffer.js b/client/app/telecom/telephony/line/management/detailsOffer/telecom-telephony-line-management-detailsOffer.js index b4c9beb55..f0fc07e75 100644 --- a/client/app/telecom/telephony/line/management/detailsOffer/telecom-telephony-line-management-detailsOffer.js +++ b/client/app/telecom/telephony/line/management/detailsOffer/telecom-telephony-line-management-detailsOffer.js @@ -11,8 +11,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/line/management/detailsOffer', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/management/domain/telecom-telephony-line-management-domain.js b/client/app/telecom/telephony/line/management/domain/telecom-telephony-line-management-domain.js index cfda1ec74..7fd13084f 100644 --- a/client/app/telecom/telephony/line/management/domain/telecom-telephony-line-management-domain.js +++ b/client/app/telecom/telephony/line/management/domain/telecom-telephony-line-management-domain.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'DomainCtrl', }, }, - translations: [ - 'telecom/telephony/line/management/domain', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/management/language/telecom-telephony-line-management-language.js b/client/app/telecom/telephony/line/management/language/telecom-telephony-line-management-language.js index 5f015feeb..c7d3f3e54 100644 --- a/client/app/telecom/telephony/line/management/language/telecom-telephony-line-management-language.js +++ b/client/app/telecom/telephony/line/management/language/telecom-telephony-line-management-language.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'LineLanguage', }, }, - translations: [ - 'telecom/telephony/line/management/language', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/management/mgcpIpRestriction/telecom-telephony-line-mgcpIpRestriction.js b/client/app/telecom/telephony/line/management/mgcpIpRestriction/telecom-telephony-line-mgcpIpRestriction.js index d40e514dd..d9fdb8a3d 100644 --- a/client/app/telecom/telephony/line/management/mgcpIpRestriction/telecom-telephony-line-mgcpIpRestriction.js +++ b/client/app/telecom/telephony/line/management/mgcpIpRestriction/telecom-telephony-line-mgcpIpRestriction.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'MgcpIpRestrictionCtrl', }, }, - translations: [ - 'telecom/telephony/line/management/mgcpIpRestriction', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/management/offerChange/telecom-telephony-line-management-offer-change.js b/client/app/telecom/telephony/line/management/offerChange/telecom-telephony-line-management-offer-change.js index 306ff4a58..f072b7da9 100644 --- a/client/app/telecom/telephony/line/management/offerChange/telecom-telephony-line-management-offer-change.js +++ b/client/app/telecom/telephony/line/management/offerChange/telecom-telephony-line-management-offer-change.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'OfferChangeCtrl', }, }, - translations: [ - 'telecom/telephony/line/management/offerChange', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/management/password/telecom-telephony-line-management-password.js b/client/app/telecom/telephony/line/management/password/telecom-telephony-line-management-password.js index 93827b3ad..f92028e49 100644 --- a/client/app/telecom/telephony/line/management/password/telecom-telephony-line-management-password.js +++ b/client/app/telecom/telephony/line/management/password/telecom-telephony-line-management-password.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'PasswordCtrl', }, }, - translations: [ - 'telecom/telephony/line/management/password', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/management/restrictions/telecom-telephony-line-management-restrictions.js b/client/app/telecom/telephony/line/management/restrictions/telecom-telephony-line-management-restrictions.js index 271d44a32..5b98c037b 100644 --- a/client/app/telecom/telephony/line/management/restrictions/telecom-telephony-line-management-restrictions.js +++ b/client/app/telecom/telephony/line/management/restrictions/telecom-telephony-line-management-restrictions.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'LineRestrictionsCtrl', }, }, - translations: [ - 'telecom/telephony/line/management/restrictions', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/management/terminate/cancel/telecom-telephony-line-management-terminate-cancel.js b/client/app/telecom/telephony/line/management/terminate/cancel/telecom-telephony-line-management-terminate-cancel.js index c0d8de08a..a91747dd5 100644 --- a/client/app/telecom/telephony/line/management/terminate/cancel/telecom-telephony-line-management-terminate-cancel.js +++ b/client/app/telecom/telephony/line/management/terminate/cancel/telecom-telephony-line-management-terminate-cancel.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'TerminateCancelCtrl', }, }, - translations: [ - 'telecom/telephony/line/management/terminate/cancel', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/management/terminate/telecom-telephony-line-management-terminate.js b/client/app/telecom/telephony/line/management/terminate/telecom-telephony-line-management-terminate.js index 61e02226f..92f2f84a3 100644 --- a/client/app/telecom/telephony/line/management/terminate/telecom-telephony-line-management-terminate.js +++ b/client/app/telecom/telephony/line/management/terminate/telecom-telephony-line-management-terminate.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'TerminateCtrl', }, }, - translations: [ - 'telecom/telephony/line/management/terminate', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/phone/accessories/telecom-telephony-line-phone-accessories.js b/client/app/telecom/telephony/line/phone/accessories/telecom-telephony-line-phone-accessories.js index a35fc53f4..a5ee94b32 100644 --- a/client/app/telecom/telephony/line/phone/accessories/telecom-telephony-line-phone-accessories.js +++ b/client/app/telecom/telephony/line/phone/accessories/telecom-telephony-line-phone-accessories.js @@ -32,8 +32,6 @@ angular.module('managerApp').config(($stateProvider) => { noTranslations: true, }, }, - translations: [ - 'telecom/telephony/line/phone/accessories', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/phone/codec/telecom-telephony-line-phone-codec.js b/client/app/telecom/telephony/line/phone/codec/telecom-telephony-line-phone-codec.js index 91a27a7f4..d0fdd6b31 100644 --- a/client/app/telecom/telephony/line/phone/codec/telecom-telephony-line-phone-codec.js +++ b/client/app/telecom/telephony/line/phone/codec/telecom-telephony-line-phone-codec.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'CodecCtrl', }, }, - translations: [ - 'telecom/telephony/line/phone/codec', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/phone/configuration/telecom-telephony-line-phone-configuration.js b/client/app/telecom/telephony/line/phone/configuration/telecom-telephony-line-phone-configuration.js index 864688f7f..64db15f03 100644 --- a/client/app/telecom/telephony/line/phone/configuration/telecom-telephony-line-phone-configuration.js +++ b/client/app/telecom/telephony/line/phone/configuration/telecom-telephony-line-phone-configuration.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'PhoneConfigCtrl', }, }, - translations: [ - 'telecom/telephony/line/phone/configuration', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/phone/details/telecom-telephony-line-phone-details.js b/client/app/telecom/telephony/line/phone/details/telecom-telephony-line-phone-details.js index e8df4c540..1e5902363 100644 --- a/client/app/telecom/telephony/line/phone/details/telecom-telephony-line-phone-details.js +++ b/client/app/telecom/telephony/line/phone/details/telecom-telephony-line-phone-details.js @@ -11,8 +11,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: '$ctrl', }, }, - translations: [ - 'telecom/telephony/line/phone/details', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/phone/order/telecom-telephony-line-phone-order.js b/client/app/telecom/telephony/line/phone/order/telecom-telephony-line-phone-order.js index c19b998af..31f953cd4 100644 --- a/client/app/telecom/telephony/line/phone/order/telecom-telephony-line-phone-order.js +++ b/client/app/telecom/telephony/line/phone/order/telecom-telephony-line-phone-order.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'PhoneOrderCtrl', }, }, - translations: [ - 'telecom/telephony/line/phone/order', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/phone/phonebook/telecom-telephony-line-phone-phonebook.js b/client/app/telecom/telephony/line/phone/phonebook/telecom-telephony-line-phone-phonebook.js index 1268fb66d..ffdedccc3 100644 --- a/client/app/telecom/telephony/line/phone/phonebook/telecom-telephony-line-phone-phonebook.js +++ b/client/app/telecom/telephony/line/phone/phonebook/telecom-telephony-line-phone-phonebook.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'PhonebookCtrl', }, }, - translations: [ - 'telecom/telephony/line/phone/phonebook', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/phone/programmableKeys/telecom-telephony-line-phone-programmableKeys.js b/client/app/telecom/telephony/line/phone/programmableKeys/telecom-telephony-line-phone-programmableKeys.js index 0ecf021c3..9c29d1b0e 100644 --- a/client/app/telecom/telephony/line/phone/programmableKeys/telecom-telephony-line-phone-programmableKeys.js +++ b/client/app/telecom/telephony/line/phone/programmableKeys/telecom-telephony-line-phone-programmableKeys.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'ProgrammableKeysCtrl', }, }, - translations: [ - 'telecom/telephony/line/phone/programmableKeys', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/phone/reboot/telecom-telephony-line-phone-reboot.js b/client/app/telecom/telephony/line/phone/reboot/telecom-telephony-line-phone-reboot.js index 43db7a82d..0d556e2a9 100644 --- a/client/app/telecom/telephony/line/phone/reboot/telecom-telephony-line-phone-reboot.js +++ b/client/app/telecom/telephony/line/phone/reboot/telecom-telephony-line-phone-reboot.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'PhoneRebootCtrl', }, }, - translations: [ - 'telecom/telephony/line/phone/reboot', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/phone/telecom-telephony-line-phone.js b/client/app/telecom/telephony/line/phone/telecom-telephony-line-phone.js index 24ea6bff0..1530f22fb 100644 --- a/client/app/telecom/telephony/line/phone/telecom-telephony-line-phone.js +++ b/client/app/telecom/telephony/line/phone/telecom-telephony-line-phone.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'LinePhoneCtrl', }, }, - translations: [ - 'telecom/telephony/line/phone', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/line/telecom-telephony-line.js b/client/app/telecom/telephony/line/telecom-telephony-line.js index b970f6fe2..d3977d578 100644 --- a/client/app/telecom/telephony/line/telecom-telephony-line.js +++ b/client/app/telecom/telephony/line/telecom-telephony-line.js @@ -17,9 +17,9 @@ angular.module('managerApp').config(($stateProvider) => { }, }, translations: [ - 'telecom/telephony/line', - 'telecom/telephony/line/details', - 'telecom/telephony/line/management', + '.', + './details', + './management', ], resolve: { currentLine($stateParams, OvhApiTelephony) { diff --git a/client/app/telecom/telephony/line/tones/telecom-telephony-line-tones.js b/client/app/telecom/telephony/line/tones/telecom-telephony-line-tones.js index 91ba0eb1f..07992870a 100644 --- a/client/app/telecom/telephony/line/tones/telecom-telephony-line-tones.js +++ b/client/app/telecom/telephony/line/tones/telecom-telephony-line-tones.js @@ -8,8 +8,6 @@ angular.module('managerApp').config(($stateProvider) => { controllerAs: 'LineTonesCtrl', }, }, - translations: [ - 'telecom/telephony/line/tones', - ], + translations: ['.'], }); }); diff --git a/client/app/telecom/telephony/telecom-telephony.js b/client/app/telecom/telephony/telecom-telephony.js index c03742fcf..709a2fe0b 100644 --- a/client/app/telecom/telephony/telecom-telephony.js +++ b/client/app/telecom/telephony/telecom-telephony.js @@ -33,6 +33,6 @@ angular.module('managerApp').config(($stateProvider) => { }).$promise.then(data => $translate.instant('telephony_page_title', { name: data.description || $stateParams.billingAccount }, null, null, 'escape')).catch(() => $translate('telephony_page_title', { name: $stateParams.billingAccount })); }, }, - translations: ['common', 'telecom/telephony', 'telecom/telephony/billingAccount', 'telecom/telephony/billingAccount/dashboard'], + translations: ['./billingAccount', './billingAccount/dashboard'], }); }); diff --git a/package.json b/package.json index 63589ea9e..dcc9ef648 100644 --- a/package.json +++ b/package.json @@ -153,7 +153,7 @@ "@babel/preset-env": "^7.0.0", "@commitlint/cli": "^7.1.2", "@commitlint/config-angular": "^7.1.2", - "@ovh-ux/manager-webpack-config": "^1.0.0", + "@ovh-ux/manager-webpack-config": "^2.0.0", "angular-template-url-loader": "^1.0.2", "babel-eslint": "^8.2.6", "babel-loader": "^8.0.0-beta", diff --git a/yarn.lock b/yarn.lock index 42df2f8d6..23854e0af 100644 --- a/yarn.lock +++ b/yarn.lock @@ -910,9 +910,9 @@ version "1.1.2" resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-1.1.2.tgz#54c5a964462be3d4d78af631363c18d6fa91ac26" -"@ovh-ux/manager-webpack-config@^1.0.0": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@ovh-ux/manager-webpack-config/-/manager-webpack-config-1.1.2.tgz#1824824cf913bd2b52b39c043d643f9121655a87" +"@ovh-ux/manager-webpack-config@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@ovh-ux/manager-webpack-config/-/manager-webpack-config-2.0.0.tgz#7b47a76acf423c4b3bc29f278c5f59d6a31fd67d" dependencies: "@babel/core" "^7.0.0" "@babel/generator" "^7.0.0"