diff --git a/templates/portfolios/applications/edit.html b/templates/portfolios/applications/edit.html index 9b92e443..357872cf 100644 --- a/templates/portfolios/applications/edit.html +++ b/templates/portfolios/applications/edit.html @@ -2,11 +2,11 @@ {% from "components/text_input.html" import TextInput %} -{% set secondary_breadcrumb = application.name + ' Application Settings' %} +{% set secondary_breadcrumb = 'portfolios.applications.existing_application_title' | translate({ "application_name": application.name }) %} {% block application_content %} -
Application Settings
+
{{ 'portfolios.applications.settings_heading' | translate }}
@@ -15,10 +15,10 @@ {% include "fragments/edit_application_form.html" %}
-
-

Application Environments

+
+

{{ 'portfolios.applications.environments_heading' | translate }}

- Each environment created within an application is an enclave of cloud resources that is logically separated from each other for increased security. + {{ 'portfolios.applications.environments_description' | translate }}

@@ -35,7 +35,7 @@
- +
diff --git a/templates/portfolios/applications/new.html b/templates/portfolios/applications/new.html index b3c21709..2b2e458b 100644 --- a/templates/portfolios/applications/new.html +++ b/templates/portfolios/applications/new.html @@ -5,13 +5,15 @@ {% from "components/modal.html" import Modal %} {% from "components/text_input.html" import TextInput %} -{% set secondary_breadcrumb = 'New Application' %} +{% set secondary_breadcrumb = 'portfolios.applications.new_application_title' | translate %} {% block application_content %} {% set modalName = "newApplicationConfirmation" %} {% include "fragments/flash.html" %} +
{{ 'portfolios.applications.settings_heading' | translate }}
+
@@ -22,7 +24,7 @@

Create application !{ name }

- When you click Create Application, the environments + When you click {{ 'portfolios.applications.create_button_text' | translate }}, the environments !{environment.name} @@ -30,7 +32,7 @@

- +
{% endcall %} @@ -44,10 +46,10 @@
-
-

Application Environments

+
+

{{ 'portfolios.applications.environments_heading' | translate }}

- Each environment created within an application is an enclave of cloud resources that is logically separated from each other for increased security. + {{ 'portfolios.applications.environments_description' | translate }}

@@ -71,7 +73,7 @@
- +
diff --git a/translations.yaml b/translations.yaml index 3353aee4..256d78fd 100644 --- a/translations.yaml +++ b/translations.yaml @@ -257,7 +257,6 @@ forms: name_length_validation_message: Portfolio names must be at least 4 and not more than 100 characters fragments: edit_application_form: - existing_application_title: 'Edit {application_name} application' explain: 'AT-AT allows you to create multiple applications within a portfolio. Each application can then be broken down into its own customizable environments.' new_application_title: Add a new application edit_user_form: @@ -487,6 +486,13 @@ portfolios: app_settings_text: App Settings team_text: Team csp_console_text: CSP Console + existing_application_title: '{application_name} Application Settings' + new_application_title: New Application + settings_heading: Application Settings + environments_heading: Environments + environments_description: Each environment created within an application is logically separated from one another for easier management and security. + update_button_text: Save Changes + create_button_text: Create Application testing: example_string: Hello World example_with_variables: 'Hello, {name}!'