diff options
8 files changed, 16 insertions, 16 deletions
diff --git a/app/views/admin/application_settings/ci_cd.html.haml b/app/views/admin/application_settings/ci_cd.html.haml index 5d0a7045eca..e984c832985 100644 --- a/app/views/admin/application_settings/ci_cd.html.haml +++ b/app/views/admin/application_settings/ci_cd.html.haml @@ -1,5 +1,5 @@ -- breadcrumb_title "CI/CD" -- page_title "CI/CD" +- breadcrumb_title _("CI/CD") +- page_title _("CI/CD") - @content_class = "limit-container-width" unless fluid_layout - expanded = Rails.env.test? diff --git a/app/views/admin/application_settings/integrations.html.haml b/app/views/admin/application_settings/integrations.html.haml index 5790ae17708..700c2e15ae6 100644 --- a/app/views/admin/application_settings/integrations.html.haml +++ b/app/views/admin/application_settings/integrations.html.haml @@ -1,5 +1,5 @@ -- breadcrumb_title "Integrations" -- page_title "Integrations" +- breadcrumb_title _("Integrations") +- page_title _("Integrations") - @content_class = "limit-container-width" unless fluid_layout - expanded = Rails.env.test? diff --git a/app/views/admin/application_settings/metrics_and_profiling.html.haml b/app/views/admin/application_settings/metrics_and_profiling.html.haml index a5ff14188bd..821235c00c7 100644 --- a/app/views/admin/application_settings/metrics_and_profiling.html.haml +++ b/app/views/admin/application_settings/metrics_and_profiling.html.haml @@ -1,5 +1,5 @@ -- breadcrumb_title "Metrics and profiling" -- page_title "Metrics and profiling" +- breadcrumb_title _("Metrics and profiling") +- page_title _("Metrics and profiling") - @content_class = "limit-container-width" unless fluid_layout - expanded = Rails.env.test? diff --git a/app/views/admin/application_settings/network.html.haml b/app/views/admin/application_settings/network.html.haml index 49eca70a71d..27cea347bb1 100644 --- a/app/views/admin/application_settings/network.html.haml +++ b/app/views/admin/application_settings/network.html.haml @@ -1,5 +1,5 @@ -- breadcrumb_title "Network" -- page_title "Network" +- breadcrumb_title _("Network") +- page_title _("Network") - @content_class = "limit-container-width" unless fluid_layout - expanded = Rails.env.test? diff --git a/app/views/admin/application_settings/preferences.html.haml b/app/views/admin/application_settings/preferences.html.haml index e92aa3f6e9f..74be9d130c5 100644 --- a/app/views/admin/application_settings/preferences.html.haml +++ b/app/views/admin/application_settings/preferences.html.haml @@ -1,5 +1,5 @@ -- breadcrumb_title "Preferences" -- page_title "Preferences" +- breadcrumb_title _("Preferences") +- page_title _("Preferences") - @content_class = "limit-container-width" unless fluid_layout - expanded = Rails.env.test? diff --git a/app/views/admin/application_settings/reporting.html.haml b/app/views/admin/application_settings/reporting.html.haml index edc2c37e248..70da89694f8 100644 --- a/app/views/admin/application_settings/reporting.html.haml +++ b/app/views/admin/application_settings/reporting.html.haml @@ -1,5 +1,5 @@ -- breadcrumb_title "Reporting" -- page_title "Reporting" +- breadcrumb_title _("Reporting") +- page_title _("Reporting") - @content_class = "limit-container-width" unless fluid_layout - expanded = Rails.env.test? diff --git a/app/views/admin/application_settings/repository.html.haml b/app/views/admin/application_settings/repository.html.haml index b5ff10f79e2..b6289986a37 100644 --- a/app/views/admin/application_settings/repository.html.haml +++ b/app/views/admin/application_settings/repository.html.haml @@ -1,5 +1,5 @@ -- breadcrumb_title "Repository" -- page_title "Repository" +- breadcrumb_title _("Repository") +- page_title _("Repository") - @content_class = "limit-container-width" unless fluid_layout - expanded = Rails.env.test? diff --git a/app/views/admin/application_settings/show.html.haml b/app/views/admin/application_settings/show.html.haml index 19f80a73eca..70e276b8162 100644 --- a/app/views/admin/application_settings/show.html.haml +++ b/app/views/admin/application_settings/show.html.haml @@ -1,5 +1,5 @@ -- breadcrumb_title "Settings" -- page_title "Settings" +- breadcrumb_title _("Settings") +- page_title _("Settings") - @content_class = "limit-container-width" unless fluid_layout - expanded = Rails.env.test? |