From c9471aafffd0e13e045441c270e34ba9bb1813ec Mon Sep 17 00:00:00 2001 From: Ravindra Adireddy Date: Mon, 1 Jun 2020 12:01:01 +0530 Subject: [PATCH 1/2] feat(pci): quota management show modal when user reaches public cloud project limit, show quota info message on new project page Signed-off-by: Ravindra Adireddy --- .../flavors-list/flavors-list.controller.js | 4 +- .../project/flavors-list/flavors-list.html | 25 ++++++++--- .../translations/Messages_fr_FR.json | 4 +- packages/manager/modules/pci/src/index.scss | 5 +++ .../new/error-modal/error-modal.component.js | 14 ++++++ .../projects/new/error-modal/error-modal.html | 16 +++++++ .../new/error-modal/error-modal.module.js | 23 ++++++++++ .../new/error-modal/error-modal.routing.js | 43 +++++++++++++++++++ .../pci/src/projects/new/error-modal/index.js | 22 ++++++++++ .../modules/pci/src/projects/new/routing.js | 14 +++--- .../new/translations/Messages_fr_FR.json | 5 ++- .../pci/src/projects/project/project.html | 7 +++ .../src/projects/project/project.module.js | 2 + .../project/translations/Messages_fr_FR.json | 5 ++- 14 files changed, 173 insertions(+), 16 deletions(-) create mode 100644 packages/manager/modules/pci/src/projects/new/error-modal/error-modal.component.js create mode 100644 packages/manager/modules/pci/src/projects/new/error-modal/error-modal.html create mode 100644 packages/manager/modules/pci/src/projects/new/error-modal/error-modal.module.js create mode 100644 packages/manager/modules/pci/src/projects/new/error-modal/error-modal.routing.js create mode 100644 packages/manager/modules/pci/src/projects/new/error-modal/index.js diff --git a/packages/manager/modules/pci/src/components/project/flavors-list/flavors-list.controller.js b/packages/manager/modules/pci/src/components/project/flavors-list/flavors-list.controller.js index e95c9e2edede..49d7e3eda411 100644 --- a/packages/manager/modules/pci/src/components/project/flavors-list/flavors-list.controller.js +++ b/packages/manager/modules/pci/src/components/project/flavors-list/flavors-list.controller.js @@ -7,12 +7,14 @@ import isEmpty from 'lodash/isEmpty'; export default class FlavorsListController { /* @ngInject */ - constructor($q, PciProjectFlavors) { + constructor($q, $state, PciProjectFlavors) { this.$q = $q; + this.$state = $state; this.PciProjectFlavors = PciProjectFlavors; } $onInit() { + this.quotaUrl = this.$state.href('pci.projects.project.quota'); this.isLoading = true; this.flavorCount = this.flavorCount || 1; return this.getFlavors().finally(() => { diff --git a/packages/manager/modules/pci/src/components/project/flavors-list/flavors-list.html b/packages/manager/modules/pci/src/components/project/flavors-list/flavors-list.html index 8d34a00ece3d..91b2701c9ee1 100644 --- a/packages/manager/modules/pci/src/components/project/flavors-list/flavors-list.html +++ b/packages/manager/modules/pci/src/components/project/flavors-list/flavors-list.html @@ -104,12 +104,25 @@ - - +
+ + + + + + +
+ +

+
+ diff --git a/packages/manager/modules/pci/src/projects/new/error-modal/error-modal.module.js b/packages/manager/modules/pci/src/projects/new/error-modal/error-modal.module.js new file mode 100644 index 000000000000..0db1c461e105 --- /dev/null +++ b/packages/manager/modules/pci/src/projects/new/error-modal/error-modal.module.js @@ -0,0 +1,23 @@ +import angular from 'angular'; +import '@uirouter/angularjs'; +import '@ovh-ux/ng-translate-async-loader'; +import '@ovh-ux/ui-kit'; +import 'angular-translate'; + +import component from './error-modal.component'; +import routing from './error-modal.routing'; + +const moduleName = 'ovhManagerPciProjectErrorModal'; + +angular + .module(moduleName, [ + 'oui', + 'ui.router', + 'ngTranslateAsyncLoader', + 'pascalprecht.translate', + ]) + .config(routing) + .component('pciProjectErrorModal', component) + .run(/* @ngTranslationsInject:json ./translations */); + +export default moduleName; diff --git a/packages/manager/modules/pci/src/projects/new/error-modal/error-modal.routing.js b/packages/manager/modules/pci/src/projects/new/error-modal/error-modal.routing.js new file mode 100644 index 000000000000..03e005d8b4ca --- /dev/null +++ b/packages/manager/modules/pci/src/projects/new/error-modal/error-modal.routing.js @@ -0,0 +1,43 @@ +import set from 'lodash/set'; + +export default /* @ngInject */ ($stateProvider) => { + $stateProvider.state('pci.projects.project.error', { + url: '/error', + views: { + modal: { + component: 'pciProjectErrorModal', + }, + }, + layout: 'modal', + params: { + message: null, + projectId: null, + submitLabel: null, + submitLink: null, + }, + resolve: { + goBack: /* @ngInject */ ($state, projectId) => () => + $state.go('pci.projects.project', { + projectId, + }), + + breadcrumb: () => null, + + submitAction: /* @ngInject */ ($window, submitLink) => () => { + set($window, 'location.href', submitLink); + }, + + message: /* @ngInject */ ($transition$) => + $transition$.params().message || null, + + projectId: /* @ngInject */ ($transition$) => + $transition$.params().projectId || null, + + submitLabel: /* @ngInject */ ($transition$) => + $transition$.params().submitLabel || null, + + submitLink: /* @ngInject */ ($transition$) => + $transition$.params().submitLink || null, + }, + }); +}; diff --git a/packages/manager/modules/pci/src/projects/new/error-modal/index.js b/packages/manager/modules/pci/src/projects/new/error-modal/index.js new file mode 100644 index 000000000000..66c5eec66ca6 --- /dev/null +++ b/packages/manager/modules/pci/src/projects/new/error-modal/index.js @@ -0,0 +1,22 @@ +import angular from 'angular'; +import '@uirouter/angularjs'; +import 'oclazyload'; + +const moduleName = 'ovhManagerPciProjectErrorModalLazyloading'; + +angular.module(moduleName, ['ui.router', 'oc.lazyLoad']).config( + /* @ngInject */ ($stateProvider) => { + $stateProvider.state('pci.projects.project.error.**', { + url: '/error', + lazyLoad: ($transition$) => { + const $ocLazyLoad = $transition$.injector().get('$ocLazyLoad'); + + return import('./error-modal.module').then((mod) => + $ocLazyLoad.inject(mod.default || mod), + ); + }, + }); + }, +); + +export default moduleName; diff --git a/packages/manager/modules/pci/src/projects/new/routing.js b/packages/manager/modules/pci/src/projects/new/routing.js index 6c07246e466f..8a46889b271e 100644 --- a/packages/manager/modules/pci/src/projects/new/routing.js +++ b/packages/manager/modules/pci/src/projects/new/routing.js @@ -25,6 +25,9 @@ export default /* @ngInject */ ($stateProvider) => { const windowPromise = transition.injector().getAsync('$window'); const cartPromise = transition.injector().getAsync('cart'); const eligibilityPromise = transition.injector().getAsync('eligibility'); + const newSupportTicketLink = transition + .injector() + .get('newSupportTicketLink'); return Promise.all([ translatePromise, windowPromise, @@ -38,20 +41,18 @@ export default /* @ngInject */ ($stateProvider) => { }; if (eligibility.isAskIncreaseProjectsQuotaRequired()) { - redirectState = 'pci.error'; + redirectState = 'pci.projects.project.error'; redirectParams = { message: $translate.instant( 'pci_project_new_error_ask_increase_projects_quota', ), code: ELIGIBILITY_ACTION_ENUM.ASK_INCREASE_PROJECTS_QUOTA, image: ELIGIBILITY_ERROR_IMAGES_SRC.ASK_INCREASE_PROJECTS_QUOTA, + projectId: get(transition.params('from'), 'projectId'), submitLabel: $translate.instant( 'pci_project_new_error_contact_support', ), - submitLink: get( - PCI_REDIRECT_URLS, - `${EnvironmentService.Environment.region}.support`, - ), + submitLink: newSupportTicketLink, }; } else if (eligibility.isVerifyPaypalRequired()) { redirectState = 'pci.error'; @@ -88,6 +89,9 @@ export default /* @ngInject */ ($stateProvider) => { resolve: { breadcrumb: () => null, + newSupportTicketLink: /* @ngInject */ (RedirectionService) => + RedirectionService.getURL('createTicket'), + cart: /* @ngInject */ ($transition$, me, pciProjectNew) => !get($transition$.params(), 'cartId') ? // just create cart - location will be reloaded to fetch the whole cart diff --git a/packages/manager/modules/pci/src/projects/new/translations/Messages_fr_FR.json b/packages/manager/modules/pci/src/projects/new/translations/Messages_fr_FR.json index 159e3dd1c869..1f4d46a8908b 100644 --- a/packages/manager/modules/pci/src/projects/new/translations/Messages_fr_FR.json +++ b/packages/manager/modules/pci/src/projects/new/translations/Messages_fr_FR.json @@ -1,5 +1,6 @@ { "pci_project_new_error_contact_support": "Contacter le support", - "pci_project_new_error_ask_increase_projects_quota": "Vous ne pouvez pas créer de projet Public Cloud supplémentaire, car vous avez atteint le quota maximum de projets. Pour débloquer ce quota, nous vous invitons à contacter notre support.", - "pci_project_new_error_verify_paypal": "Vous ne pouvez pas créer de projet Public Cloud avec votre compte PayPal, car celui-ci n'est pas vérifié. Nous vous invitons à effectuer les démarches nécessaires auprès de PayPal pour vérifier votre compte, puis à réessayer. Vous pouvez aussi modifier votre moyen de paiement par défaut." + "pci_project_new_error_ask_increase_projects_quota": "Vous ne pouvez plus créer de projet, veuillez contacter le support pour augmenter votre quota et avoir la possibilité de créer un nouveau projet.", + "pci_project_new_error_verify_paypal": "Vous ne pouvez pas créer de projet Public Cloud avec votre compte PayPal, car celui-ci n'est pas vérifié. Nous vous invitons à effectuer les démarches nécessaires auprès de PayPal pour vérifier votre compte, puis à réessayer. Vous pouvez aussi modifier votre moyen de paiement par défaut.", + "pci_project_new_error_cancel": "Annuler" } diff --git a/packages/manager/modules/pci/src/projects/project/project.html b/packages/manager/modules/pci/src/projects/project/project.html index 55ff1f95b3af..14279bbcf2fa 100644 --- a/packages/manager/modules/pci/src/projects/project/project.html +++ b/packages/manager/modules/pci/src/projects/project/project.html @@ -38,6 +38,13 @@
+ +

+
Keystone v3.", + "pci_projects_project_keystone_upgrade_more": "En savoir plus", + "pci_projects_project_quota_warning_message": "Par mesure de sécurité, votre projet est soumis à un quota. Si vous voulez augmenter ce quota, rendez-vous sur la page Quota and localization." } From 73134932b3696042f6b923dc95d355aa1984b9a7 Mon Sep 17 00:00:00 2001 From: CDS Translator Agent Date: Wed, 9 Sep 2020 05:11:26 +0000 Subject: [PATCH 2/2] fix(i18n): add missing translations [CDS 564] Signed-off-by: Ganesh Kumar --- .../project/flavors-list/translations/Messages_de_DE.json | 5 ++++- .../project/flavors-list/translations/Messages_en_GB.json | 5 ++++- .../project/flavors-list/translations/Messages_es_ES.json | 5 ++++- .../project/flavors-list/translations/Messages_fi_FI.json | 5 ++++- .../project/flavors-list/translations/Messages_fr_CA.json | 4 +++- .../project/flavors-list/translations/Messages_it_IT.json | 5 ++++- .../project/flavors-list/translations/Messages_lt_LT.json | 5 ++++- .../project/flavors-list/translations/Messages_pl_PL.json | 5 ++++- .../project/flavors-list/translations/Messages_pt_PT.json | 5 ++++- .../pci/src/projects/new/translations/Messages_de_DE.json | 5 +++-- .../pci/src/projects/new/translations/Messages_en_GB.json | 5 +++-- .../pci/src/projects/new/translations/Messages_es_ES.json | 5 +++-- .../pci/src/projects/new/translations/Messages_fi_FI.json | 5 +++-- .../pci/src/projects/new/translations/Messages_fr_CA.json | 5 +++-- .../pci/src/projects/new/translations/Messages_it_IT.json | 5 +++-- .../pci/src/projects/new/translations/Messages_lt_LT.json | 5 +++-- .../pci/src/projects/new/translations/Messages_pl_PL.json | 5 +++-- .../pci/src/projects/new/translations/Messages_pt_PT.json | 5 +++-- .../src/projects/project/translations/Messages_de_DE.json | 5 ++++- .../src/projects/project/translations/Messages_en_GB.json | 5 ++++- .../src/projects/project/translations/Messages_es_ES.json | 5 ++++- .../src/projects/project/translations/Messages_fi_FI.json | 5 ++++- .../src/projects/project/translations/Messages_fr_CA.json | 8 +++++++- .../src/projects/project/translations/Messages_it_IT.json | 5 ++++- .../src/projects/project/translations/Messages_lt_LT.json | 5 ++++- .../src/projects/project/translations/Messages_pl_PL.json | 5 ++++- .../src/projects/project/translations/Messages_pt_PT.json | 5 ++++- 27 files changed, 101 insertions(+), 36 deletions(-) diff --git a/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_de_DE.json b/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_de_DE.json index be6b6e51dbc5..7eb101ee14c3 100644 --- a/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_de_DE.json +++ b/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_de_DE.json @@ -15,5 +15,8 @@ "pci_project_flavors_spec_nvme_multiple": "{{count}} x {{capacity}} NVMe", "pci_project_flavors_price_hourly": "{{price}} / Stunde (zzgl. MwSt)", "pci_project_flavors_price_monthly": "Ab {{price}} / Monat (zzgl. MwSt.)", - "pci_project_flavors_quota": "Mein Quota erhöhen" + "pci_project_flavors_quota": "Mein Quota erhöhen", + "pci_project_flavors_spec_model": "Modell:", + "pci_project_flavors_quota_info": "Das Quota Ihres Projekts erlaubt es nicht, eine Maschine dieser Art in dieser Region hinzuzufügen.", + "pci_project_flavors_quota_manage": "Mein Quota verwalten." } diff --git a/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_en_GB.json b/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_en_GB.json index ff96d4b5ce15..0c6bd3f599ef 100644 --- a/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_en_GB.json +++ b/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_en_GB.json @@ -15,5 +15,8 @@ "pci_project_flavors_spec_nvme_multiple": "{{count}} x {{capacity}} NVMe", "pci_project_flavors_price_hourly": "{{price}} ex. VAT/hour", "pci_project_flavors_price_monthly": "From {{price}} ex. VAT/month", - "pci_project_flavors_quota": "Increase your quota" + "pci_project_flavors_quota": "Increase your quota", + "pci_project_flavors_spec_model": "Model", + "pci_project_flavors_quota_info": "Your project quota will not allow you to add this machine type in this region.", + "pci_project_flavors_quota_manage": "Manage my quota" } diff --git a/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_es_ES.json b/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_es_ES.json index 1471fcfd4d03..64b3e6f9f7d8 100644 --- a/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_es_ES.json +++ b/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_es_ES.json @@ -15,5 +15,8 @@ "pci_project_flavors_spec_nvme_multiple": "{{count}} x {{capacity}} NVMe", "pci_project_flavors_price_hourly": "{{price}}/hora + IVA", "pci_project_flavors_price_monthly": "Desde {{price}}/mes + IVA", - "pci_project_flavors_quota": "Aumentar los límites de mi cuota" + "pci_project_flavors_quota": "Aumentar los límites de mi cuota", + "pci_project_flavors_spec_model": "Modelo:", + "pci_project_flavors_quota_info": "El límite de su proyecto no permite añadir este tipo de máquina en esta región.", + "pci_project_flavors_quota_manage": "Gestionar mis límites" } diff --git a/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_fi_FI.json b/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_fi_FI.json index ff96d4b5ce15..0c6bd3f599ef 100644 --- a/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_fi_FI.json +++ b/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_fi_FI.json @@ -15,5 +15,8 @@ "pci_project_flavors_spec_nvme_multiple": "{{count}} x {{capacity}} NVMe", "pci_project_flavors_price_hourly": "{{price}} ex. VAT/hour", "pci_project_flavors_price_monthly": "From {{price}} ex. VAT/month", - "pci_project_flavors_quota": "Increase your quota" + "pci_project_flavors_quota": "Increase your quota", + "pci_project_flavors_spec_model": "Model", + "pci_project_flavors_quota_info": "Your project quota will not allow you to add this machine type in this region.", + "pci_project_flavors_quota_manage": "Manage my quota" } diff --git a/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_fr_CA.json b/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_fr_CA.json index 7de3d91e49e6..e60bedc48426 100644 --- a/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_fr_CA.json +++ b/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_fr_CA.json @@ -18,5 +18,7 @@ "pci_project_flavors_price_hourly": "{{price}} HT/heure", "pci_project_flavors_price_monthly": "À partir de {{price}} HT/mois", - "pci_project_flavors_quota": "Augmenter mon quota" + "pci_project_flavors_quota": "Augmenter mon quota", + "pci_project_flavors_quota_info": "Le quota de votre projet ne vous permet pas d’ajouter ce type de machine dans cette région.", + "pci_project_flavors_quota_manage": "Gérer mon quota" } diff --git a/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_it_IT.json b/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_it_IT.json index 9d9d2e8c3201..b40fbe781f98 100644 --- a/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_it_IT.json +++ b/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_it_IT.json @@ -15,5 +15,8 @@ "pci_project_flavors_spec_nvme_multiple": "{{count}} x {{capacity}} NVMe", "pci_project_flavors_price_hourly": "{{price}} + IVA/ora", "pci_project_flavors_price_monthly": "A partire da {{price}} +IVA/mese", - "pci_project_flavors_quota": "Aumenta la tua quota" + "pci_project_flavors_quota": "Aumenta la tua quota", + "pci_project_flavors_spec_model": "Modello:", + "pci_project_flavors_quota_info": "La quota del tuo progetto non consente di aggiungere macchine di questo tipo in questa Region. ", + "pci_project_flavors_quota_manage": "Gestisci la quota" } diff --git a/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_lt_LT.json b/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_lt_LT.json index ff96d4b5ce15..0c6bd3f599ef 100644 --- a/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_lt_LT.json +++ b/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_lt_LT.json @@ -15,5 +15,8 @@ "pci_project_flavors_spec_nvme_multiple": "{{count}} x {{capacity}} NVMe", "pci_project_flavors_price_hourly": "{{price}} ex. VAT/hour", "pci_project_flavors_price_monthly": "From {{price}} ex. VAT/month", - "pci_project_flavors_quota": "Increase your quota" + "pci_project_flavors_quota": "Increase your quota", + "pci_project_flavors_spec_model": "Model", + "pci_project_flavors_quota_info": "Your project quota will not allow you to add this machine type in this region.", + "pci_project_flavors_quota_manage": "Manage my quota" } diff --git a/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_pl_PL.json b/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_pl_PL.json index 67f1c99dfbaf..a8f75cca08ed 100644 --- a/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_pl_PL.json +++ b/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_pl_PL.json @@ -15,5 +15,8 @@ "pci_project_flavors_spec_nvme_multiple": "{{count}} x {{capacity}} NVMe", "pci_project_flavors_price_hourly": "{{price}} netto/godz.", "pci_project_flavors_price_monthly": "Od {{price}} netto/m-c", - "pci_project_flavors_quota": "Zwiększ limity" + "pci_project_flavors_quota": "Zwiększ limity", + "pci_project_flavors_spec_model": "Model:", + "pci_project_flavors_quota_info": "Limit Twojego projektu nie pozwala na dodanie tego typu maszyny w tym regionie. ", + "pci_project_flavors_quota_manage": "Zarządzaj limitami" } diff --git a/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_pt_PT.json b/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_pt_PT.json index f62ca0892d4e..0b98740b4139 100644 --- a/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_pt_PT.json +++ b/packages/manager/modules/pci/src/components/project/flavors-list/translations/Messages_pt_PT.json @@ -15,5 +15,8 @@ "pci_project_flavors_spec_nvme_multiple": "{{count}} x {{capacity}} NVMe", "pci_project_flavors_price_hourly": "{{price}} /hora + IVA", "pci_project_flavors_price_monthly": "A partir de {{price}} /mês + IVA", - "pci_project_flavors_quota": "Aumentar o meu limite" + "pci_project_flavors_quota": "Aumentar o meu limite", + "pci_project_flavors_spec_model": "Modelo:", + "pci_project_flavors_quota_info": "O limite do seu projeto não lhe permite adicionar este tipo de máquina nesta região.", + "pci_project_flavors_quota_manage": "Gerir o meu limite" } diff --git a/packages/manager/modules/pci/src/projects/new/translations/Messages_de_DE.json b/packages/manager/modules/pci/src/projects/new/translations/Messages_de_DE.json index 9c8c0ecff2e8..9bae43e7263c 100644 --- a/packages/manager/modules/pci/src/projects/new/translations/Messages_de_DE.json +++ b/packages/manager/modules/pci/src/projects/new/translations/Messages_de_DE.json @@ -1,5 +1,6 @@ { "pci_project_new_error_contact_support": "Kundendienst kontaktieren", - "pci_project_new_error_ask_increase_projects_quota": "Sie können kein weiteres Public Cloud Projekt erstellen, da Sie die maximale Zahl an Projekten bereits erreicht haben. Um das Quota zu erhöhen, wenden Sie sich bitte an den Support.", - "pci_project_new_error_verify_paypal": "Sie können mit Ihrem PayPal-Konto kein Public Cloud Projekt erstellen, da das Konto noch nicht verifiziert wurde. Bitte ergreifen Sie die notwendigen Maßnahmen bei PayPal, um Ihr Konto zu verifizieren, und versuchen Sie es erneut. Wahlweise können Sie auch ein anderes Standardzahlungsmittel verwenden." + "pci_project_new_error_ask_increase_projects_quota": "Sie können kein Projekt mehr erstellen. Bitte kontaktieren Sie den Support um Ihr Quota zu erhöhen und so ein neues Projekt erstellen zu können.", + "pci_project_new_error_verify_paypal": "Sie können mit Ihrem PayPal-Konto kein Public Cloud Projekt erstellen, da das Konto noch nicht verifiziert wurde. Bitte ergreifen Sie die notwendigen Maßnahmen bei PayPal, um Ihr Konto zu verifizieren, und versuchen Sie es erneut. Wahlweise können Sie auch ein anderes Standardzahlungsmittel verwenden.", + "pci_project_new_error_cancel": "Abbrechen" } diff --git a/packages/manager/modules/pci/src/projects/new/translations/Messages_en_GB.json b/packages/manager/modules/pci/src/projects/new/translations/Messages_en_GB.json index 9b6a33f3d75d..5c99ef297fed 100644 --- a/packages/manager/modules/pci/src/projects/new/translations/Messages_en_GB.json +++ b/packages/manager/modules/pci/src/projects/new/translations/Messages_en_GB.json @@ -1,5 +1,6 @@ { "pci_project_new_error_contact_support": "Contact support", - "pci_project_new_error_ask_increase_projects_quota": "You cannot create an additional Public Cloud project because you have reached the maximum quota for projects. To unblock this quota, please contact our support team.", - "pci_project_new_error_verify_paypal": "You cannot create a Public Cloud project with your PayPal account, because it is not verified. Please go to the PayPal website and verify your account, then try again. You can also modify your default payment method." + "pci_project_new_error_ask_increase_projects_quota": "You can no longer create projects. Please contact the support team to increase your quota, and create a new project.", + "pci_project_new_error_verify_paypal": "You cannot create a Public Cloud project with your PayPal account, because it is not verified. Please go to the PayPal website and verify your account, then try again. You can also modify your default payment method.", + "pci_project_new_error_cancel": "Cancel" } diff --git a/packages/manager/modules/pci/src/projects/new/translations/Messages_es_ES.json b/packages/manager/modules/pci/src/projects/new/translations/Messages_es_ES.json index 181452cfee49..32350bf4d018 100644 --- a/packages/manager/modules/pci/src/projects/new/translations/Messages_es_ES.json +++ b/packages/manager/modules/pci/src/projects/new/translations/Messages_es_ES.json @@ -1,5 +1,6 @@ { "pci_project_new_error_contact_support": "Contactar con el soporte", - "pci_project_new_error_ask_increase_projects_quota": "No puede crear más proyectos de Public Cloud debido a que ha alcanzado el límite de proyectos. Para desbloquear dicho límite, contacte con el soporte.", - "pci_project_new_error_verify_paypal": "No puede crear proyectos de Public Cloud con su cuenta de PayPal debido a que esta no está verificada. Le rogamos que realice los trámites pertinentes con PayPal para verificar su cuenta. Posteriormente podrá volver a intentarlo. También puede modificar su forma de pago por defecto." + "pci_project_new_error_ask_increase_projects_quota": "Si no puede crear más proyectos, puede ponerse en contacto con el soporte para aumentar su límite y poder crear un nuevo proyecto.", + "pci_project_new_error_verify_paypal": "No puede crear proyectos de Public Cloud con su cuenta de PayPal debido a que esta no está verificada. Le rogamos que realice los trámites pertinentes con PayPal para verificar su cuenta. Posteriormente podrá volver a intentarlo. También puede modificar su forma de pago por defecto.", + "pci_project_new_error_cancel": "Cancelar" } diff --git a/packages/manager/modules/pci/src/projects/new/translations/Messages_fi_FI.json b/packages/manager/modules/pci/src/projects/new/translations/Messages_fi_FI.json index 9b6a33f3d75d..5c99ef297fed 100644 --- a/packages/manager/modules/pci/src/projects/new/translations/Messages_fi_FI.json +++ b/packages/manager/modules/pci/src/projects/new/translations/Messages_fi_FI.json @@ -1,5 +1,6 @@ { "pci_project_new_error_contact_support": "Contact support", - "pci_project_new_error_ask_increase_projects_quota": "You cannot create an additional Public Cloud project because you have reached the maximum quota for projects. To unblock this quota, please contact our support team.", - "pci_project_new_error_verify_paypal": "You cannot create a Public Cloud project with your PayPal account, because it is not verified. Please go to the PayPal website and verify your account, then try again. You can also modify your default payment method." + "pci_project_new_error_ask_increase_projects_quota": "You can no longer create projects. Please contact the support team to increase your quota, and create a new project.", + "pci_project_new_error_verify_paypal": "You cannot create a Public Cloud project with your PayPal account, because it is not verified. Please go to the PayPal website and verify your account, then try again. You can also modify your default payment method.", + "pci_project_new_error_cancel": "Cancel" } diff --git a/packages/manager/modules/pci/src/projects/new/translations/Messages_fr_CA.json b/packages/manager/modules/pci/src/projects/new/translations/Messages_fr_CA.json index 159e3dd1c869..1f4d46a8908b 100644 --- a/packages/manager/modules/pci/src/projects/new/translations/Messages_fr_CA.json +++ b/packages/manager/modules/pci/src/projects/new/translations/Messages_fr_CA.json @@ -1,5 +1,6 @@ { "pci_project_new_error_contact_support": "Contacter le support", - "pci_project_new_error_ask_increase_projects_quota": "Vous ne pouvez pas créer de projet Public Cloud supplémentaire, car vous avez atteint le quota maximum de projets. Pour débloquer ce quota, nous vous invitons à contacter notre support.", - "pci_project_new_error_verify_paypal": "Vous ne pouvez pas créer de projet Public Cloud avec votre compte PayPal, car celui-ci n'est pas vérifié. Nous vous invitons à effectuer les démarches nécessaires auprès de PayPal pour vérifier votre compte, puis à réessayer. Vous pouvez aussi modifier votre moyen de paiement par défaut." + "pci_project_new_error_ask_increase_projects_quota": "Vous ne pouvez plus créer de projet, veuillez contacter le support pour augmenter votre quota et avoir la possibilité de créer un nouveau projet.", + "pci_project_new_error_verify_paypal": "Vous ne pouvez pas créer de projet Public Cloud avec votre compte PayPal, car celui-ci n'est pas vérifié. Nous vous invitons à effectuer les démarches nécessaires auprès de PayPal pour vérifier votre compte, puis à réessayer. Vous pouvez aussi modifier votre moyen de paiement par défaut.", + "pci_project_new_error_cancel": "Annuler" } diff --git a/packages/manager/modules/pci/src/projects/new/translations/Messages_it_IT.json b/packages/manager/modules/pci/src/projects/new/translations/Messages_it_IT.json index 96f24f8d044a..bb56d2373dd7 100644 --- a/packages/manager/modules/pci/src/projects/new/translations/Messages_it_IT.json +++ b/packages/manager/modules/pci/src/projects/new/translations/Messages_it_IT.json @@ -1,5 +1,6 @@ { "pci_project_new_error_contact_support": "Contatta il supporto", - "pci_project_new_error_ask_increase_projects_quota": "Al momento non è possibile creare altri progetti Public Cloud in quanto è stato raggiunto il numero massimo di progetti autorizzati. Per sbloccare questo limite, contatta il nostro supporto.", - "pci_project_new_error_verify_paypal": "Al momento non è possibile creare altri progetti Public Cloud con questo conto PayPal in quanto l’account non risulta verificato. Ti consigliamo di eseguire il processo di verifica nell’interfaccia PayPal e riprovare a effettuare l’operazione. È inoltre possibile modificare il metodo di pagamento predefinito." + "pci_project_new_error_ask_increase_projects_quota": "Non è possibile creare altri progetti. Contatta il supporto per aumentare la quota disponibile e creare un nuovo progetto.", + "pci_project_new_error_verify_paypal": "Al momento non è possibile creare altri progetti Public Cloud con questo conto PayPal in quanto l’account non risulta verificato. Ti consigliamo di eseguire il processo di verifica nell’interfaccia PayPal e riprovare a effettuare l’operazione. È inoltre possibile modificare il metodo di pagamento predefinito.", + "pci_project_new_error_cancel": "Annulla" } diff --git a/packages/manager/modules/pci/src/projects/new/translations/Messages_lt_LT.json b/packages/manager/modules/pci/src/projects/new/translations/Messages_lt_LT.json index 9b6a33f3d75d..5c99ef297fed 100644 --- a/packages/manager/modules/pci/src/projects/new/translations/Messages_lt_LT.json +++ b/packages/manager/modules/pci/src/projects/new/translations/Messages_lt_LT.json @@ -1,5 +1,6 @@ { "pci_project_new_error_contact_support": "Contact support", - "pci_project_new_error_ask_increase_projects_quota": "You cannot create an additional Public Cloud project because you have reached the maximum quota for projects. To unblock this quota, please contact our support team.", - "pci_project_new_error_verify_paypal": "You cannot create a Public Cloud project with your PayPal account, because it is not verified. Please go to the PayPal website and verify your account, then try again. You can also modify your default payment method." + "pci_project_new_error_ask_increase_projects_quota": "You can no longer create projects. Please contact the support team to increase your quota, and create a new project.", + "pci_project_new_error_verify_paypal": "You cannot create a Public Cloud project with your PayPal account, because it is not verified. Please go to the PayPal website and verify your account, then try again. You can also modify your default payment method.", + "pci_project_new_error_cancel": "Cancel" } diff --git a/packages/manager/modules/pci/src/projects/new/translations/Messages_pl_PL.json b/packages/manager/modules/pci/src/projects/new/translations/Messages_pl_PL.json index 4d3610d2791b..03f30e3c7a9a 100644 --- a/packages/manager/modules/pci/src/projects/new/translations/Messages_pl_PL.json +++ b/packages/manager/modules/pci/src/projects/new/translations/Messages_pl_PL.json @@ -1,5 +1,6 @@ { "pci_project_new_error_contact_support": "Skontaktuj się z pomocą techniczną", - "pci_project_new_error_ask_increase_projects_quota": "Niestety, nie możesz utworzyć dodatkowego projektu Public Cloud, ponieważ osiągnąłeś maksymalny limit projektów. Aby zwiększyć limity, skontaktuj się z pomocą techniczną.", - "pci_project_new_error_verify_paypal": "Niestety, nie możesz utworzyć projektu Public Cloud, używając Twojego konta PayPal, ponieważ nie zostało ono zweryfikowane. Prosimy o wykonanie kroków niezbędnych do zatwierdzenia konta PayPal i podjęcie nowej próby utworzenia projektu. Możesz również zmienić Twój domyślny sposób płatności." + "pci_project_new_error_ask_increase_projects_quota": "Brak możliwości utworzenia kolejnych projektów. Skontaktuj się z Działem Wsparcia, aby zwiększyć limit i utworzyć nowy projekt.", + "pci_project_new_error_verify_paypal": "Niestety, nie możesz utworzyć projektu Public Cloud, używając Twojego konta PayPal, ponieważ nie zostało ono zweryfikowane. Prosimy o wykonanie kroków niezbędnych do zatwierdzenia konta PayPal i podjęcie nowej próby utworzenia projektu. Możesz również zmienić Twój domyślny sposób płatności.", + "pci_project_new_error_cancel": "Anuluj" } diff --git a/packages/manager/modules/pci/src/projects/new/translations/Messages_pt_PT.json b/packages/manager/modules/pci/src/projects/new/translations/Messages_pt_PT.json index 1e3c5adb6039..e70d2e16c525 100644 --- a/packages/manager/modules/pci/src/projects/new/translations/Messages_pt_PT.json +++ b/packages/manager/modules/pci/src/projects/new/translations/Messages_pt_PT.json @@ -1,5 +1,6 @@ { "pci_project_new_error_contact_support": "Contactar o Apoio ao Cliente", - "pci_project_new_error_ask_increase_projects_quota": "Não é possível criar projetos Public Cloud adicionais, pois atingiu o limite máximo de projetos. Para desbloquear o limite, sugerimos que contacte o apoio ao cliente.", - "pci_project_new_error_verify_paypal": "Não é possível criar projetos Public Cloud com a sua conta PayPal, pois esta não é uma conta verificada. Sugerimos que efetue os procedimentos necessários junto da PayPal para verificar a sua conta e, a seguir, que tente novamente. Também pode alterar o seu método de pagamento predefinido." + "pci_project_new_error_ask_increase_projects_quota": "Já não é possível criar projetos. Contacte o suporte para aumentar o seu limite e ter a possibilidade de criar um novo projeto.", + "pci_project_new_error_verify_paypal": "Não é possível criar projetos Public Cloud com a sua conta PayPal, pois esta não é uma conta verificada. Sugerimos que efetue os procedimentos necessários junto da PayPal para verificar a sua conta e, a seguir, que tente novamente. Também pode alterar o seu método de pagamento predefinido.", + "pci_project_new_error_cancel": "Cancelar" } diff --git a/packages/manager/modules/pci/src/projects/project/translations/Messages_de_DE.json b/packages/manager/modules/pci/src/projects/project/translations/Messages_de_DE.json index 4a6ae5bdc9c8..c9f2c5d54999 100644 --- a/packages/manager/modules/pci/src/projects/project/translations/Messages_de_DE.json +++ b/packages/manager/modules/pci/src/projects/project/translations/Messages_de_DE.json @@ -12,5 +12,8 @@ "pci_projects_project_documentation_prepare_the_environment_for_using_the_open_stack_api": "Vorbereitung der Umgebung für die Verwendung der OpenStack-API", "pci_projects_project_documentation_create_and_configure_and_additional_disk_on_an_instance": "Create and configure an additional disk on an instance", "pci_projects_project_documentation_see_all_public_cloud_guides": "Zu den Public Cloud Anleitungen", - "pci_projects_project_welcome": "Willkommen bei der neuen Public Cloud-Schnittstelle" + "pci_projects_project_welcome": "Willkommen bei der neuen Public Cloud-Schnittstelle", + "pci_projects_project_keystone_upgrade": "Am 23. Juni 2020 findet eine bedeutende Veränderung statt. Daher möchten wir Sie schon jetzt bitten, sich auf den Wechsel zu Keystone v3 einzustellen.", + "pci_projects_project_keystone_upgrade_more": "Mehr erfahren", + "pci_projects_project_quota_warning_message": "Als Sicherheitsmaßnahme wird Ihr Projekt mit einem Höchstwert (Quota) versehen. Wenn Sie diesen Wert erhöhen möchten, gehen Sie bitte auf die Seite Quota und Standort." } diff --git a/packages/manager/modules/pci/src/projects/project/translations/Messages_en_GB.json b/packages/manager/modules/pci/src/projects/project/translations/Messages_en_GB.json index a4748f5021a6..5d0025f43950 100644 --- a/packages/manager/modules/pci/src/projects/project/translations/Messages_en_GB.json +++ b/packages/manager/modules/pci/src/projects/project/translations/Messages_en_GB.json @@ -12,5 +12,8 @@ "pci_projects_project_documentation_prepare_the_environment_for_using_the_open_stack_api": "Prepare the environment for using the OpenStack API", "pci_projects_project_documentation_create_and_configure_and_additional_disk_on_an_instance": "Create and configure and additional disk on an instance", "pci_projects_project_documentation_see_all_public_cloud_guides": "See all Public Cloud guides", - "pci_projects_project_welcome": "Welcome to the new Public Cloud interface" + "pci_projects_project_welcome": "Welcome to the new Public Cloud interface", + "pci_projects_project_keystone_upgrade": "An important change will take place on 23rd June 2020 — please prepare for the upgrade to Keystone v3.", + "pci_projects_project_keystone_upgrade_more": "Find out more", + "pci_projects_project_quota_warning_message": "As a security measure, your project is subject to a quota. If you would like to increase this quota, go to the Quota and location page." } diff --git a/packages/manager/modules/pci/src/projects/project/translations/Messages_es_ES.json b/packages/manager/modules/pci/src/projects/project/translations/Messages_es_ES.json index b182e3a6522d..e32d86ce7a80 100644 --- a/packages/manager/modules/pci/src/projects/project/translations/Messages_es_ES.json +++ b/packages/manager/modules/pci/src/projects/project/translations/Messages_es_ES.json @@ -12,5 +12,8 @@ "pci_projects_project_documentation_prepare_the_environment_for_using_the_open_stack_api": "Preparar el entorno para utilizar la API de OpenStack", "pci_projects_project_documentation_create_and_configure_and_additional_disk_on_an_instance": "Crear un volumen adicional y asociarlo a una instancia", "pci_projects_project_documentation_see_all_public_cloud_guides": "Ver todas las guías de Public Cloud", - "pci_projects_project_welcome": "Bienvenido a la nueva interfaz de Public Cloud" + "pci_projects_project_welcome": "Bienvenido a la nueva interfaz de Public Cloud", + "pci_projects_project_keystone_upgrade": "El 23 de junio de 2020 se producirá un cambio importante. Por favor, planifique su migración a Keystone v3.", + "pci_projects_project_keystone_upgrade_more": "Más información", + "pci_projects_project_quota_warning_message": "Por motivos de seguridad, su proyecto tiene un límite. Para aumentar este límite, acceda a la página Quota and Localisation." } diff --git a/packages/manager/modules/pci/src/projects/project/translations/Messages_fi_FI.json b/packages/manager/modules/pci/src/projects/project/translations/Messages_fi_FI.json index a4748f5021a6..5d0025f43950 100644 --- a/packages/manager/modules/pci/src/projects/project/translations/Messages_fi_FI.json +++ b/packages/manager/modules/pci/src/projects/project/translations/Messages_fi_FI.json @@ -12,5 +12,8 @@ "pci_projects_project_documentation_prepare_the_environment_for_using_the_open_stack_api": "Prepare the environment for using the OpenStack API", "pci_projects_project_documentation_create_and_configure_and_additional_disk_on_an_instance": "Create and configure and additional disk on an instance", "pci_projects_project_documentation_see_all_public_cloud_guides": "See all Public Cloud guides", - "pci_projects_project_welcome": "Welcome to the new Public Cloud interface" + "pci_projects_project_welcome": "Welcome to the new Public Cloud interface", + "pci_projects_project_keystone_upgrade": "An important change will take place on 23rd June 2020 — please prepare for the upgrade to Keystone v3.", + "pci_projects_project_keystone_upgrade_more": "Find out more", + "pci_projects_project_quota_warning_message": "As a security measure, your project is subject to a quota. If you would like to increase this quota, go to the Quota and location page." } diff --git a/packages/manager/modules/pci/src/projects/project/translations/Messages_fr_CA.json b/packages/manager/modules/pci/src/projects/project/translations/Messages_fr_CA.json index 5f96cf779eaa..4c6c5eb18e6e 100644 --- a/packages/manager/modules/pci/src/projects/project/translations/Messages_fr_CA.json +++ b/packages/manager/modules/pci/src/projects/project/translations/Messages_fr_CA.json @@ -12,6 +12,12 @@ "pci_projects_project_documentation_prepare_the_environment_for_using_the_open_stack_api": "Prepare the environment for using the OpenStack API", "pci_projects_project_documentation_create_and_configure_and_additional_disk_on_an_instance": "Create and configure and additional disk on an instance", "pci_projects_project_documentation_see_all_public_cloud_guides": "See all Public Cloud guides", + "pci_projects_project_documentation_how_to_create_a_horizon_user": "How to Create a Horizon User", + "pci_projects_project_documentation_how_to_deploy_a_public_cloud_instance": "How to Deploy a Public Cloud Instance", + "pci_projects_project_documentation_getting_started_with_block_storage": "Getting Started with Block Storage", - "pci_projects_project_welcome": "Bienvenue sur la nouvelle interface Public Cloud" + "pci_projects_project_welcome": "Bienvenue sur la nouvelle interface Public Cloud", + "pci_projects_project_keystone_upgrade": "Changement important le 23 juin 2020, merci d'anticiper dès maintenant le passage à Keystone v3.", + "pci_projects_project_keystone_upgrade_more": "En savoir plus", + "pci_projects_project_quota_warning_message": "Par mesure de sécurité, votre projet est soumis à un quota. Si vous voulez augmenter ce quota, rendez-vous sur la page Quota and localization." } diff --git a/packages/manager/modules/pci/src/projects/project/translations/Messages_it_IT.json b/packages/manager/modules/pci/src/projects/project/translations/Messages_it_IT.json index 63995cb0b28e..fffb1f8854a5 100644 --- a/packages/manager/modules/pci/src/projects/project/translations/Messages_it_IT.json +++ b/packages/manager/modules/pci/src/projects/project/translations/Messages_it_IT.json @@ -12,5 +12,8 @@ "pci_projects_project_documentation_prepare_the_environment_for_using_the_open_stack_api": "Preparare l’ambiente di sviluppo per utilizzare l’API OpenStack", "pci_projects_project_documentation_create_and_configure_and_additional_disk_on_an_instance": "Creare e configurare un disco aggiuntivo su un’istanza", "pci_projects_project_documentation_see_all_public_cloud_guides": "Visualizza tutte le guide Public Cloud", - "pci_projects_project_welcome": "Benvenuti nella nuova interfaccia di Public Cloud" + "pci_projects_project_welcome": "Benvenuti nella nuova interfaccia di Public Cloud", + "pci_projects_project_keystone_upgrade": "Il 23 giugno 2020 avverrà un cambiamento importante. Preparati in anticipo al passaggio a Keystone v3.", + "pci_projects_project_keystone_upgrade_more": "Scopri di più", + "pci_projects_project_quota_warning_message": "Per motivi di sicurezza, al tuo progetto è stata assegnata una quota. Per aumentare questo limite, accedi alla pagina Quota and localization." } diff --git a/packages/manager/modules/pci/src/projects/project/translations/Messages_lt_LT.json b/packages/manager/modules/pci/src/projects/project/translations/Messages_lt_LT.json index a4748f5021a6..5d0025f43950 100644 --- a/packages/manager/modules/pci/src/projects/project/translations/Messages_lt_LT.json +++ b/packages/manager/modules/pci/src/projects/project/translations/Messages_lt_LT.json @@ -12,5 +12,8 @@ "pci_projects_project_documentation_prepare_the_environment_for_using_the_open_stack_api": "Prepare the environment for using the OpenStack API", "pci_projects_project_documentation_create_and_configure_and_additional_disk_on_an_instance": "Create and configure and additional disk on an instance", "pci_projects_project_documentation_see_all_public_cloud_guides": "See all Public Cloud guides", - "pci_projects_project_welcome": "Welcome to the new Public Cloud interface" + "pci_projects_project_welcome": "Welcome to the new Public Cloud interface", + "pci_projects_project_keystone_upgrade": "An important change will take place on 23rd June 2020 — please prepare for the upgrade to Keystone v3.", + "pci_projects_project_keystone_upgrade_more": "Find out more", + "pci_projects_project_quota_warning_message": "As a security measure, your project is subject to a quota. If you would like to increase this quota, go to the Quota and location page." } diff --git a/packages/manager/modules/pci/src/projects/project/translations/Messages_pl_PL.json b/packages/manager/modules/pci/src/projects/project/translations/Messages_pl_PL.json index 29b7bc9727dc..0f15c94071bf 100644 --- a/packages/manager/modules/pci/src/projects/project/translations/Messages_pl_PL.json +++ b/packages/manager/modules/pci/src/projects/project/translations/Messages_pl_PL.json @@ -12,5 +12,8 @@ "pci_projects_project_documentation_prepare_the_environment_for_using_the_open_stack_api": "Przygotowanie środowiska do korzystania z API OpenStack ", "pci_projects_project_documentation_create_and_configure_and_additional_disk_on_an_instance": "Tworzenie i konfiguracja dodatkowego dysku w instancji", "pci_projects_project_documentation_see_all_public_cloud_guides": "Inne przewodniki dotyczące Public Cloud, które mogą Cię zainteresować…", - "pci_projects_project_welcome": "Witamy w nowym interfejsie Public Cloud" + "pci_projects_project_welcome": "Witamy w nowym interfejsie Public Cloud", + "pci_projects_project_keystone_upgrade": "W dniu 23 czerwca 2020 roku nastąpi istotna zmiana, dlatego już teraz prosimy o zaplanowanie działań związanych z aktualizacją Keystone do Keystone v3.", + "pci_projects_project_keystone_upgrade_more": "Dowiedz się więcej", + "pci_projects_project_quota_warning_message": "Ze względów bezpieczeństwa w odniesieniu do Twojego projektu zastosowany został limit. Jeśli chcesz zwiększyć limit, przejdź do strony Quota and localization." } diff --git a/packages/manager/modules/pci/src/projects/project/translations/Messages_pt_PT.json b/packages/manager/modules/pci/src/projects/project/translations/Messages_pt_PT.json index ebe7274c74ef..56ca164e4854 100644 --- a/packages/manager/modules/pci/src/projects/project/translations/Messages_pt_PT.json +++ b/packages/manager/modules/pci/src/projects/project/translations/Messages_pt_PT.json @@ -12,5 +12,8 @@ "pci_projects_project_documentation_prepare_the_environment_for_using_the_open_stack_api": "Preparar o ambiente para utilizar a API OpenStack", "pci_projects_project_documentation_create_and_configure_and_additional_disk_on_an_instance": "Criar e configurar um disco suplementar numa instância", "pci_projects_project_documentation_see_all_public_cloud_guides": "Consultar todos os manuais Public Cloud", - "pci_projects_project_welcome": "Bem-vindo à nova interface da Nuvem Pública" + "pci_projects_project_welcome": "Bem-vindo à nova interface da Nuvem Pública", + "pci_projects_project_keystone_upgrade": "Uma importante mudança irá ter lugar a 23 de junho de 2020. Prepare-se para a passagem para Keystone v3.", + "pci_projects_project_keystone_upgrade_more": "Mais informações", + "pci_projects_project_quota_warning_message": "Por razões de segurança, o seu projeto foi sujeito a um limite. Se pretender aumentar este limite, consulta a página Limites e localizações." }