diff options
author | Jenkins <jenkins@review.openstack.org> | 2017-02-18 04:52:24 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2017-02-18 04:52:24 +0000 |
commit | fb67bd6dae9eac346978425ab6f5451d777958c3 (patch) | |
tree | 885b2ffacc3af05f9685180fc3e0436fe842ab40 /manifests | |
parent | c78806286a7f169de7393a7bef091ece82577791 (diff) | |
parent | 053ee06787539f6da07985968d6c3b0194e56008 (diff) |
Merge "Enable languages in UI config"
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/ui.pp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/manifests/ui.pp b/manifests/ui.pp index 7b87397..d51ef2e 100644 --- a/manifests/ui.pp +++ b/manifests/ui.pp @@ -31,6 +31,11 @@ # The port on which the UI is listening. # Defaults to 3000 # +# [*enabled_languages*] +# Which languages to show in the UI. +# An array. +# Defaults to ['en-GB', 'en', 'de', 'ja', 'ko-KR', 'zh-CN', 'es'] +# # [*endpoint_proxy_keystone*] # The keystone proxy endpoint url # Defaults to undef @@ -89,6 +94,7 @@ class tripleo::ui ( $bind_host = hiera('controller_host'), $ui_port = 3000, $zaqar_default_queue = 'tripleo', + $enabled_languages = ['en-GB', 'en', 'de', 'ja', 'ko-KR', 'zh-CN', 'es'], $endpoint_proxy_zaqar = undef, $endpoint_proxy_keystone = undef, $endpoint_proxy_heat = undef, |