# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2012, OpenStack Foundation
# This file is distributed under the same license as the horizon package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: horizon 13.0.2.dev34\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-04-15 10:18-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#: ../../source/install/from-source.rst:3
msgid "Manual installation"
msgstr ""

#: ../../source/install/from-source.rst:5
msgid ""
"This page covers the basic installation of horizon in a production "
"environment. If you are looking for a developer environment, see :ref:"
"`quickstart`."
msgstr ""

#: ../../source/install/from-source.rst:9
msgid "For the system dependencies, see :doc:`system-requirements`."
msgstr ""

#: ../../source/install/from-source.rst:12
msgid "Installation"
msgstr ""

#: ../../source/install/from-source.rst:16
msgid ""
"In the commands below, substitute \"<release>\" for your version of choice, "
"such as \"pike\" or \"queens\"."
msgstr ""

#: ../../source/install/from-source.rst:19
msgid "Clone Horizon"
msgstr ""

#: ../../source/install/from-source.rst:26
msgid "Install the horizon python module into your system"
msgstr ""

#: ../../source/install/from-source.rst:33
msgid "Configuration"
msgstr ""

#: ../../source/install/from-source.rst:35
msgid ""
"This section contains a small summary of the critical settings required to "
"run horizon. For more details, please refer to :ref:`install-settings`."
msgstr ""

#: ../../source/install/from-source.rst:39
msgid "Settings"
msgstr ""

#: ../../source/install/from-source.rst:41
msgid ""
"Create ``openstack_dashboard/local/local_settings.py``. It is usually a good "
"idea to copy ``openstack_dashboard/local/local_settings.py.example`` and "
"edit it. As a minimum, the follow settings will need to be modified:"
msgstr ""

#: ../../source/install/from-source.rst:45
msgid "``DEBUG``"
msgstr ""

#: ../../source/install/from-source.rst:46
msgid "Set to ``False``"
msgstr ""

#: ../../source/install/from-source.rst:47
msgid "``ALLOWED_HOSTS``"
msgstr ""

#: ../../source/install/from-source.rst:48
msgid "Set to your domain name(s)"
msgstr ""

#: ../../source/install/from-source.rst:50
msgid ""
"Set to the IP of your Keystone endpoint. You may also need to alter "
"``OPENSTACK_KEYSTONE_URL``"
msgstr ""

#: ../../source/install/from-source.rst:51
msgid "``OPENSTACK_HOST``"
msgstr ""

#: ../../source/install/from-source.rst:55
msgid ""
"The following steps in the \"Configuration\" section are optional, but "
"highly recommended in production."
msgstr ""

#: ../../source/install/from-source.rst:59
msgid "Translations"
msgstr ""

#: ../../source/install/from-source.rst:61
msgid ""
"Compile translation message catalogs for internationalization. This step is "
"not required if you do not need to support languages other than US English. "
"GNU ``gettext`` tool is required to compile message catalogs."
msgstr ""

#: ../../source/install/from-source.rst:71
msgid "Static Assets"
msgstr ""

#: ../../source/install/from-source.rst:73
msgid ""
"Compress your static files by adding ``COMPRESS_OFFLINE = True`` to your "
"``local_settings.py``, then run the following commands"
msgstr ""

#: ../../source/install/from-source.rst:82
msgid "Logging"
msgstr ""

#: ../../source/install/from-source.rst:84
msgid ""
"Horizons uses Django's logging configuration mechanism, which can be "
"customized by altering the ``LOGGING`` dictionary in ``local_settings.py``. "
"By default, Horizon's logging example sets the log level to ``INFO``."
msgstr ""

#: ../../source/install/from-source.rst:88
msgid ""
"Horizon also uses a number of 3rd-party clients which log separately. The "
"log level for these can still be controlled through Horizon's ``LOGGING`` "
"config, however behaviors may vary beyond Horizon's control."
msgstr ""

#: ../../source/install/from-source.rst:92
msgid ""
"For more information regarding configuring logging in Horizon, please read "
"the `Django logging directive`_ and the `Python logging directive`_ "
"documentation. Horizon is built on Python and Django."
msgstr ""

#: ../../source/install/from-source.rst:100
msgid "Session Storage"
msgstr ""

#: ../../source/install/from-source.rst:102
msgid ""
"Horizon uses `Django's sessions framework`_ for handling session data. There "
"are numerous session backends available, which are selected through the "
"``SESSION_ENGINE`` setting in your ``local_settings.py`` file."
msgstr ""

#: ../../source/install/from-source.rst:109
msgid "Memcached"
msgstr ""

#: ../../source/install/from-source.rst:119
msgid ""
"External caching using an application such as memcached offers persistence "
"and shared storage, and can be very useful for small-scale deployment and/or "
"development. However, for distributed and high-availability scenarios "
"memcached has inherent problems which are beyond the scope of this "
"documentation."
msgstr ""

#: ../../source/install/from-source.rst:125
msgid "Requirements:"
msgstr ""

#: ../../source/install/from-source.rst:127
msgid "Memcached service running and accessible"
msgstr ""

#: ../../source/install/from-source.rst:128
msgid "Python memcached module installed"
msgstr ""

#: ../../source/install/from-source.rst:131
msgid "Database"
msgstr ""

#: ../../source/install/from-source.rst:142
msgid ""
"Database-backed sessions are scalable (using an appropriate database "
"strategy), persistent, and can be made high-concurrency and highly-available."
msgstr ""

#: ../../source/install/from-source.rst:145
msgid ""
"The downside to this approach is that database-backed sessions are one of "
"the slower session storages, and incur a high overhead under heavy usage. "
"Proper configuration of your database deployment can also be a substantial "
"undertaking and is far beyond the scope of this documentation."
msgstr ""

#: ../../source/install/from-source.rst:151
msgid "Cached Database"
msgstr ""

#: ../../source/install/from-source.rst:153
msgid ""
"To mitigate the performance issues of database queries, you can also "
"consider using Django's ``cached_db`` session backend which utilizes both "
"your database and caching infrastructure to perform write-through caching "
"and efficient retrieval. You can enable this hybrid setting by configuring "
"both your database and cache as discussed above and then using"
msgstr ""

#: ../../source/install/from-source.rst:164
msgid "Deployment"
msgstr ""

#: ../../source/install/from-source.rst:166
msgid ""
"Set up a web server with WSGI support. For example, install Apache web "
"server on Ubuntu"
msgstr ""

#: ../../source/install/from-source.rst:173
msgid ""
"You can either use the provided ``openstack_dashboard/wsgi/django.wsgi`` or "
"generate a ``openstack_dashboard/wsgi/horizon.wsgi`` file with the following "
"command (which detects if you use a virtual environment or not to "
"automatically build an adapted WSGI file)"
msgstr ""

#: ../../source/install/from-source.rst:182
msgid ""
"Then configure the web server to host OpenStack dashboard via WSGI. For "
"apache2 web server, you may need to create ``/etc/apache2/sites-available/"
"horizon.conf``. The template in DevStack is a good example of the file. "
"http://git.openstack.org/cgit/openstack-dev/devstack/tree/files/apache-"
"horizon.template Or, if you previously generated an ``openstack_dashboard/"
"wsgi/horizon.wsgi`` you can automatically generate an apache configuration "
"file"
msgstr ""

#: ../../source/install/from-source.rst:194
msgid "Same as above but if you want SSL support"
msgstr ""

#: ../../source/install/from-source.rst:200
msgid ""
"By default the apache configuration will launch a number of apache processes "
"equal to the number of CPUs + 1 of the machine on which you launch the "
"``make_web_conf`` command. If the target machine is not the same or if you "
"want to specify the number of processes, add the ``--processes`` option"
msgstr ""

#: ../../source/install/from-source.rst:209
msgid "Enable the above configuration and restart the web server"
msgstr ""

#: ../../source/install/from-source.rst:217
msgid "Next Steps"
msgstr ""

#: ../../source/install/from-source.rst:219
msgid ":ref:`install-settings` lists the available settings for horizon."
msgstr ""

#: ../../source/install/from-source.rst:220
msgid ":ref:`install-customizing` describes how to customize horizon."
msgstr ""

#: ../../source/install/index.rst:3
msgid "Installation Guide"
msgstr ""

#: ../../source/install/index.rst:5 ../../source/install/install-debian.rst:5
#: ../../source/install/install-obs.rst:5
#: ../../source/install/install-rdo.rst:5
#: ../../source/install/install-ubuntu.rst:5
msgid ""
"This section describes how to install and configure the dashboard on the "
"controller node."
msgstr ""

#: ../../source/install/index.rst:8 ../../source/install/install-debian.rst:8
#: ../../source/install/install-obs.rst:8
#: ../../source/install/install-rdo.rst:8
#: ../../source/install/install-ubuntu.rst:8
msgid ""
"The only core service required by the dashboard is the Identity service. You "
"can use the dashboard in combination with other services, such as Image "
"service, Compute, and Networking. You can also use the dashboard in "
"environments with stand-alone services such as Object Storage."
msgstr ""

#: ../../source/install/index.rst:15 ../../source/install/install-debian.rst:15
#: ../../source/install/install-obs.rst:15
#: ../../source/install/install-rdo.rst:15
#: ../../source/install/install-ubuntu.rst:15
msgid ""
"This section assumes proper installation, configuration, and operation of "
"the Identity service using the Apache HTTP server and Memcached service."
msgstr ""

#: ../../source/install/index.rst:20
#: ../../source/install/system-requirements.rst:3
msgid "System Requirements"
msgstr ""

#: ../../source/install/index.rst:28
msgid "Installing from Packages"
msgstr ""

#: ../../source/install/index.rst:39
msgid "Installing from Source"
msgstr ""

#: ../../source/install/index.rst:47
msgid "Horizon plugins"
msgstr ""

#: ../../source/install/index.rst:49
msgid ""
"There are a number of horizon plugins for various useful features. You can "
"get dashboard supports for them by installing corresponding horizon plugins."
msgstr ""

#: ../../source/install/install-debian.rst:3
msgid "Install and configure for Debian"
msgstr ""

#: ../../source/install/install-debian.rst:20
#: ../../source/install/install-obs.rst:20
#: ../../source/install/install-rdo.rst:20
#: ../../source/install/install-ubuntu.rst:20
msgid "Install and configure components"
msgstr ""

#: ../../source/install/install-debian.rst:28
#: ../../source/install/install-obs.rst:25
#: ../../source/install/install-rdo.rst:26
#: ../../source/install/install-ubuntu.rst:24
msgid "Install the packages:"
msgstr ""

#: ../../source/install/install-debian.rst:36
msgid "Respond to prompts for web server configuration."
msgstr ""

#: ../../source/install/install-debian.rst:40
msgid ""
"The automatic configuration process generates a self-signed SSL certificate. "
"Consider obtaining an official certificate for production environments."
msgstr ""

#: ../../source/install/install-debian.rst:46
msgid ""
"There are two modes of installation. One using ``/horizon`` as the URL, "
"keeping your default vhost and only adding an Alias directive: this is the "
"default. The other mode will remove the default Apache vhost and install the "
"dashboard on the webroot. It was the only available option before the "
"Liberty release. If you prefer to set the Apache configuration manually,  "
"install the ``openstack-dashboard`` package instead of ``openstack-dashboard-"
"apache``."
msgstr ""

#: ../../source/install/install-debian.rst:58
#: ../../source/install/install-ubuntu.rst:32
msgid ""
"Edit the ``/etc/openstack-dashboard/local_settings.py`` file and complete "
"the following actions:"
msgstr ""

#: ../../source/install/install-debian.rst:62
#: ../../source/install/install-obs.rst:52
#: ../../source/install/install-rdo.rst:43
#: ../../source/install/install-ubuntu.rst:36
msgid ""
"Configure the dashboard to use OpenStack services on the ``controller`` node:"
msgstr ""

#: ../../source/install/install-debian.rst:72
#: ../../source/install/install-ubuntu.rst:46
msgid ""
"In the Dashboard configuration section, allow your hosts to access Dashboard:"
msgstr ""

#: ../../source/install/install-debian.rst:84
#: ../../source/install/install-ubuntu.rst:58
msgid ""
"Do not edit the ``ALLOWED_HOSTS`` parameter under the Ubuntu configuration "
"section."
msgstr ""

#: ../../source/install/install-debian.rst:86
#: ../../source/install/install-ubuntu.rst:60
msgid ""
"``ALLOWED_HOSTS`` can also be ``['*']`` to accept all hosts. This may be "
"useful for development work, but is potentially insecure and should not be "
"used in production. See the `Django documentation <https://docs."
"djangoproject.com/en/dev/ref/settings/#allowed-hosts>`_ for further "
"information."
msgstr ""

#: ../../source/install/install-debian.rst:93
#: ../../source/install/install-obs.rst:79
#: ../../source/install/install-rdo.rst:70
#: ../../source/install/install-ubuntu.rst:67
msgid "Configure the ``memcached`` session storage service:"
msgstr ""

#: ../../source/install/install-debian.rst:111
#: ../../source/install/install-obs.rst:97
#: ../../source/install/install-rdo.rst:88
#: ../../source/install/install-ubuntu.rst:85
msgid "Comment out any other session storage configuration."
msgstr ""

#: ../../source/install/install-debian.rst:113
#: ../../source/install/install-obs.rst:99
#: ../../source/install/install-rdo.rst:90
#: ../../source/install/install-ubuntu.rst:87
msgid "Enable the Identity API version 3:"
msgstr ""

#: ../../source/install/install-debian.rst:122
#: ../../source/install/install-obs.rst:108
#: ../../source/install/install-rdo.rst:99
#: ../../source/install/install-ubuntu.rst:96
msgid "Enable support for domains:"
msgstr ""

#: ../../source/install/install-debian.rst:131
#: ../../source/install/install-obs.rst:117
#: ../../source/install/install-rdo.rst:108
#: ../../source/install/install-ubuntu.rst:105
msgid "Configure API versions:"
msgstr ""

#: ../../source/install/install-debian.rst:144
#: ../../source/install/install-obs.rst:130
#: ../../source/install/install-rdo.rst:121
#: ../../source/install/install-ubuntu.rst:118
msgid ""
"Configure ``Default`` as the default domain for users that you create via "
"the dashboard:"
msgstr ""

#: ../../source/install/install-debian.rst:154
#: ../../source/install/install-obs.rst:140
#: ../../source/install/install-rdo.rst:131
#: ../../source/install/install-ubuntu.rst:128
msgid ""
"Configure ``user`` as the default role for users that you create via the "
"dashboard:"
msgstr ""

#: ../../source/install/install-debian.rst:164
#: ../../source/install/install-obs.rst:150
#: ../../source/install/install-rdo.rst:141
#: ../../source/install/install-ubuntu.rst:138
msgid ""
"If you chose networking option 1, disable support for layer-3 networking "
"services:"
msgstr ""

#: ../../source/install/install-debian.rst:185
#: ../../source/install/install-obs.rst:170
#: ../../source/install/install-rdo.rst:161
#: ../../source/install/install-ubuntu.rst:159
msgid "Optionally, configure the time zone:"
msgstr ""

#: ../../source/install/install-debian.rst:194
#: ../../source/install/install-obs.rst:179
#: ../../source/install/install-rdo.rst:170
#: ../../source/install/install-ubuntu.rst:168
msgid ""
"Replace ``TIME_ZONE`` with an appropriate time zone identifier. For more "
"information, see the `list of time zones <https://en.wikipedia.org/wiki/"
"List_of_tz_database_time_zones>`__."
msgstr ""

#: ../../source/install/install-debian.rst:200
#: ../../source/install/install-obs.rst:187
#: ../../source/install/install-rdo.rst:182
#: ../../source/install/install-ubuntu.rst:180
msgid "Finalize installation"
msgstr ""

#: ../../source/install/install-debian.rst:203
#: ../../source/install/install-ubuntu.rst:183
msgid "Reload the web server configuration:"
msgstr ""

#: ../../source/install/install-obs.rst:3
msgid "Install and configure for openSUSE and SUSE Linux Enterprise"
msgstr ""

#: ../../source/install/install-obs.rst:38
msgid "Configure the web server:"
msgstr ""

#: ../../source/install/install-obs.rst:48
msgid ""
"Edit the ``/srv/www/openstack-dashboard/openstack_dashboard/local/"
"local_settings.py`` file and complete the following actions:"
msgstr ""

#: ../../source/install/install-obs.rst:62
#: ../../source/install/install-rdo.rst:53
msgid "Allow your hosts to access the dashboard:"
msgstr ""

#: ../../source/install/install-obs.rst:73
msgid ""
"``ALLOWED_HOSTS`` can also be ``['*']`` to accept all hosts. This may be "
"useful for development work, but is potentially insecure and should not be "
"used in production. See `Django documentation <https://docs.djangoproject."
"com/en/dev/ref/settings/#allowed-hosts>`_ for further information."
msgstr ""

#: ../../source/install/install-obs.rst:191
#: ../../source/install/install-rdo.rst:187
msgid "Restart the web server and session storage service:"
msgstr ""

#: ../../source/install/install-obs.rst:201
#: ../../source/install/install-rdo.rst:197
msgid ""
"The ``systemctl restart`` command starts each service if not currently "
"running."
msgstr ""

#: ../../source/install/install-rdo.rst:3
msgid "Install and configure for Red Hat Enterprise Linux and CentOS"
msgstr ""

#: ../../source/install/install-rdo.rst:39
msgid ""
"Edit the ``/etc/openstack-dashboard/local_settings`` file and complete the "
"following actions:"
msgstr ""

#: ../../source/install/install-rdo.rst:64
msgid ""
"ALLOWED_HOSTS can also be ['*'] to accept all hosts. This may be useful for "
"development work, but is potentially insecure and should not be used in "
"production. See https://docs.djangoproject.com/en/dev/ref/settings/#allowed-"
"hosts for further information."
msgstr ""

#: ../../source/install/install-rdo.rst:174
msgid ""
"Add the following line to ``/etc/httpd/conf.d/openstack-dashboard.conf`` if "
"not included."
msgstr ""

#: ../../source/install/install-ubuntu.rst:3
msgid "Install and configure for Ubuntu"
msgstr ""

#: ../../source/install/install-ubuntu.rst:172
msgid ""
"Add the following line to ``/etc/apache2/conf-available/openstack-dashboard."
"conf`` if not included."
msgstr ""

#: ../../source/install/next-steps.rst:3
msgid "Next steps"
msgstr ""

#: ../../source/install/next-steps.rst:5
msgid "Your OpenStack environment now includes the dashboard."
msgstr ""

#: ../../source/install/next-steps.rst:7
msgid ""
"After you install and configure the dashboard, you can complete the "
"following tasks:"
msgstr ""

#: ../../source/install/next-steps.rst:10
msgid ""
"Provide users with a public IP address, a username, and a password so they "
"can access the dashboard through a web browser. In case of any SSL "
"certificate connection problems, point the server IP address to a domain "
"name, and give users access."
msgstr ""

#: ../../source/install/next-steps.rst:15
msgid ""
"Customize your dashboard. For details, see :doc:`/admin/customize-configure`."
msgstr ""

#: ../../source/install/next-steps.rst:17
msgid "Set up session storage. For derails, see :doc:`/admin/sessions`."
msgstr ""

#: ../../source/install/next-steps.rst:19
msgid ""
"To use the VNC client with the dashboard, the browser must support HTML5 "
"Canvas and HTML5 WebSockets."
msgstr ""

#: ../../source/install/next-steps.rst:22
msgid ""
"For details about browsers that support noVNC, see `README <https://github."
"com/novnc/noVNC/blob/master/README.md>`__ and `browser support <https://"
"github.com/novnc/noVNC/wiki/Browser-support>`__."
msgstr ""

#: ../../source/install/note_configuration_vary_by_distribution.txt:3
msgid ""
"Default configuration files vary by distribution. You might need to add "
"these sections and options rather than modifying existing sections and "
"options. Also, an ellipsis (``...``) in the configuration snippets indicates "
"potential default configuration options that you should retain."
msgstr ""

#: ../../source/install/plugin-registry.rst:5
msgid "Plugin Registry"
msgstr ""

#: ../../source/install/plugin-registry.rst:9
msgid ""
"Currently, Horizon plugins are responsible for their own compatibility. "
"Check the individual repos for information on support."
msgstr ""

#: ../../source/install/plugin-registry.rst:16
msgid "Plugin"
msgstr ""

#: ../../source/install/plugin-registry.rst:17
msgid "URL"
msgstr ""

#: ../../source/install/plugin-registry.rst:18
msgid "Launchpad"
msgstr ""

#: ../../source/install/plugin-registry.rst:19
msgid "Astara Dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:20
msgid "https://github.com/openstack/astara-horizon"
msgstr ""

#: ../../source/install/plugin-registry.rst:21
msgid "https://launchpad.net/astara"
msgstr ""

#: ../../source/install/plugin-registry.rst:22
msgid "BGPVPN Dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:23
msgid "https://github.com/openstack/networking-bgpvpn"
msgstr ""

#: ../../source/install/plugin-registry.rst:24
msgid "https://launchpad.net/bgpvpn"
msgstr ""

#: ../../source/install/plugin-registry.rst:25
msgid "Blazar Dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:26
msgid "https://github.com/openstack/blazar-dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:27
msgid "https://launchpad.net/blazar"
msgstr ""

#: ../../source/install/plugin-registry.rst:28
msgid "Cerberus Dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:29
msgid "https://github.com/openstack/cerberus-dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:30
msgid "https://launchpad.net/cerberus"
msgstr ""

#: ../../source/install/plugin-registry.rst:31
msgid "Cisco UI"
msgstr ""

#: ../../source/install/plugin-registry.rst:32
msgid "http://github.com/openstack/horizon-cisco-ui"
msgstr ""

#: ../../source/install/plugin-registry.rst:33
msgid "https://launchpad.net/horizon-cisco-ui"
msgstr ""

#: ../../source/install/plugin-registry.rst:34
msgid "Cloudkitty Dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:35
msgid "https://github.com/openstack/cloudkitty-dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:36
msgid "https://launchpad.net/cloudkitty"
msgstr ""

#: ../../source/install/plugin-registry.rst:37
msgid "Congress Dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:38
msgid "https://github.com/openstack/congress-dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:39
msgid "https://launchpad.net/congress"
msgstr ""

#: ../../source/install/plugin-registry.rst:40
msgid "Cue Dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:41
msgid "https://github.com/openstack/cue-dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:42
msgid "https://launchpad.net/cue-dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:43
msgid "Designate Dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:44
msgid "https://github.com/openstack/designate-dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:45
msgid "https://launchpad.net/designate-dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:46
msgid "Group Based Policy UI"
msgstr ""

#: ../../source/install/plugin-registry.rst:47
msgid "https://github.com/openstack/group-based-policy-ui"
msgstr ""

#: ../../source/install/plugin-registry.rst:48
msgid "https://launchpad.net/group-based-policy-ui"
msgstr ""

#: ../../source/install/plugin-registry.rst:49
msgid "Freezer Web UI"
msgstr ""

#: ../../source/install/plugin-registry.rst:50
msgid "https://github.com/openstack/freezer-web-ui"
msgstr ""

#: ../../source/install/plugin-registry.rst:51
msgid "https://launchpad.net/freezer"
msgstr ""

#: ../../source/install/plugin-registry.rst:52
msgid "Heat Dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:53
msgid "https://github.com/openstack/heat-dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:54
msgid "https://launchpad.net/heat-dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:55
msgid "Ironic UI"
msgstr ""

#: ../../source/install/plugin-registry.rst:56
msgid "https://github.com/openstack/ironic-ui"
msgstr ""

#: ../../source/install/plugin-registry.rst:57
msgid "https://launchpad.net/ironic-ui"
msgstr ""

#: ../../source/install/plugin-registry.rst:58
msgid "Karbor Dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:59
msgid "https://github.com/openstack/karbor-dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:60
msgid "https://launchpad.net/karbor-dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:61
msgid "Magnum UI"
msgstr ""

#: ../../source/install/plugin-registry.rst:62
msgid "http://github.com/openstack/magnum-ui"
msgstr ""

#: ../../source/install/plugin-registry.rst:63
msgid "https://launchpad.net/magnum-ui"
msgstr ""

#: ../../source/install/plugin-registry.rst:64
msgid "Manila UI"
msgstr ""

#: ../../source/install/plugin-registry.rst:65
msgid "http://github.com/openstack/manila-ui"
msgstr ""

#: ../../source/install/plugin-registry.rst:66
msgid "https://launchpad.net/manila-ui"
msgstr ""

#: ../../source/install/plugin-registry.rst:67
msgid "Mistral Dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:68
msgid "https://github.com/openstack/mistral-dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:69
msgid "https://launchpad.net/mistral"
msgstr ""

#: ../../source/install/plugin-registry.rst:70
msgid "Monasca UI"
msgstr ""

#: ../../source/install/plugin-registry.rst:71
msgid "https://github.com/openstack/monasca-ui"
msgstr ""

#: ../../source/install/plugin-registry.rst:72
msgid "https://launchpad.net/monasca"
msgstr ""

#: ../../source/install/plugin-registry.rst:73
msgid "Murano Dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:74
msgid "http://github.com/openstack/murano-dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:75
msgid "http://launchpad.net/murano"
msgstr ""

#: ../../source/install/plugin-registry.rst:76
msgid "Neutron FWaaS Dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:77
msgid "https://github.com/openstack/neutron-fwaas-dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:78
msgid "https://launchpad.net/neutron-fwaas-dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:79
msgid "Neutron LBaaS Dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:80
msgid "https://github.com/openstack/neutron-lbaas-dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:81
msgid "http://launchpad.net/octavia"
msgstr ""

#: ../../source/install/plugin-registry.rst:82
msgid "Neutron VPNaaS Dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:83
msgid "https://github.com/openstack/neutron-vpnaas-dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:84
msgid "https://launchpad.net/neutron-vpnaas-dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:85
msgid "Octavia Dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:86
msgid "https://github.com/openstack/octavia-dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:87
msgid "https://launchpad.net/octavia"
msgstr ""

#: ../../source/install/plugin-registry.rst:88
msgid "Sahara Dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:89
msgid "https://github.com/openstack/sahara-dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:90
msgid "https://launchpad.net/sahara"
msgstr ""

#: ../../source/install/plugin-registry.rst:91
msgid "Searchlight UI"
msgstr ""

#: ../../source/install/plugin-registry.rst:92
msgid "https://github.com/openstack/searchlight-ui"
msgstr ""

#: ../../source/install/plugin-registry.rst:93
msgid "https://launchpad.net/searchlight"
msgstr ""

#: ../../source/install/plugin-registry.rst:94
msgid "Senlin Dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:95
msgid "https://github.com/openstack/senlin-dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:96
msgid "http://launchpad.net/senlin-dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:97
msgid "Solum Dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:98
msgid "https://github.com/openstack/solum-dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:99
msgid "https://launchpad.net/solum"
msgstr ""

#: ../../source/install/plugin-registry.rst:100
msgid "Sticks Dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:101
msgid "https://github.com/openstack/sticks-dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:102
msgid "https://wiki.openstack.org/wiki/Sticks"
msgstr ""

#: ../../source/install/plugin-registry.rst:103
msgid "Tacker UI"
msgstr ""

#: ../../source/install/plugin-registry.rst:104
msgid "https://github.com/openstack/tacker-horizon"
msgstr ""

#: ../../source/install/plugin-registry.rst:105
msgid "https://launchpad.net/tacker"
msgstr ""

#: ../../source/install/plugin-registry.rst:106
msgid "TripleO UI"
msgstr ""

#: ../../source/install/plugin-registry.rst:107
msgid "https://github.com/openstack/tripleo-ui/"
msgstr ""

#: ../../source/install/plugin-registry.rst:108
msgid "https://launchpad.net/tripleo"
msgstr ""

#: ../../source/install/plugin-registry.rst:109
msgid "Trove Dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:110
msgid "https://github.com/openstack/trove-dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:111
msgid "https://launchpad.net/trove-dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:112
msgid "Vitrage Dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:113
msgid "http://github.com/openstack/vitrage-dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:114
msgid "https://launchpad.net/vitrage-dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:115
msgid "Watcher Dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:116
msgid "http://github.com/openstack/watcher-dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:117
msgid "https://launchpad.net/watcher-dashboard"
msgstr ""

#: ../../source/install/plugin-registry.rst:118
msgid "Zaqar UI"
msgstr ""

#: ../../source/install/plugin-registry.rst:119
msgid "http://github.com/openstack/zaqar-ui"
msgstr ""

#: ../../source/install/plugin-registry.rst:120
msgid "https://launchpad.net/zaqar-ui"
msgstr ""

#: ../../source/install/plugin-registry.rst:121
msgid "Zun UI"
msgstr ""

#: ../../source/install/plugin-registry.rst:122
msgid "https://github.com/openstack/zun-ui"
msgstr ""

#: ../../source/install/plugin-registry.rst:123
msgid "https://launchpad.net/zun-ui"
msgstr ""

#: ../../source/install/system-requirements.rst:5
msgid "The Queens release of horizon has the following dependencies."
msgstr ""

#: ../../source/install/system-requirements.rst:7
msgid "Python 2.7"
msgstr ""

#: ../../source/install/system-requirements.rst:8
msgid "Django 1.11"
msgstr ""

#: ../../source/install/system-requirements.rst:10
msgid ""
"Django 1.8 to 1.10 are also supported. Their support will be dropped in the "
"Rocky release."
msgstr ""

#: ../../source/install/system-requirements.rst:13
msgid ""
"An accessible `keystone <https://docs.openstack.org/keystone/queens/>`_ "
"endpoint"
msgstr ""

#: ../../source/install/system-requirements.rst:15
msgid ""
"All other services are optional. Horizon supports the following services as "
"of the Queens release. If the keystone endpoint for a service is configured, "
"horizon detects it and enables its support automatically."
msgstr ""

#: ../../source/install/system-requirements.rst:20
msgid "`cinder <https://docs.openstack.org/cinder/queens/>`_: Block Storage"
msgstr ""

#: ../../source/install/system-requirements.rst:21
msgid "`glance <https://docs.openstack.org/glance/queens/>`_: Image Management"
msgstr ""

#: ../../source/install/system-requirements.rst:22
msgid "`neutron <https://docs.openstack.org/neutron/queens/>`_: Networking"
msgstr ""

#: ../../source/install/system-requirements.rst:23
msgid "`nova <https://docs.openstack.org/nova/queens/>`_: Compute"
msgstr ""

#: ../../source/install/system-requirements.rst:24
msgid "`swift <https://docs.openstack.org/swift/queens/>`_: Object Storage"
msgstr ""

#: ../../source/install/system-requirements.rst:25
msgid ""
"Horizon also supports many other OpenStack services via plugins. For more "
"information, see the :ref:`install-plugin-registry`."
msgstr ""

#: ../../source/install/verify-debian.rst:3
msgid "Verify operation for Debian"
msgstr ""

#: ../../source/install/verify-debian.rst:5
#: ../../source/install/verify-obs.rst:5 ../../source/install/verify-rdo.rst:5
#: ../../source/install/verify-ubuntu.rst:5
msgid "Verify operation of the dashboard."
msgstr ""

#: ../../source/install/verify-debian.rst:7
#: ../../source/install/verify-obs.rst:7
msgid "Access the dashboard using a web browser at ``http://controller/``."
msgstr ""

#: ../../source/install/verify-debian.rst:10
#: ../../source/install/verify-obs.rst:10
#: ../../source/install/verify-rdo.rst:10
#: ../../source/install/verify-ubuntu.rst:10
msgid ""
"Authenticate using ``admin`` or ``demo`` user and ``default`` domain "
"credentials."
msgstr ""

#: ../../source/install/verify-obs.rst:3
msgid "Verify operation for openSUSE and SUSE Linux Enterprise"
msgstr ""

#: ../../source/install/verify-rdo.rst:3
msgid "Verify operation for Red Hat Enterprise Linux and CentOS"
msgstr ""

#: ../../source/install/verify-rdo.rst:7
msgid ""
"Access the dashboard using a web browser at ``http://controller/dashboard``."
msgstr ""

#: ../../source/install/verify-ubuntu.rst:3
msgid "Verify operation for Ubuntu"
msgstr ""

#: ../../source/install/verify-ubuntu.rst:7
msgid ""
"Access the dashboard using a web browser at ``http://controller/horizon``."
msgstr ""
