oslo.db/releasenotes/source/locale/en_GB/LC_MESSAGES/releasenotes.po

281 lines
11 KiB
Plaintext

# Andi Chandler <andi@gowling.com>, 2016. #zanata
# Andi Chandler <andi@gowling.com>, 2017. #zanata
# Andi Chandler <andi@gowling.com>, 2018. #zanata
msgid ""
msgstr ""
"Project-Id-Version: oslo.db Release Notes\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-02-20 22:06+0000\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2018-02-18 01:24+0000\n"
"Last-Translator: Andi Chandler <andi@gowling.com>\n"
"Language-Team: English (United Kingdom)\n"
"Language: en_GB\n"
"X-Generator: Zanata 4.3.3\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
msgid "2.6.0-9"
msgstr "2.6.0-9"
msgid "4.12.0"
msgstr "4.12.0"
msgid "4.15.0"
msgstr "4.15.0"
msgid "4.19.0"
msgstr "4.19.0"
msgid "4.22.0"
msgstr "4.22.0"
msgid "4.26.0"
msgstr "4.26.0"
msgid "4.30.0"
msgstr "4.30.0"
msgid "4.6.0"
msgstr "4.6.0"
msgid "4.8.0"
msgstr "4.8.0"
msgid "4.9.0"
msgstr "4.9.0"
msgid "Bug Fixes"
msgstr "Bug Fixes"
msgid ""
"Decorator ``oslo_db.api.wrap_db_retry`` now defaults to 10 retries. "
"Previously the number of attempts was 0, and users had to explicitly pass "
"``max_retry_interval`` value greater than 0 to actually enable retries on "
"errors."
msgstr ""
"Decorator ``oslo_db.api.wrap_db_retry`` now defaults to 10 retries. "
"Previously the number of attempts was 0, and users had to explicitly pass "
"``max_retry_interval`` value greater than 0 to actually enable retries on "
"errors."
msgid "Deprecation Notes"
msgstr "Deprecation Notes"
msgid "For details, please see the following LP:"
msgstr "For details, please see the following LP:"
msgid "Introduce reno for deployer release notes."
msgstr "Introduce reno for deployer release notes."
msgid ""
"It is strongly recommended to use the `PyMySQL <https://pypi.python.org/pypi/"
"PyMySQL>`__ driver when connecting to a MySQL-compatible database to ensure "
"the best compatibility with the concurrency library eventlet. To use "
"PyMySQL, ensure the connection URL is specified with ``mysql+pymysql://`` as "
"the scheme."
msgstr ""
"It is strongly recommended to use the `PyMySQL <https://pypi.python.org/pypi/"
"PyMySQL>`__ driver when connecting to a MySQL-compatible database to ensure "
"the best compatibility with the concurrency library eventlet. To use "
"PyMySQL, ensure the connection URL is specified with ``mysql+pymysql://`` as "
"the scheme."
msgid "Liberty Series Release Notes"
msgstr "Liberty Series Release Notes"
msgid "Mitaka Series Release Notes"
msgstr "Mitaka Series Release Notes"
msgid "New Features"
msgstr "New Features"
msgid "Newton Series Release Notes"
msgstr "Newton Series Release Notes"
msgid "Ocata Series Release Notes"
msgstr "Ocata Series Release Notes"
msgid "Other Notes"
msgstr "Other Notes"
msgid "Pike Series Release Notes"
msgstr "Pike Series Release Notes"
msgid ""
"PyMySQL is a default MySQL DB API driver for oslo.db, as well as for the "
"whole OpenStack. So far it was possible to use MySQL-python as an "
"alternative DB API driver. This driver is no longer being tested in this "
"release, hence it should be considered unsupported. Please switch to "
"PyMySQL, which is an adequate replacement. Refer to https://wiki.openstack."
"org/wiki/PyMySQL_evaluation for details."
msgstr ""
"PyMySQL is a default MySQL DB API driver for oslo.db, as well as for the "
"whole OpenStack. So far it was possible to use MySQL-python as an "
"alternative DB API driver. This driver is no longer being tested in this "
"release, hence it should be considered unsupported. Please switch to "
"PyMySQL, which is an adequate replacement. Refer to https://wiki.openstack."
"org/wiki/PyMySQL_evaluation for details."
msgid "Queens Series Release Notes"
msgstr "Queens Series Release Notes"
msgid ""
"Repaired the \"synchronous_reader\" modifier of enginefacade so that it "
"refers to the \"writer\" engine when set to True, thereby allowing "
"\"synchronous\" behavior with the writer. When set to False, this is "
"\"asynchronous\", so this should be associated with the async engines. The "
"flag had the reverse behavior previously."
msgstr ""
"Repaired the \"synchronous_reader\" modifier of enginefacade so that it "
"refers to the \"writer\" engine when set to True, thereby allowing "
"\"synchronous\" behaviour with the writer. When set to False, this is "
"\"asynchronous\", so this should be associated with the async engines. The "
"flag had the reverse behaviour previously."
msgid ""
"The allowed values for the ``connection_debug`` option are now restricted to "
"the range between 0 and 100 (inclusive). Previously a number lower than 0 or "
"higher than 100 could be given without error. But now, a "
"``ConfigFileValueError`` will be raised when the option value is outside "
"this range."
msgstr ""
"The allowed values for the ``connection_debug`` option are now restricted to "
"the range between 0 and 100 (inclusive). Previously a number lower than 0 or "
"higher than 100 could be given without error. But now, a "
"``ConfigFileValueError`` will be raised when the option value is outside "
"this range."
msgid ""
"The configuration option ``idle_timeout`` is now deprecated and has been "
"renamed to ``connection_recycle_time``, including within the main oslo.db "
"options, as well as in the keyword arguments to ``engines.create_engine()``, "
"``enginefacade.configure()`` and ``enginefacade.configure_defaults()``. The "
"new name more accurately describes what this option does, in that it is not "
"directly related to the \"idle\" time of the connection itself, nor is the "
"connection disconnected at any specific time. It refers to a rule stating "
"that any connection which has been present more than N seconds as a member "
"of the connection pool will be automatically discarded and replaced the next "
"time it is checked out from the pool."
msgstr ""
"The configuration option ``idle_timeout`` is now deprecated and has been "
"renamed to ``connection_recycle_time``, including within the main oslo.db "
"options, as well as in the keyword arguments to ``engines.create_engine()``, "
"``enginefacade.configure()`` and ``enginefacade.configure_defaults()``. The "
"new name more accurately describes what this option does, in that it is not "
"directly related to the \"idle\" time of the connection itself, nor is the "
"connection disconnected at any specific time. It refers to a rule stating "
"that any connection which has been present more than N seconds as a member "
"of the connection pool will be automatically discarded and replaced the next "
"time it is checked out from the pool."
msgid ""
"The configuration option ``sqlite_db`` is now deprecated and will be removed "
"in the future. Please use configuration option ``connection`` or "
"``slave_connection`` to connect to the database."
msgstr ""
"The configuration option ``sqlite_db`` is now deprecated and will be removed "
"in the future. Please use configuration option ``connection`` or "
"``slave_connection`` to connect to the database."
msgid ""
"The configuration option ``sqlite_db`` is removed. Pease use configuration "
"option ``connection`` or ``slave_connection`` to connect to the database."
msgstr ""
"The configuration option ``sqlite_db`` is removed. Please use configuration "
"option ``connection`` or ``slave_connection`` to connect to the database."
msgid ""
"The default value of ``max_overflow`` config option has been increased from "
"10 to 50 in order to allow OpenStack services heavily using DBs to better "
"handle spikes of concurrent requests and lower the probability of getting a "
"pool timeout issue."
msgstr ""
"The default value of ``max_overflow`` config option has been increased from "
"10 to 50 in order to allow OpenStack services heavily using DBs to better "
"handle spikes of concurrent requests and lower the probability of getting a "
"pool timeout issue."
msgid ""
"This change potentially leads to increasing of the number of open "
"connections to an RDBMS server. Depending on the configuration, you may see "
"\"too many connections\" errors in logs of OpenStack services / RDBMS "
"server. The max limit of connections can be set by the means of these config "
"options:"
msgstr ""
"This change potentially leads to increasing of the number of open "
"connections to an RDBMS server. Depending on the configuration, you may see "
"\"too many connections\" errors in logs of OpenStack services / RDBMS "
"server. The max limit of connections can be set by the means of these config "
"options:"
msgid "Unreleased Release Notes"
msgstr "Unreleased Release Notes"
msgid "Upgrade Notes"
msgstr "Upgrade Notes"
msgid "and the ML thread:"
msgstr "and the ML thread:"
msgid ""
"base test classes from ``oslo_db.sqlalchemy.test_base`` are deprecated in "
"favor of new fixtures introduced in ``oslo_db.sqlalchemy.test_fixtures`` "
"module"
msgstr ""
"base test classes from ``oslo_db.sqlalchemy.test_base`` are deprecated in "
"flavour of new fixtures introduced in ``oslo_db.sqlalchemy.test_fixtures`` "
"module"
msgid ""
"class ``InsertFromSelect`` from module ``oslo_db.sqlalchemy.utils`` is "
"deprecated in favor of ``sqlalchemy.sql.expression.Insert.from_select()`` "
"method of Insert expression, that is available in SQLAlchemy versions 1.0.0 "
"and newer"
msgstr ""
"class ``InsertFromSelect`` from module ``oslo_db.sqlalchemy.utils`` is "
"deprecated in favor of ``sqlalchemy.sql.expression.Insert.from_select()`` "
"method of Insert expression, that is available in SQLAlchemy versions 1.0.0 "
"and newer"
msgid ""
"enginefacade decorators can now be used for class and instance methods, "
"which implicitly receive the first positional argument. Previously, it was "
"required that all decorated functions receive a context value as the first "
"argument."
msgstr ""
"enginefacade decorators can now be used for class and instance methods, "
"which implicitly receive the first positional argument. Previously, it was "
"required that all decorated functions receive a context value as the first "
"argument."
msgid ""
"http://dev.mysql.com/doc/refman/5.7/en/server-system-variables."
"html#sysvar_max_connections http://www.postgresql.org/docs/current/static/"
"runtime-config-connection.html#GUC-MAX-CONNECTIONS"
msgstr ""
"http://dev.mysql.com/doc/refman/5.7/en/server-system-variables."
"html#sysvar_max_connections http://www.postgresql.org/docs/current/static/"
"runtime-config-connection.html#GUC-MAX-CONNECTIONS"
msgid ""
"http://lists.openstack.org/pipermail/openstack-dev/2015-December/082717.html"
msgstr ""
"http://lists.openstack.org/pipermail/openstack-dev/2015-December/082717.html"
msgid "https://bugs.launchpad.net/oslo.db/+bug/1535375"
msgstr "https://bugs.launchpad.net/oslo.db/+bug/1535375"
msgid "oslo.db Release Notes"
msgstr "oslo.db Release Notes"
msgid ""
"oslo.db now logs a warning when the connection URL does not explicitly "
"mention a driver. The default driver is still used, but in some cases, such "
"as MySQL, the default is incompatible with the concurrency library eventlet."
msgstr ""
"oslo.db now logs a warning when the connection URL does not explicitly "
"mention a driver. The default driver is still used, but in some cases, such "
"as MySQL, the default is incompatible with the concurrency library eventlet."