From: Thomas Goirand Date: Thu, 19 Dec 2013 08:03:50 +0000 (+0800) Subject: Kills the "cinder enable" debconf feature. (Closes: #732547). X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=8c71baf96d4724a17ed25f039ec31b129418e99e;p=openstack-build%2Fcinder-build.git Kills the "cinder enable" debconf feature. (Closes: #732547). Updates the Spanish debconf translation thanks to Matias A. Bellone (Closes: #732535). (cherry picked from commit e7a4a061f990c20cde5cf2fc6577dc0a31672fa1) Conflicts: debian/changelog Rewritten-From: da58b5855c6c591ab6d51e08c85e073b7d22683d --- diff --git a/xenial/debian/changelog b/xenial/debian/changelog index 7ad5b7f1a..d1b08f2ab 100644 --- a/xenial/debian/changelog +++ b/xenial/debian/changelog @@ -1,9 +1,17 @@ -cinder (2014.1~b1-1) experimental; urgency=low +cinder (2013.2.1-1) unstable; urgency=medium * New upstream release (Icehouse beta 1). -- Thomas Goirand Mon, 09 Dec 2013 21:07:33 +0800 +cinder (2013.2.1-2) unstable; urgency=medium + + * Kills the "cinder enable" debconf feature. (Closes: #732547) + * Adds a Spanish debconf translation thanks to Matias A. Bellone + (Closes: #732535). + + -- Thomas Goirand Thu, 19 Dec 2013 15:46:34 +0800 + cinder (2013.2-2) unstable; urgency=medium * Updated debconf translations with warm thanks to: diff --git a/xenial/debian/cinder-api.init b/xenial/debian/cinder-api.init index 05a5b4daa..d62979b86 100644 --- a/xenial/debian/cinder-api.init +++ b/xenial/debian/cinder-api.init @@ -12,7 +12,7 @@ # virtual machine instances ### END INIT INFO -# Author: Julien Danjou +# Author: Julien Danjou , Thomas Goirand # PATH should only include /usr/* if it runs after the mountnfs.sh script PATH=/sbin:/usr/sbin:/bin:/usr/bin @@ -24,7 +24,6 @@ PIDFILE=/var/run/$NAME.pid SCRIPTNAME=/etc/init.d/$NAME CINDER_USER=cinder LOCK_DIR=/var/lock/cinder/ -DEFAULTS_FILE=/etc/default/cinder-common # Exit if the package is not installed [ -x $DAEMON ] || exit 0 @@ -34,21 +33,7 @@ chown ${CINDER_USER} ${LOCK_DIR} . /lib/lsb/init-functions -# Read configuration variable file if it is present -if [ -s $DEFAULTS_FILE ]; then - . $DEFAULTS_FILE - case "x$CINDER_ENABLE" in - xtrue|xfalse) ;; - *) log_failure_msg "Value of CINDER_ENABLE in $DEFAULTS_FILE must be either 'true' or 'false';" - log_failure_msg "not starting $NAME daemon." - exit 1 - ;; - esac -fi - - -do_start() -{ +do_start(){ start-stop-daemon --start --quiet --background --chuid ${CINDER_USER}:cinder --make-pidfile --pidfile $PIDFILE --startas $DAEMON --test > /dev/null \ || return 1 start-stop-daemon --start --quiet --background --chuid ${CINDER_USER}:cinder --make-pidfile --pidfile $PIDFILE --startas $DAEMON -- \ @@ -56,8 +41,7 @@ do_start() || return 2 } -do_stop() -{ +do_stop() { start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE RETVAL="$?" rm -f $PIDFILE @@ -65,54 +49,47 @@ do_stop() } case "$1" in - start) - if "$CINDER_ENABLE"; then - log_daemon_msg "Starting $DESC" "$NAME" - do_start - case "$?" in - 0|1) log_end_msg 0 ;; - 2) log_end_msg 1 ;; - esac - else - log_warning_msg "cinder daemons not enabled in $DEFAULTS_FILE, not starting..." - fi - ;; - stop) +start) + log_daemon_msg "Starting $DESC" "$NAME" + do_start + case "$?" in + 0|1) log_end_msg 0 ;; + 2) log_end_msg 1 ;; + esac +;; +stop) log_daemon_msg "Stopping $DESC" "$NAME" do_stop case "$?" in 0|1) log_end_msg 0 ;; 2) log_end_msg 1 ;; esac +;; +status) + status_of_proc "$DAEMON" "$NAME" && exit 0 || exit $? +;; +restart|force-reload) + log_daemon_msg "Restarting $DESC" "$NAME" + do_stop + case "$?" in + 0|1) + do_start + case "$?" in + 0) log_end_msg 0 ;; + 1) log_end_msg 1 ;; # Old process is still running + *) log_end_msg 1 ;; # Failed to start + esac ;; - status) - status_of_proc "$DAEMON" "$NAME" && exit 0 || exit $? - ;; - restart|force-reload) - if "$CINDER_ENABLE"; then - log_daemon_msg "Restarting $DESC" "$NAME" - do_stop - case "$?" in - 0|1) - do_start - case "$?" in - 0) log_end_msg 0 ;; - 1) log_end_msg 1 ;; # Old process is still running - *) log_end_msg 1 ;; # Failed to start - esac - ;; - *) - # Failed to stop - log_end_msg 1 - ;; - esac - else - log_warning_msg "cinder daemons not enabled in $DEFAULTS_FILE, not starting..." - fi - ;; - - *) + *) + # Failed to stop + log_end_msg 1 + ;; + esac +;; +*) echo "Usage: $SCRIPTNAME {start|stop|status|restart|force-reload}" >&2 exit 3 - ;; +;; esac + +exit 0 diff --git a/xenial/debian/cinder-backup.init b/xenial/debian/cinder-backup.init index 2f3b9b728..1624432e7 100644 --- a/xenial/debian/cinder-backup.init +++ b/xenial/debian/cinder-backup.init @@ -23,7 +23,6 @@ PIDFILE=/var/run/$NAME.pid SCRIPTNAME=/etc/init.d/$NAME CINDER_USER=cinder LOCK_DIR=/var/lock/cinder/ -DEFAULTS_FILE=/etc/default/cinder-common # Exit if the package is not installed [ -x $DAEMON ] || exit 0 @@ -33,21 +32,7 @@ chown ${CINDER_USER} ${LOCK_DIR} . /lib/lsb/init-functions -# Read configuration variable file if it is present -if [ -s $DEFAULTS_FILE ]; then - . $DEFAULTS_FILE - case "x$CINDER_ENABLE" in - xtrue|xfalse) ;; - *) log_failure_msg "Value of CINDER_ENABLE in $DEFAULTS_FILE must be either 'true' or 'false';" - log_failure_msg "not starting $NAME daemon." - exit 1 - ;; - esac -fi - - -do_start() -{ +do_start() { start-stop-daemon --start --quiet --background --chuid ${CINDER_USER}:cinder --make-pidfile --pidfile $PIDFILE --startas $DAEMON --test > /dev/null \ || return 1 start-stop-daemon --start --quiet --background --chuid ${CINDER_USER}:cinder --make-pidfile --pidfile $PIDFILE --startas $DAEMON -- \ @@ -55,8 +40,7 @@ do_start() || return 2 } -do_stop() -{ +do_stop() { start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE RETVAL="$?" rm -f $PIDFILE @@ -64,54 +48,47 @@ do_stop() } case "$1" in - start) - if "$CINDER_ENABLE"; then - log_daemon_msg "Starting $DESC" "$NAME" - do_start - case "$?" in - 0|1) log_end_msg 0 ;; - 2) log_end_msg 1 ;; - esac - else - log_warning_msg "cinder daemons not enabled in $DEFAULTS_FILE, not starting..." - fi - ;; - stop) +start) + log_daemon_msg "Starting $DESC" "$NAME" + do_start + case "$?" in + 0|1) log_end_msg 0 ;; + 2) log_end_msg 1 ;; + esac +;; +stop) log_daemon_msg "Stopping $DESC" "$NAME" do_stop case "$?" in 0|1) log_end_msg 0 ;; 2) log_end_msg 1 ;; esac - ;; - status) - status_of_proc "$DAEMON" "$NAME" && exit 0 || exit $? - ;; - restart|force-reload) - if "$CINDER_ENABLE"; then - log_daemon_msg "Restarting $DESC" "$NAME" - do_stop - case "$?" in - 0|1) - do_start - case "$?" in - 0) log_end_msg 0 ;; - 1) log_end_msg 1 ;; # Old process is still running - *) log_end_msg 1 ;; # Failed to start - esac - ;; - *) - # Failed to stop - log_end_msg 1 - ;; - esac - else - log_warning_msg "cinder daemons not enabled in $DEFAULTS_FILE, not starting..." - fi - ;; - - *) +;; +status) + status_of_proc "$DAEMON" "$NAME" && exit 0 || exit $? +;; +restart|force-reload) + log_daemon_msg "Restarting $DESC" "$NAME" + do_stop + case "$?" in + 0|1) + do_start + case "$?" in + 0) log_end_msg 0 ;; + 1) log_end_msg 1 ;; # Old process is still running + *) log_end_msg 1 ;; # Failed to start + esac + ;; + *) + # Failed to stop + log_end_msg 1 + ;; + esac +;; +*) echo "Usage: $SCRIPTNAME {start|stop|status|restart|force-reload}" >&2 exit 3 - ;; +;; esac + +exit 0 diff --git a/xenial/debian/cinder-common.config.in b/xenial/debian/cinder-common.config.in index 23b24951f..80a9a3fa6 100644 --- a/xenial/debian/cinder-common.config.in +++ b/xenial/debian/cinder-common.config.in @@ -3,32 +3,15 @@ set -e . /usr/share/debconf/confmodule -CINDER_COM_DEF=/etc/default/cinder-common CINDER_CONF=/etc/cinder/cinder.conf CINDER_API=/etc/cinder/api-paste.ini #PKGOS-INCLUDE# -manage_cinder_enable () { - pkgos_read_config ${CINDER_COM_DEF} NO_SECTION CINDER_ENABLE cinder/start_services - CINDER_ENABLE=${RET} - if ! [ "${CINDER_ENABLE}" = "false" ] ; then - CINDER_ENABLE=true - fi - # Write a default config file - echo "# defaults file for cinder daemons - -# start cinder daemons from init.d script? -# only allowed values are \"true\" and \"false\", -# any change to this file will be reset on upgrades. -CINDER_ENABLE=${CINDER_ENABLE}" >${CINDER_COM_DEF} -} - pkgos_var_user_group cinder pkgos_dbc_read_conf -pkg cinder-common ${CINDER_CONF} DEFAULT sql_connection cinder $@ pkgos_rabbit_read_conf ${CINDER_CONF} DEFAULT cinder pkgos_read_admin_creds ${CINDER_API} filter:authtoken cinder -manage_cinder_enable pkgos_inifile get ${CINDER_CONF} DEFAULT volume_group if [ -n "${RET}" ] && [ ! "${RET}" = "NOT_FOUND" ] ; then diff --git a/xenial/debian/cinder-common.templates b/xenial/debian/cinder-common.templates index 40d0c1a38..06c23fdac 100644 --- a/xenial/debian/cinder-common.templates +++ b/xenial/debian/cinder-common.templates @@ -7,13 +7,6 @@ # Even minor modifications require translation updates and such # changes should be coordinated with translators and reviewers. -Template: cinder/start_services -Type: boolean -Default: true -_Description: Start Cinder services at boot? - Please choose whether you want to start Cinder services when the - machine is booted up. - Template: cinder/configure_db Type: boolean Default: false diff --git a/xenial/debian/cinder-scheduler.init b/xenial/debian/cinder-scheduler.init index 702f3d50d..e6a4a66f2 100644 --- a/xenial/debian/cinder-scheduler.init +++ b/xenial/debian/cinder-scheduler.init @@ -12,7 +12,7 @@ # virtual machine instances ### END INIT INFO -# Author: Julien Danjou +# Author: Julien Danjou , Thomas Goirand # PATH should only include /usr/* if it runs after the mountnfs.sh script PATH=/sbin:/usr/sbin:/bin:/usr/bin @@ -24,7 +24,6 @@ PIDFILE=/var/run/$NAME.pid SCRIPTNAME=/etc/init.d/$NAME CINDER_USER=cinder LOCK_DIR=/var/lock/cinder/ -DEFAULTS_FILE=/etc/default/cinder-common # Exit if the package is not installed [ -x $DAEMON ] || exit 0 @@ -34,21 +33,7 @@ chown ${CINDER_USER} ${LOCK_DIR} . /lib/lsb/init-functions -# Read configuration variable file if it is present -if [ -s $DEFAULTS_FILE ]; then - . $DEFAULTS_FILE - case "x$CINDER_ENABLE" in - xtrue|xfalse) ;; - *) log_failure_msg "Value of CINDER_ENABLE in $DEFAULTS_FILE must be either 'true' or 'false';" - log_failure_msg "not starting $NAME daemon." - exit 1 - ;; - esac -fi - - -do_start() -{ +do_start() { start-stop-daemon --start --quiet --background --chuid ${CINDER_USER}:cinder --make-pidfile --pidfile $PIDFILE --startas $DAEMON --test > /dev/null \ || return 1 start-stop-daemon --start --quiet --background --chuid ${CINDER_USER}:cinder --make-pidfile --pidfile $PIDFILE --startas $DAEMON -- \ @@ -56,8 +41,7 @@ do_start() || return 2 } -do_stop() -{ +do_stop() { start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE RETVAL="$?" rm -f $PIDFILE @@ -65,54 +49,47 @@ do_stop() } case "$1" in - start) - if "$CINDER_ENABLE"; then - log_daemon_msg "Starting $DESC" "$NAME" - do_start - case "$?" in - 0|1) log_end_msg 0 ;; - 2) log_end_msg 1 ;; - esac - else - log_warning_msg "cinder daemons not enabled in $DEFAULTS_FILE, not starting..." - fi - ;; - stop) +start) + log_daemon_msg "Starting $DESC" "$NAME" + do_start + case "$?" in + 0|1) log_end_msg 0 ;; + 2) log_end_msg 1 ;; + esac +;; +stop) log_daemon_msg "Stopping $DESC" "$NAME" do_stop case "$?" in 0|1) log_end_msg 0 ;; 2) log_end_msg 1 ;; esac +;; +status) + status_of_proc "$DAEMON" "$NAME" && exit 0 || exit $? +;; +restart|force-reload) + log_daemon_msg "Restarting $DESC" "$NAME" + do_stop + case "$?" in + 0|1) + do_start + case "$?" in + 0) log_end_msg 0 ;; + 1) log_end_msg 1 ;; # Old process is still running + *) log_end_msg 1 ;; # Failed to start + esac ;; - status) - status_of_proc "$DAEMON" "$NAME" && exit 0 || exit $? - ;; - restart|force-reload) - if "$CINDER_ENABLE"; then - log_daemon_msg "Restarting $DESC" "$NAME" - do_stop - case "$?" in - 0|1) - do_start - case "$?" in - 0) log_end_msg 0 ;; - 1) log_end_msg 1 ;; # Old process is still running - *) log_end_msg 1 ;; # Failed to start - esac - ;; - *) - # Failed to stop - log_end_msg 1 - ;; - esac - else - log_warning_msg "cinder daemons not enabled in $DEFAULTS_FILE, not starting..." - fi - ;; - - *) + *) + # Failed to stop + log_end_msg 1 + ;; + esac +;; +*) echo "Usage: $SCRIPTNAME {start|stop|status|restart|force-reload}" >&2 exit 3 - ;; +;; esac + +exit 0 diff --git a/xenial/debian/cinder-volume.init b/xenial/debian/cinder-volume.init index fdf7e88df..a23f89311 100644 --- a/xenial/debian/cinder-volume.init +++ b/xenial/debian/cinder-volume.init @@ -24,7 +24,6 @@ PIDFILE=/var/run/$NAME.pid SCRIPTNAME=/etc/init.d/$NAME CINDER_USER=cinder LOCK_DIR=/var/lock/cinder/ -DEFAULTS_FILE=/etc/default/cinder-common # Exit if the package is not installed [ -x $DAEMON ] || exit 0 @@ -34,21 +33,7 @@ chown ${CINDER_USER} ${LOCK_DIR} . /lib/lsb/init-functions -# Read configuration variable file if it is present -if [ -s $DEFAULTS_FILE ]; then - . $DEFAULTS_FILE - case "x$CINDER_ENABLE" in - xtrue|xfalse) ;; - *) log_failure_msg "Value of CINDER_ENABLE in $DEFAULTS_FILE must be either 'true' or 'false';" - log_failure_msg "not starting $NAME daemon." - exit 1 - ;; - esac -fi - - -do_start() -{ +do_start() { start-stop-daemon --start --quiet --background --chuid ${CINDER_USER}:cinder --make-pidfile --pidfile $PIDFILE --startas $DAEMON --test > /dev/null \ || return 1 start-stop-daemon --start --quiet --background --chuid ${CINDER_USER}:cinder --make-pidfile --pidfile $PIDFILE --startas $DAEMON -- \ @@ -56,8 +41,7 @@ do_start() || return 2 } -do_stop() -{ +do_stop() { start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE RETVAL="$?" rm -f $PIDFILE @@ -65,19 +49,15 @@ do_stop() } case "$1" in - start) - if "$CINDER_ENABLE"; then - log_daemon_msg "Starting $DESC" "$NAME" - do_start - case "$?" in - 0|1) log_end_msg 0 ;; - 2) log_end_msg 1 ;; - esac - else - log_warning_msg "cinder daemons not enabled in $DEFAULTS_FILE, not starting..." - fi - ;; - stop) +start) + log_daemon_msg "Starting $DESC" "$NAME" + do_start + case "$?" in + 0|1) log_end_msg 0 ;; + 2) log_end_msg 1 ;; + esac +;; +stop) log_daemon_msg "Stopping $DESC" "$NAME" do_stop case "$?" in @@ -85,34 +65,31 @@ case "$1" in 2) log_end_msg 1 ;; esac ;; - status) - status_of_proc "$DAEMON" "$NAME" && exit 0 || exit $? - ;; - restart|force-reload) - if "$CINDER_ENABLE"; then - log_daemon_msg "Restarting $DESC" "$NAME" - do_stop - case "$?" in - 0|1) - do_start - case "$?" in - 0) log_end_msg 0 ;; - 1) log_end_msg 1 ;; # Old process is still running - *) log_end_msg 1 ;; # Failed to start - esac - ;; - *) - # Failed to stop - log_end_msg 1 - ;; - esac - else - log_warning_msg "cinder daemons not enabled in $DEFAULTS_FILE, not starting..." - fi - ;; - - *) +status) + status_of_proc "$DAEMON" "$NAME" && exit 0 || exit $? +;; +restart|force-reload) + log_daemon_msg "Restarting $DESC" "$NAME" + do_stop + case "$?" in + 0|1) + do_start + case "$?" in + 0) log_end_msg 0 ;; + 1) log_end_msg 1 ;; # Old process is still running + *) log_end_msg 1 ;; # Failed to start + esac + ;; + *) + # Failed to stop + log_end_msg 1 + ;; + esac +;; +*) echo "Usage: $SCRIPTNAME {start|stop|status|restart|force-reload}" >&2 exit 3 - ;; +;; esac + +exit 0 diff --git a/xenial/debian/po/cs.po b/xenial/debian/po/cs.po index 7a9e2e03f..f4786aa70 100644 --- a/xenial/debian/po/cs.po +++ b/xenial/debian/po/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: cinder 2013.1.2-4\n" "Report-Msgid-Bugs-To: cinder@packages.debian.org\n" -"POT-Creation-Date: 2013-10-09 23:29+0800\n" +"POT-Creation-Date: 2013-12-19 16:02+0800\n" "PO-Revision-Date: 2013-08-28 12:31+0200\n" "Last-Translator: Michal Simunek \n" "Language-Team: Czech \n" @@ -19,28 +19,12 @@ msgstr "" #. Type: boolean #. Description #: ../cinder-common.templates:2001 -msgid "Start Cinder services at boot?" -msgstr "Spouštět služby cinder při zavádění?" - -#. Type: boolean -#. Description -#: ../cinder-common.templates:2001 -msgid "" -"Please choose whether you want to start Cinder services when the machine is " -"booted up." -msgstr "" -"Zvolte si prosím, zda chcete, aby se služby Cinder spouštěly při zavádění " -"systému." - -#. Type: boolean -#. Description -#: ../cinder-common.templates:3001 msgid "Set up a database for Cinder?" msgstr "Nastavit databázi pro Cinder?" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 +#: ../cinder-common.templates:2001 msgid "" "No database has been set up for Cinder to use. Before continuing, you should " "make sure you have the following information:" @@ -50,7 +34,7 @@ msgstr "" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 +#: ../cinder-common.templates:2001 msgid "" " * the type of database that you want to use;\n" " * the database server hostname (that server must allow TCP connections from " @@ -65,7 +49,7 @@ msgstr "" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 +#: ../cinder-common.templates:2001 msgid "" "If some of these requirements are missing, do not choose this option and run " "with regular SQLite support." @@ -73,7 +57,7 @@ msgstr "" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 +#: ../cinder-common.templates:2001 msgid "" "You can change this setting later on by running \"dpkg-reconfigure -plow " "cinder\"." @@ -83,13 +67,13 @@ msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:4001 +#: ../cinder-common.templates:3001 msgid "Authentication server hostname:" msgstr "Název hostitele autentizačního serveru:" #. Type: string #. Description -#: ../cinder-common.templates:4001 +#: ../cinder-common.templates:3001 msgid "" "Please specify the hostname of the authentication server. Typically this is " "also the hostname of the OpenStack Identity Service (Keystone)." @@ -106,7 +90,7 @@ msgstr "" #. You're advised to either keep "tenant" without translating it #. or keep it aside with your translation. Example for French: #. proprietaire ("tenant") -#: ../cinder-common.templates:5001 +#: ../cinder-common.templates:4001 msgid "Authentication server tenant name:" msgstr "Název nájemce pro autentizační server:" @@ -119,43 +103,43 @@ msgstr "Název nájemce pro autentizační server:" #. You're advised to either keep "tenant" without translating it #. or keep it aside with your translation. Example for French: #. proprietaire ("tenant") -#: ../cinder-common.templates:5001 +#: ../cinder-common.templates:4001 msgid "Please specify the authentication server tenant name." msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:6001 +#: ../cinder-common.templates:5001 msgid "Authentication server username:" msgstr "Uživatel autentizačního serveru:" #. Type: string #. Description -#: ../cinder-common.templates:6001 +#: ../cinder-common.templates:5001 msgid "Please specify the username to use with the authentication server." msgstr "" #. Type: password #. Description -#: ../cinder-common.templates:7001 +#: ../cinder-common.templates:6001 msgid "Authentication server password:" msgstr "Heslo autentizačního serveru:" #. Type: password #. Description -#: ../cinder-common.templates:7001 +#: ../cinder-common.templates:6001 msgid "Please specify the password to use with the authentication server." msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:8001 +#: ../cinder-common.templates:7001 msgid "Cinder volume group:" msgstr "Skupina svazků pro Cinder:" #. Type: string #. Description -#: ../cinder-common.templates:8001 +#: ../cinder-common.templates:7001 msgid "" "Please specify the name of the LVM volume group on which Cinder will create " "partitions." @@ -165,7 +149,7 @@ msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:9001 +#: ../cinder-common.templates:8001 msgid "IP address of your RabbitMQ host:" msgstr "" @@ -175,8 +159,8 @@ msgstr "" #. Description #. Type: password #. Description -#: ../cinder-common.templates:9001 ../cinder-common.templates:10001 -#: ../cinder-common.templates:11001 +#: ../cinder-common.templates:8001 ../cinder-common.templates:9001 +#: ../cinder-common.templates:10001 msgid "" "In order to interoperate with other components of OpenStack, this package " "needs to connect to a central RabbitMQ server." @@ -184,7 +168,7 @@ msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:9001 +#: ../cinder-common.templates:8001 #, fuzzy #| msgid "Please enter the IP address that will be used to contact Cinder." msgid "Please specify the IP address of that server." @@ -194,25 +178,25 @@ msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:10001 +#: ../cinder-common.templates:9001 msgid "Username for connection to the RabbitMQ server:" msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:10001 +#: ../cinder-common.templates:9001 msgid "Please specify the username used to connect to the RabbitMQ server." msgstr "" #. Type: password #. Description -#: ../cinder-common.templates:11001 +#: ../cinder-common.templates:10001 msgid "Password for connection to the RabbitMQ server:" msgstr "" #. Type: password #. Description -#: ../cinder-common.templates:11001 +#: ../cinder-common.templates:10001 msgid "Please specify the password used to connect to the RabbitMQ server." msgstr "" @@ -320,3 +304,13 @@ msgstr "" "Openstack lze využívat pomocí oblastí dostupnosti, přičemž každá oblast " "představuje místo. Zadejte prosím oblast, kterou chcete použít při " "registraci koncového bodu." + +#~ msgid "Start Cinder services at boot?" +#~ msgstr "Spouštět služby cinder při zavádění?" + +#~ msgid "" +#~ "Please choose whether you want to start Cinder services when the machine " +#~ "is booted up." +#~ msgstr "" +#~ "Zvolte si prosím, zda chcete, aby se služby Cinder spouštěly při zavádění " +#~ "systému." diff --git a/xenial/debian/po/da.po b/xenial/debian/po/da.po index b195eda48..7c76c87f4 100644 --- a/xenial/debian/po/da.po +++ b/xenial/debian/po/da.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: cinder\n" "Report-Msgid-Bugs-To: cinder@packages.debian.org\n" -"POT-Creation-Date: 2013-10-09 23:29+0800\n" +"POT-Creation-Date: 2013-12-19 16:02+0800\n" "PO-Revision-Date: 2013-09-09 12:42+0000\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" @@ -19,28 +19,12 @@ msgstr "" #. Type: boolean #. Description #: ../cinder-common.templates:2001 -msgid "Start Cinder services at boot?" -msgstr "Start Cindertjenester ved opstart?" - -#. Type: boolean -#. Description -#: ../cinder-common.templates:2001 -msgid "" -"Please choose whether you want to start Cinder services when the machine is " -"booted up." -msgstr "" -"Vælg venligst hvorvidt du ønsker at starte Cindertjenester når maskinen " -"starter op." - -#. Type: boolean -#. Description -#: ../cinder-common.templates:3001 msgid "Set up a database for Cinder?" msgstr "Opsæt en database for Cinder?" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 +#: ../cinder-common.templates:2001 msgid "" "No database has been set up for Cinder to use. Before continuing, you should " "make sure you have the following information:" @@ -50,7 +34,7 @@ msgstr "" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 +#: ../cinder-common.templates:2001 msgid "" " * the type of database that you want to use;\n" " * the database server hostname (that server must allow TCP connections from " @@ -65,7 +49,7 @@ msgstr "" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 +#: ../cinder-common.templates:2001 msgid "" "If some of these requirements are missing, do not choose this option and run " "with regular SQLite support." @@ -75,7 +59,7 @@ msgstr "" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 +#: ../cinder-common.templates:2001 msgid "" "You can change this setting later on by running \"dpkg-reconfigure -plow " "cinder\"." @@ -85,13 +69,13 @@ msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:4001 +#: ../cinder-common.templates:3001 msgid "Authentication server hostname:" msgstr "Værtsnavn for godkendelsesserver:" #. Type: string #. Description -#: ../cinder-common.templates:4001 +#: ../cinder-common.templates:3001 msgid "" "Please specify the hostname of the authentication server. Typically this is " "also the hostname of the OpenStack Identity Service (Keystone)." @@ -108,7 +92,7 @@ msgstr "" #. You're advised to either keep "tenant" without translating it #. or keep it aside with your translation. Example for French: #. proprietaire ("tenant") -#: ../cinder-common.templates:5001 +#: ../cinder-common.templates:4001 msgid "Authentication server tenant name:" msgstr "Tenantnavn for godkendelsesserver:" @@ -121,43 +105,43 @@ msgstr "Tenantnavn for godkendelsesserver:" #. You're advised to either keep "tenant" without translating it #. or keep it aside with your translation. Example for French: #. proprietaire ("tenant") -#: ../cinder-common.templates:5001 +#: ../cinder-common.templates:4001 msgid "Please specify the authentication server tenant name." msgstr "Angiv venligst tenantnavn for godkendelseserveren." #. Type: string #. Description -#: ../cinder-common.templates:6001 +#: ../cinder-common.templates:5001 msgid "Authentication server username:" msgstr "Brugernavn for godkendelsesserver:" #. Type: string #. Description -#: ../cinder-common.templates:6001 +#: ../cinder-common.templates:5001 msgid "Please specify the username to use with the authentication server." msgstr "Angiv venligst brugernavnet der skal bruges med godkendelseserveren." #. Type: password #. Description -#: ../cinder-common.templates:7001 +#: ../cinder-common.templates:6001 msgid "Authentication server password:" msgstr "Adgangskode for godkendelsesserver:" #. Type: password #. Description -#: ../cinder-common.templates:7001 +#: ../cinder-common.templates:6001 msgid "Please specify the password to use with the authentication server." msgstr "Angiv venligt adgangskoden til brug med godkendelsesserveren." #. Type: string #. Description -#: ../cinder-common.templates:8001 +#: ../cinder-common.templates:7001 msgid "Cinder volume group:" msgstr "Cinder-diskenhedsgruppe:" #. Type: string #. Description -#: ../cinder-common.templates:8001 +#: ../cinder-common.templates:7001 msgid "" "Please specify the name of the LVM volume group on which Cinder will create " "partitions." @@ -167,7 +151,7 @@ msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:9001 +#: ../cinder-common.templates:8001 msgid "IP address of your RabbitMQ host:" msgstr "" @@ -177,8 +161,8 @@ msgstr "" #. Description #. Type: password #. Description -#: ../cinder-common.templates:9001 ../cinder-common.templates:10001 -#: ../cinder-common.templates:11001 +#: ../cinder-common.templates:8001 ../cinder-common.templates:9001 +#: ../cinder-common.templates:10001 msgid "" "In order to interoperate with other components of OpenStack, this package " "needs to connect to a central RabbitMQ server." @@ -186,7 +170,7 @@ msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:9001 +#: ../cinder-common.templates:8001 #, fuzzy #| msgid "Please specify the password to use with the authentication server." msgid "Please specify the IP address of that server." @@ -194,13 +178,13 @@ msgstr "Angiv venligt adgangskoden til brug med godkendelsesserveren." #. Type: string #. Description -#: ../cinder-common.templates:10001 +#: ../cinder-common.templates:9001 msgid "Username for connection to the RabbitMQ server:" msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:10001 +#: ../cinder-common.templates:9001 #, fuzzy #| msgid "Please specify the username to use with the authentication server." msgid "Please specify the username used to connect to the RabbitMQ server." @@ -208,13 +192,13 @@ msgstr "Angiv venligst brugernavnet der skal bruges med godkendelseserveren." #. Type: password #. Description -#: ../cinder-common.templates:11001 +#: ../cinder-common.templates:10001 msgid "Password for connection to the RabbitMQ server:" msgstr "" #. Type: password #. Description -#: ../cinder-common.templates:11001 +#: ../cinder-common.templates:10001 #, fuzzy #| msgid "Please specify the password to use with the authentication server." msgid "Please specify the password used to connect to the RabbitMQ server." @@ -321,3 +305,13 @@ msgstr "" "OpenStack understøtter at bruge tilgængelighedszoner, hvor hver region " "repræsenterer et sted. Indtast venligst zonen, som du ønsker at bruge, når " "du registrerer slutpunktet." + +#~ msgid "Start Cinder services at boot?" +#~ msgstr "Start Cindertjenester ved opstart?" + +#~ msgid "" +#~ "Please choose whether you want to start Cinder services when the machine " +#~ "is booted up." +#~ msgstr "" +#~ "Vælg venligst hvorvidt du ønsker at starte Cindertjenester når maskinen " +#~ "starter op." diff --git a/xenial/debian/po/es.po b/xenial/debian/po/es.po new file mode 100644 index 000000000..02cd71194 --- /dev/null +++ b/xenial/debian/po/es.po @@ -0,0 +1,341 @@ +# cinder po-debconf translation to Spanish +# Copyright (C) 2013 Software in the Public Interest +# This file is distributed under the same license as the cinder package. +# +# Changes: +# - Initial translation +# Matías A. Bellone , 2013 +# +# Traductores, si no conocen el formato PO, merece la pena leer la +# documentación de gettext, especialmente las secciones dedicadas a este +# formato, por ejemplo ejecutando: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Equipo de traducción al español, por favor lean antes de traducir +# los siguientes documentos: +# +# - El proyecto de traducción de Debian al español +# http://www.debian.org/intl/spanish/coordinacion +# especialmente las notas de traducción en +# http://www.debian.org/intl/spanish/notas +# +# - La guía de traducción de po's de debconf: +# /usr/share/doc/po-debconf/README-trans +# o http://www.debian.org/intl/l10n/po-debconf/README-trans +# +msgid "" +msgstr "" +"Project-Id-Version: cinder\n" +"Report-Msgid-Bugs-To: cinder@packages.debian.org\n" +"POT-Creation-Date: 2013-12-19 16:02+0800\n" +"PO-Revision-Date: 2013-12-08 21:31-0300\n" +"Last-Translator: Matías Bellone \n" +"Language-Team: Debian l10n Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../cinder-common.templates:2001 +msgid "Set up a database for Cinder?" +msgstr "¿Desea configurar una base de datos para Cinder?" + +#. Type: boolean +#. Description +#: ../cinder-common.templates:2001 +msgid "" +"No database has been set up for Cinder to use. Before continuing, you should " +"make sure you have the following information:" +msgstr "" +"No se ha configurado ninguna base de datos para Cinder. Antes de continuar " +"debe asegurarse de que dispone de los siguientes datos:" + +#. Type: boolean +#. Description +#: ../cinder-common.templates:2001 +msgid "" +" * the type of database that you want to use;\n" +" * the database server hostname (that server must allow TCP connections from " +"this\n" +" machine);\n" +" * a username and password to access the database." +msgstr "" +" * el tipo de base de datos que quiere utilizar;\n" +" * el nombre del equipo del servidor de la base de datos (el servidor debe " +"permitir conexiones TCP desde este equipo).\n" +" * el nombre de usuario y la contraseña para acceder a la base de datos." + +#. Type: boolean +#. Description +#: ../cinder-common.templates:2001 +msgid "" +"If some of these requirements are missing, do not choose this option and run " +"with regular SQLite support." +msgstr "" +"Si no dispone de alguno de estos datos, seleccione «no» en este apartado y " +"ejecute Cinder con SQLite." + +#. Type: boolean +#. Description +#: ../cinder-common.templates:2001 +msgid "" +"You can change this setting later on by running \"dpkg-reconfigure -plow " +"cinder\"." +msgstr "" +"Podrá cambiar esta configuración más adelante ejecutando «dpkg-reconfigure -" +"plow cinder»." + +#. Type: string +#. Description +#: ../cinder-common.templates:3001 +msgid "Authentication server hostname:" +msgstr "Nombre del equipo del servidor de autenticación:" + +#. Type: string +#. Description +#: ../cinder-common.templates:3001 +msgid "" +"Please specify the hostname of the authentication server. Typically this is " +"also the hostname of the OpenStack Identity Service (Keystone)." +msgstr "" +"Indique el nombre del equipo del servidor de autenticación. Suele ser el " +"nombre del equipo del Servicio de Identidad de OpenStack (Keystone)." + +#. Type: string +#. Description +#. Translators: a "tenant" in OpenStack world is +#. an entity that contains one or more username/password couples. +#. It's typically the tenant that will be used for billing. Having more than one +#. username/password is very helpful in larger organization. +#. You're advised to either keep "tenant" without translating it +#. or keep it aside with your translation. Example for French: +#. proprietaire ("tenant") +#: ../cinder-common.templates:4001 +msgid "Authentication server tenant name:" +msgstr "Nombre del inquilino («tenant») del servidor de autenticación:" + +#. Type: string +#. Description +#. Translators: a "tenant" in OpenStack world is +#. an entity that contains one or more username/password couples. +#. It's typically the tenant that will be used for billing. Having more than one +#. username/password is very helpful in larger organization. +#. You're advised to either keep "tenant" without translating it +#. or keep it aside with your translation. Example for French: +#. proprietaire ("tenant") +#: ../cinder-common.templates:4001 +msgid "Please specify the authentication server tenant name." +msgstr "" +"Indique el nombre del inquilino («tenant») del servidor de autenticación." + +#. Type: string +#. Description +#: ../cinder-common.templates:5001 +msgid "Authentication server username:" +msgstr "Nombre de usuario del servidor de autenticación:" + +#. Type: string +#. Description +#: ../cinder-common.templates:5001 +msgid "Please specify the username to use with the authentication server." +msgstr "" +"Indique el nombre de usuario para usar con el servidor de autenticación." + +#. Type: password +#. Description +#: ../cinder-common.templates:6001 +msgid "Authentication server password:" +msgstr "Contraseña del servidor de autenticación:" + +#. Type: password +#. Description +#: ../cinder-common.templates:6001 +msgid "Please specify the password to use with the authentication server." +msgstr "Indique la contraseña para usar con el servidor de autenticación." + +#. Type: string +#. Description +#: ../cinder-common.templates:7001 +msgid "Cinder volume group:" +msgstr "Grupo de volúmenes para Cinder:" + +#. Type: string +#. Description +#: ../cinder-common.templates:7001 +msgid "" +"Please specify the name of the LVM volume group on which Cinder will create " +"partitions." +msgstr "" +"Indique el nombre del grupo de volúmenes LVM en el que Cinder creará las " +"particiones." + +#. Type: string +#. Description +#: ../cinder-common.templates:8001 +msgid "IP address of your RabbitMQ host:" +msgstr "" + +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: password +#. Description +#: ../cinder-common.templates:8001 ../cinder-common.templates:9001 +#: ../cinder-common.templates:10001 +msgid "" +"In order to interoperate with other components of OpenStack, this package " +"needs to connect to a central RabbitMQ server." +msgstr "" + +#. Type: string +#. Description +#: ../cinder-common.templates:8001 +#, fuzzy +#| msgid "Please specify the password to use with the authentication server." +msgid "Please specify the IP address of that server." +msgstr "Indique la contraseña para usar con el servidor de autenticación." + +#. Type: string +#. Description +#: ../cinder-common.templates:9001 +msgid "Username for connection to the RabbitMQ server:" +msgstr "" + +#. Type: string +#. Description +#: ../cinder-common.templates:9001 +#, fuzzy +#| msgid "Please specify the username to use with the authentication server." +msgid "Please specify the username used to connect to the RabbitMQ server." +msgstr "" +"Indique el nombre de usuario para usar con el servidor de autenticación." + +#. Type: password +#. Description +#: ../cinder-common.templates:10001 +msgid "Password for connection to the RabbitMQ server:" +msgstr "" + +#. Type: password +#. Description +#: ../cinder-common.templates:10001 +#, fuzzy +#| msgid "Please specify the password to use with the authentication server." +msgid "Please specify the password used to connect to the RabbitMQ server." +msgstr "Indique la contraseña para usar con el servidor de autenticación." + +#. Type: boolean +#. Description +#: ../cinder-api.templates:2001 +msgid "Register Cinder in the Keystone endpoint catalog?" +msgstr "¿Desea registrar Cinder en el catálogo de puntos finales de Keystone?" + +#. Type: boolean +#. Description +#: ../cinder-api.templates:2001 +msgid "" +"Each OpenStack service (each API) should be registered in order to be " +"accessible. This is done using \"keystone service-create\" and \"keystone " +"endpoint-create\". This can be done automatically now." +msgstr "" +"Debe registrar cada uno de los servicios OpenStack (cada API) para que sean " +"accesibles. Esto se lleva a cabo mediante las órdenes «keystone service-" +"create» y «keystone endpoint-create». Puede hacerlo ahora automáticamente." + +#. Type: boolean +#. Description +#: ../cinder-api.templates:2001 +msgid "" +"Note that you will need to have an up and running Keystone server on which " +"to connect using the Keystone authentication token." +msgstr "" +"Tenga en cuenta que necesitará disponer de un servidor Keystone en ejecución " +"al que conectarse utilizando el token de autenticación de Keystone." + +#. Type: string +#. Description +#: ../cinder-api.templates:3001 +msgid "Keystone server IP address:" +msgstr "Dirección IP del servidor Keystone:" + +#. Type: string +#. Description +#: ../cinder-api.templates:3001 +msgid "" +"Please enter the IP address of the Keystone server, so that cinder-api can " +"contact Keystone to do the Cinder service and endpoint creation." +msgstr "" +"Introduzca la dirección IP del servidor Keystone para que cinder-api pueda " +"contactar con Keystone para realizar el servicio Cinder y crear el punto " +"final." + +#. Type: password +#. Description +#: ../cinder-api.templates:4001 +msgid "Keystone authentication token:" +msgstr "Token de autenticación de Keystone:" + +#. Type: password +#. Description +#: ../cinder-api.templates:4001 +msgid "" +"To configure its endpoint in Keystone, cinder-api needs the Keystone " +"authentication token." +msgstr "" +"Para configurar su punto final en Keystone, cinder-api necesita el token de " +"autenticación de Keystone." + +#. Type: string +#. Description +#: ../cinder-api.templates:5001 +msgid "Cinder endpoint IP address:" +msgstr "Dirección IP del punto final de Cinder:" + +#. Type: string +#. Description +#: ../cinder-api.templates:5001 +msgid "Please enter the IP address that will be used to contact Cinder." +msgstr "Introduzca la dirección IP que se utilizará para contactar con Cinder." + +#. Type: string +#. Description +#: ../cinder-api.templates:5001 +msgid "" +"This IP address should be accessible from the clients that will use this " +"service, so if you are installing a public cloud, this should be a public IP " +"address." +msgstr "" +"Esta dirección IP debe ser accesible desde los clientes que usarán este " +"servicio, por lo que si está instalando una nube pública, debería ser una " +"dirección IP pública." + +#. Type: string +#. Description +#: ../cinder-api.templates:6001 +msgid "Name of the region to register:" +msgstr "Nombre de la región a registrar:" + +#. Type: string +#. Description +#: ../cinder-api.templates:6001 +msgid "" +"OpenStack supports using availability zones, with each region representing a " +"location. Please enter the zone that you wish to use when registering the " +"endpoint." +msgstr "" +"OpenStack puede utilizarse con zonas de disponibilidad, donde cada región " +"representa una ubicación. Introduzca la zona que desea utilizar cuando " +"registre el punto final." + +#~ msgid "Start Cinder services at boot?" +#~ msgstr "¿Desea iniciar los servicios de Cinder en el arranque del sistema?" + +#~ msgid "" +#~ "Please choose whether you want to start Cinder services when the machine " +#~ "is booted up." +#~ msgstr "" +#~ "Elija si desea iniciar los servicios de Cinder cuando la máquina arranque." diff --git a/xenial/debian/po/fr.po b/xenial/debian/po/fr.po index 30ae3733d..59a76db64 100644 --- a/xenial/debian/po/fr.po +++ b/xenial/debian/po/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: cinder\n" "Report-Msgid-Bugs-To: cinder@packages.debian.org\n" -"POT-Creation-Date: 2013-09-02 07:02+0200\n" +"POT-Creation-Date: 2013-12-19 16:02+0800\n" "PO-Revision-Date: 2013-10-30 11:45+0100\n" "Last-Translator: Julien Patriarca \n" "Language-Team: FRENCH \n" @@ -20,32 +20,12 @@ msgstr "" #. Type: boolean #. Description #: ../cinder-common.templates:2001 -#| msgid "Start cinder services at boot?" -msgid "Start Cinder services at boot?" -msgstr "Démarrer les services Cinder au lancement du système ?" - -#. Type: boolean -#. Description -#: ../cinder-common.templates:2001 -msgid "" -"Please choose whether you want to start Cinder services when the machine is " -"booted up." -msgstr "" -"Veuillez choisir si vous souhaitez lancer les services Cinder lors du " -"démarrage de la machine." - -#. Type: boolean -#. Description -#: ../cinder-common.templates:3001 msgid "Set up a database for Cinder?" msgstr "Installer une base de données pour Cinder ?" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 -#| msgid "" -#| "No database has been set up for Cinder to use. If you want to set one up " -#| "now, please make sure you have all needed information:" +#: ../cinder-common.templates:2001 msgid "" "No database has been set up for Cinder to use. Before continuing, you should " "make sure you have the following information:" @@ -55,12 +35,7 @@ msgstr "" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 -#| msgid "" -#| " * the host name of the database server (which must allow TCP\n" -#| " connections from this machine);\n" -#| " * a username and password to access the database;\n" -#| " * the type of database management software you want to use." +#: ../cinder-common.templates:2001 msgid "" " * the type of database that you want to use;\n" " * the database server hostname (that server must allow TCP connections from " @@ -76,7 +51,7 @@ msgstr "" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 +#: ../cinder-common.templates:2001 msgid "" "If some of these requirements are missing, do not choose this option and run " "with regular SQLite support." @@ -86,10 +61,7 @@ msgstr "" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 -#| msgid "" -#| "You can change this setting later on by running \"dpkg-reconfigure -plow " -#| "cinder-common\"." +#: ../cinder-common.templates:2001 msgid "" "You can change this setting later on by running \"dpkg-reconfigure -plow " "cinder\"." @@ -99,17 +71,13 @@ msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:4001 -#| msgid "Auth server hostname:" +#: ../cinder-common.templates:3001 msgid "Authentication server hostname:" msgstr "Nom d'hôte du serveur d'authentification : " #. Type: string #. Description -#: ../cinder-common.templates:4001 -#| msgid "" -#| "Please specify the URL of your Cinder authentication server. Typically " -#| "this is also the URL of your OpenStack Identity Service (Keystone)." +#: ../cinder-common.templates:3001 msgid "" "Please specify the hostname of the authentication server. Typically this is " "also the hostname of the OpenStack Identity Service (Keystone)." @@ -125,9 +93,8 @@ msgstr "" #. username/password is very helpful in larger organization. #. You're advised to either keep "tenant" without translating it #. or keep it aside with your translation. Example for French: -#. propriétaire ("tenant") -#: ../cinder-common.templates:5001 -#| msgid "Auth server tenant name:" +#. proprietaire ("tenant") +#: ../cinder-common.templates:4001 msgid "Authentication server tenant name:" msgstr "Nom d'espace client du serveur d'authentification :" @@ -139,22 +106,21 @@ msgstr "Nom d'espace client du serveur d'authentification :" #. username/password is very helpful in larger organization. #. You're advised to either keep "tenant" without translating it #. or keep it aside with your translation. Example for French: -#. propriétaire ("tenant") -#: ../cinder-common.templates:5001 +#. proprietaire ("tenant") +#: ../cinder-common.templates:4001 msgid "Please specify the authentication server tenant name." msgstr "" "Veuillez indiquer le nom de l'espace client du serveur d’authentification" #. Type: string #. Description -#: ../cinder-common.templates:6001 -#| msgid "Auth server username:" +#: ../cinder-common.templates:5001 msgid "Authentication server username:" msgstr "Nom d'utilisateur du serveur d'authentification : " #. Type: string #. Description -#: ../cinder-common.templates:6001 +#: ../cinder-common.templates:5001 msgid "Please specify the username to use with the authentication server." msgstr "" "Veuillez indiquer le nom d'utilisateur à utiliser sur le serveur " @@ -162,14 +128,13 @@ msgstr "" #. Type: password #. Description -#: ../cinder-common.templates:7001 -#| msgid "Auth server password:" +#: ../cinder-common.templates:6001 msgid "Authentication server password:" msgstr "Mot de passe du serveur d'authentification : " #. Type: password #. Description -#: ../cinder-common.templates:7001 +#: ../cinder-common.templates:6001 msgid "Please specify the password to use with the authentication server." msgstr "" "Veuillez indiquer le mot de passe à utiliser sur le serveur " @@ -177,16 +142,13 @@ msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:8001 +#: ../cinder-common.templates:7001 msgid "Cinder volume group:" msgstr "Groupe de volume Cinder : " #. Type: string #. Description -#: ../cinder-common.templates:8001 -#| msgid "" -#| "Please specify the name of the LVM volume group (vg) on which Cinder will " -#| "create partitions." +#: ../cinder-common.templates:7001 msgid "" "Please specify the name of the LVM volume group on which Cinder will create " "partitions." @@ -194,20 +156,76 @@ msgstr "" "Veuillez indiquer le nom du groupe de volume LVM sur lequel Cinder créera " "les partitions." +#. Type: string +#. Description +#: ../cinder-common.templates:8001 +msgid "IP address of your RabbitMQ host:" +msgstr "" + +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: password +#. Description +#: ../cinder-common.templates:8001 ../cinder-common.templates:9001 +#: ../cinder-common.templates:10001 +msgid "" +"In order to interoperate with other components of OpenStack, this package " +"needs to connect to a central RabbitMQ server." +msgstr "" + +#. Type: string +#. Description +#: ../cinder-common.templates:8001 +#, fuzzy +#| msgid "Please specify the password to use with the authentication server." +msgid "Please specify the IP address of that server." +msgstr "" +"Veuillez indiquer le mot de passe à utiliser sur le serveur " +"d'authentification." + +#. Type: string +#. Description +#: ../cinder-common.templates:9001 +msgid "Username for connection to the RabbitMQ server:" +msgstr "" + +#. Type: string +#. Description +#: ../cinder-common.templates:9001 +#, fuzzy +#| msgid "Please specify the username to use with the authentication server." +msgid "Please specify the username used to connect to the RabbitMQ server." +msgstr "" +"Veuillez indiquer le nom d'utilisateur à utiliser sur le serveur " +"d'authentification." + +#. Type: password +#. Description +#: ../cinder-common.templates:10001 +msgid "Password for connection to the RabbitMQ server:" +msgstr "" + +#. Type: password +#. Description +#: ../cinder-common.templates:10001 +#, fuzzy +#| msgid "Please specify the password to use with the authentication server." +msgid "Please specify the password used to connect to the RabbitMQ server." +msgstr "" +"Veuillez indiquer le mot de passe à utiliser sur le serveur " +"d'authentification." + #. Type: boolean #. Description #: ../cinder-api.templates:2001 -#| msgid "Register Cinder in the keystone endpoint catalog?" msgid "Register Cinder in the Keystone endpoint catalog?" msgstr "Enregistrer Cinder dans le catalogue de points d'accès Keystone ?" #. Type: boolean #. Description #: ../cinder-api.templates:2001 -#| msgid "" -#| "Each Openstack services (each API) should be registered in order to be " -#| "accessible. This is done using \"keystone service-create\" and \"keystone " -#| "endpoint-create\". Select if you want to run these commands now." msgid "" "Each OpenStack service (each API) should be registered in order to be " "accessible. This is done using \"keystone service-create\" and \"keystone " @@ -220,9 +238,6 @@ msgstr "" #. Type: boolean #. Description #: ../cinder-api.templates:2001 -#| msgid "" -#| "Note that you will need to have an up and running keystone server on " -#| "which to connect using the Keystone auth token." msgid "" "Note that you will need to have an up and running Keystone server on which " "to connect using the Keystone authentication token." @@ -233,16 +248,12 @@ msgstr "" #. Type: string #. Description #: ../cinder-api.templates:3001 -#| msgid "Keystone IP address:" msgid "Keystone server IP address:" msgstr "Adresse IP du serveur Keystone : " #. Type: string #. Description #: ../cinder-api.templates:3001 -#| msgid "" -#| "Enter the IP address of your keystone server, so that cinder-api can " -#| "contact Keystone to do the Cinder service and endpoint creation." msgid "" "Please enter the IP address of the Keystone server, so that cinder-api can " "contact Keystone to do the Cinder service and endpoint creation." @@ -254,16 +265,12 @@ msgstr "" #. Type: password #. Description #: ../cinder-api.templates:4001 -#| msgid "Keystone Auth Token:" msgid "Keystone authentication token:" msgstr "Jeton d'authentification Keystone : " #. Type: password #. Description #: ../cinder-api.templates:4001 -#| msgid "" -#| "To configure its endpoint in Keystone, cinder-api needs the Keystone auth " -#| "token." msgid "" "To configure its endpoint in Keystone, cinder-api needs the Keystone " "authentication token." @@ -280,9 +287,6 @@ msgstr "Adresse IP du point d'accès Cinder : " #. Type: string #. Description #: ../cinder-api.templates:5001 -#| msgid "" -#| "Enter the IP address that will be used to contact Cinder (eg: the Cinder " -#| "endpoint IP address)." msgid "Please enter the IP address that will be used to contact Cinder." msgstr "" "Veuillez indiquer l'adresse IP qui sera utilisée pour contacter Cinder." @@ -308,10 +312,6 @@ msgstr "Nom de la région à enregistrer :" #. Type: string #. Description #: ../cinder-api.templates:6001 -#| msgid "" -#| "Openstack can be used using availability zones, with each region " -#| "representing a location. Please enter the zone that you wish to use when " -#| "registering the endpoint." msgid "" "OpenStack supports using availability zones, with each region representing a " "location. Please enter the zone that you wish to use when registering the " @@ -321,6 +321,17 @@ msgstr "" "région représentant un lieu. Veuillez entrer une zone que vous souhaitez " "utiliser lors de l'enregistrement d'un point d'accès." +#~| msgid "Start cinder services at boot?" +#~ msgid "Start Cinder services at boot?" +#~ msgstr "Démarrer les services Cinder au lancement du système ?" + +#~ msgid "" +#~ "Please choose whether you want to start Cinder services when the machine " +#~ "is booted up." +#~ msgstr "" +#~ "Veuillez choisir si vous souhaitez lancer les services Cinder lors du " +#~ "démarrage de la machine." + #~ msgid "" #~ "If you don't choose this option, no database will be set up and Cinder " #~ "will use regular SQLite support." diff --git a/xenial/debian/po/it.po b/xenial/debian/po/it.po index 4dc0dd8cc..72b069785 100644 --- a/xenial/debian/po/it.po +++ b/xenial/debian/po/it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: cinder\n" "Report-Msgid-Bugs-To: cinder@packages.debian.org\n" -"POT-Creation-Date: 2013-10-09 23:29+0800\n" +"POT-Creation-Date: 2013-12-19 16:02+0800\n" "PO-Revision-Date: 2013-06-09 15:40+0200\n" "Last-Translator: Beatrice Torracca \n" "Language-Team: Italian \n" @@ -20,26 +20,12 @@ msgstr "" #. Type: boolean #. Description #: ../cinder-common.templates:2001 -msgid "Start Cinder services at boot?" -msgstr "Far partire i servizi cinder all'avvio?" - -#. Type: boolean -#. Description -#: ../cinder-common.templates:2001 -msgid "" -"Please choose whether you want to start Cinder services when the machine is " -"booted up." -msgstr "Scegliere se far partire i servizi Cinder all'avvio della macchina." - -#. Type: boolean -#. Description -#: ../cinder-common.templates:3001 msgid "Set up a database for Cinder?" msgstr "Impostare un database per Cinder?" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 +#: ../cinder-common.templates:2001 msgid "" "No database has been set up for Cinder to use. Before continuing, you should " "make sure you have the following information:" @@ -50,7 +36,7 @@ msgstr "" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 +#: ../cinder-common.templates:2001 msgid "" " * the type of database that you want to use;\n" " * the database server hostname (that server must allow TCP connections from " @@ -65,7 +51,7 @@ msgstr "" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 +#: ../cinder-common.templates:2001 msgid "" "If some of these requirements are missing, do not choose this option and run " "with regular SQLite support." @@ -73,7 +59,7 @@ msgstr "" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 +#: ../cinder-common.templates:2001 msgid "" "You can change this setting later on by running \"dpkg-reconfigure -plow " "cinder\"." @@ -83,13 +69,13 @@ msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:4001 +#: ../cinder-common.templates:3001 msgid "Authentication server hostname:" msgstr "Nome host del server di autenticazione:" #. Type: string #. Description -#: ../cinder-common.templates:4001 +#: ../cinder-common.templates:3001 msgid "" "Please specify the hostname of the authentication server. Typically this is " "also the hostname of the OpenStack Identity Service (Keystone)." @@ -106,7 +92,7 @@ msgstr "" #. You're advised to either keep "tenant" without translating it #. or keep it aside with your translation. Example for French: #. proprietaire ("tenant") -#: ../cinder-common.templates:5001 +#: ../cinder-common.templates:4001 msgid "Authentication server tenant name:" msgstr "Nome del tenant per il server di autenticazione:" @@ -119,43 +105,43 @@ msgstr "Nome del tenant per il server di autenticazione:" #. You're advised to either keep "tenant" without translating it #. or keep it aside with your translation. Example for French: #. proprietaire ("tenant") -#: ../cinder-common.templates:5001 +#: ../cinder-common.templates:4001 msgid "Please specify the authentication server tenant name." msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:6001 +#: ../cinder-common.templates:5001 msgid "Authentication server username:" msgstr "Nome utente per il server di autenticazione:" #. Type: string #. Description -#: ../cinder-common.templates:6001 +#: ../cinder-common.templates:5001 msgid "Please specify the username to use with the authentication server." msgstr "" #. Type: password #. Description -#: ../cinder-common.templates:7001 +#: ../cinder-common.templates:6001 msgid "Authentication server password:" msgstr "Password per il server di autenticazione:" #. Type: password #. Description -#: ../cinder-common.templates:7001 +#: ../cinder-common.templates:6001 msgid "Please specify the password to use with the authentication server." msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:8001 +#: ../cinder-common.templates:7001 msgid "Cinder volume group:" msgstr "Gruppo di volumi Cinder:" #. Type: string #. Description -#: ../cinder-common.templates:8001 +#: ../cinder-common.templates:7001 msgid "" "Please specify the name of the LVM volume group on which Cinder will create " "partitions." @@ -165,7 +151,7 @@ msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:9001 +#: ../cinder-common.templates:8001 msgid "IP address of your RabbitMQ host:" msgstr "" @@ -175,8 +161,8 @@ msgstr "" #. Description #. Type: password #. Description -#: ../cinder-common.templates:9001 ../cinder-common.templates:10001 -#: ../cinder-common.templates:11001 +#: ../cinder-common.templates:8001 ../cinder-common.templates:9001 +#: ../cinder-common.templates:10001 msgid "" "In order to interoperate with other components of OpenStack, this package " "needs to connect to a central RabbitMQ server." @@ -184,7 +170,7 @@ msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:9001 +#: ../cinder-common.templates:8001 #, fuzzy #| msgid "Please enter the IP address that will be used to contact Cinder." msgid "Please specify the IP address of that server." @@ -194,25 +180,25 @@ msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:10001 +#: ../cinder-common.templates:9001 msgid "Username for connection to the RabbitMQ server:" msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:10001 +#: ../cinder-common.templates:9001 msgid "Please specify the username used to connect to the RabbitMQ server." msgstr "" #. Type: password #. Description -#: ../cinder-common.templates:11001 +#: ../cinder-common.templates:10001 msgid "Password for connection to the RabbitMQ server:" msgstr "" #. Type: password #. Description -#: ../cinder-common.templates:11001 +#: ../cinder-common.templates:10001 msgid "Please specify the password used to connect to the RabbitMQ server." msgstr "" @@ -321,3 +307,11 @@ msgstr "" "OpenStack può essere usato utilizzando le zone di disponibilità, con ogni " "regione che rappresenta una posizione. Inserire la zona che si desidera " "usare durante la registrazione del punto terminale." + +#~ msgid "Start Cinder services at boot?" +#~ msgstr "Far partire i servizi cinder all'avvio?" + +#~ msgid "" +#~ "Please choose whether you want to start Cinder services when the machine " +#~ "is booted up." +#~ msgstr "Scegliere se far partire i servizi Cinder all'avvio della macchina." diff --git a/xenial/debian/po/ja.po b/xenial/debian/po/ja.po index c7b7b8f57..42d701083 100644 --- a/xenial/debian/po/ja.po +++ b/xenial/debian/po/ja.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: cinder\n" "Report-Msgid-Bugs-To: cinder@packages.debian.org\n" -"POT-Creation-Date: 2013-10-09 23:29+0800\n" +"POT-Creation-Date: 2013-12-19 16:02+0800\n" "PO-Revision-Date: 2013-09-02 14:02+0900\n" "Last-Translator: victory \n" "Language-Team: Japanese \n" @@ -19,26 +19,12 @@ msgstr "" #. Type: boolean #. Description #: ../cinder-common.templates:2001 -msgid "Start Cinder services at boot?" -msgstr "ブート時に Cinder サービスを開始しますか?" - -#. Type: boolean -#. Description -#: ../cinder-common.templates:2001 -msgid "" -"Please choose whether you want to start Cinder services when the machine is " -"booted up." -msgstr "マシン起動後に Cinder サービスを開始するかどうか選択してください。" - -#. Type: boolean -#. Description -#: ../cinder-common.templates:3001 msgid "Set up a database for Cinder?" msgstr "Cinder 用のデータベースを用意しますか?" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 +#: ../cinder-common.templates:2001 msgid "" "No database has been set up for Cinder to use. Before continuing, you should " "make sure you have the following information:" @@ -48,7 +34,7 @@ msgstr "" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 +#: ../cinder-common.templates:2001 msgid "" " * the type of database that you want to use;\n" " * the database server hostname (that server must allow TCP connections from " @@ -63,7 +49,7 @@ msgstr "" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 +#: ../cinder-common.templates:2001 msgid "" "If some of these requirements are missing, do not choose this option and run " "with regular SQLite support." @@ -73,7 +59,7 @@ msgstr "" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 +#: ../cinder-common.templates:2001 msgid "" "You can change this setting later on by running \"dpkg-reconfigure -plow " "cinder\"." @@ -83,13 +69,13 @@ msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:4001 +#: ../cinder-common.templates:3001 msgid "Authentication server hostname:" msgstr "認証サーバのホスト名:" #. Type: string #. Description -#: ../cinder-common.templates:4001 +#: ../cinder-common.templates:3001 msgid "" "Please specify the hostname of the authentication server. Typically this is " "also the hostname of the OpenStack Identity Service (Keystone)." @@ -106,7 +92,7 @@ msgstr "" #. You're advised to either keep "tenant" without translating it #. or keep it aside with your translation. Example for French: #. proprietaire ("tenant") -#: ../cinder-common.templates:5001 +#: ../cinder-common.templates:4001 msgid "Authentication server tenant name:" msgstr "認証サーバの管理用アカウント (tenant) 名" @@ -119,43 +105,43 @@ msgstr "認証サーバの管理用アカウント (tenant) 名" #. You're advised to either keep "tenant" without translating it #. or keep it aside with your translation. Example for French: #. proprietaire ("tenant") -#: ../cinder-common.templates:5001 +#: ../cinder-common.templates:4001 msgid "Please specify the authentication server tenant name." msgstr "認証サーバの管理用アカウント (tenant) 名を指定してください。" #. Type: string #. Description -#: ../cinder-common.templates:6001 +#: ../cinder-common.templates:5001 msgid "Authentication server username:" msgstr "認証サーバのユーザ名:" #. Type: string #. Description -#: ../cinder-common.templates:6001 +#: ../cinder-common.templates:5001 msgid "Please specify the username to use with the authentication server." msgstr "認証サーバで利用するユーザ名を指定してください。" #. Type: password #. Description -#: ../cinder-common.templates:7001 +#: ../cinder-common.templates:6001 msgid "Authentication server password:" msgstr "認証サーバのパスワード:" #. Type: password #. Description -#: ../cinder-common.templates:7001 +#: ../cinder-common.templates:6001 msgid "Please specify the password to use with the authentication server." msgstr "認証サーバで利用するパスワードを指定してください。" #. Type: string #. Description -#: ../cinder-common.templates:8001 +#: ../cinder-common.templates:7001 msgid "Cinder volume group:" msgstr "Cinder ボリュームグループ:" #. Type: string #. Description -#: ../cinder-common.templates:8001 +#: ../cinder-common.templates:7001 msgid "" "Please specify the name of the LVM volume group on which Cinder will create " "partitions." @@ -165,7 +151,7 @@ msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:9001 +#: ../cinder-common.templates:8001 msgid "IP address of your RabbitMQ host:" msgstr "" @@ -175,8 +161,8 @@ msgstr "" #. Description #. Type: password #. Description -#: ../cinder-common.templates:9001 ../cinder-common.templates:10001 -#: ../cinder-common.templates:11001 +#: ../cinder-common.templates:8001 ../cinder-common.templates:9001 +#: ../cinder-common.templates:10001 msgid "" "In order to interoperate with other components of OpenStack, this package " "needs to connect to a central RabbitMQ server." @@ -184,7 +170,7 @@ msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:9001 +#: ../cinder-common.templates:8001 #, fuzzy #| msgid "Please specify the password to use with the authentication server." msgid "Please specify the IP address of that server." @@ -192,13 +178,13 @@ msgstr "認証サーバで利用するパスワードを指定してください #. Type: string #. Description -#: ../cinder-common.templates:10001 +#: ../cinder-common.templates:9001 msgid "Username for connection to the RabbitMQ server:" msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:10001 +#: ../cinder-common.templates:9001 #, fuzzy #| msgid "Please specify the username to use with the authentication server." msgid "Please specify the username used to connect to the RabbitMQ server." @@ -206,13 +192,13 @@ msgstr "認証サーバで利用するユーザ名を指定してください。 #. Type: password #. Description -#: ../cinder-common.templates:11001 +#: ../cinder-common.templates:10001 msgid "Password for connection to the RabbitMQ server:" msgstr "" #. Type: password #. Description -#: ../cinder-common.templates:11001 +#: ../cinder-common.templates:10001 #, fuzzy #| msgid "Please specify the password to use with the authentication server." msgid "Please specify the password used to connect to the RabbitMQ server." @@ -318,3 +304,11 @@ msgid "" msgstr "" "OpenStack は位置を示す各領域による利用可能区分を利用することができます。端末" "の登録時に利用したい区分を入力してください。" + +#~ msgid "Start Cinder services at boot?" +#~ msgstr "ブート時に Cinder サービスを開始しますか?" + +#~ msgid "" +#~ "Please choose whether you want to start Cinder services when the machine " +#~ "is booted up." +#~ msgstr "マシン起動後に Cinder サービスを開始するかどうか選択してください。" diff --git a/xenial/debian/po/pt.po b/xenial/debian/po/pt.po index 7657862ad..fcacb753c 100644 --- a/xenial/debian/po/pt.po +++ b/xenial/debian/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: cinder\n" "Report-Msgid-Bugs-To: cinder@packages.debian.org\n" -"POT-Creation-Date: 2013-10-09 23:29+0800\n" +"POT-Creation-Date: 2013-12-19 16:02+0800\n" "PO-Revision-Date: 2013-04-13 19:01+0100\n" "Last-Translator: Pedro Ribeiro \n" "Language-Team: Portuguese \n" @@ -19,28 +19,12 @@ msgstr "" #. Type: boolean #. Description #: ../cinder-common.templates:2001 -msgid "Start Cinder services at boot?" -msgstr "Iniciar serviços cinder no arranque?" - -#. Type: boolean -#. Description -#: ../cinder-common.templates:2001 -msgid "" -"Please choose whether you want to start Cinder services when the machine is " -"booted up." -msgstr "" -"Por favor escolha se pretende iniciar os serviços Cinder quando a máquina é " -"ligada." - -#. Type: boolean -#. Description -#: ../cinder-common.templates:3001 msgid "Set up a database for Cinder?" msgstr "Criar uma base de dados para o Cinder?" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 +#: ../cinder-common.templates:2001 msgid "" "No database has been set up for Cinder to use. Before continuing, you should " "make sure you have the following information:" @@ -50,7 +34,7 @@ msgstr "" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 +#: ../cinder-common.templates:2001 msgid "" " * the type of database that you want to use;\n" " * the database server hostname (that server must allow TCP connections from " @@ -66,7 +50,7 @@ msgstr "" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 +#: ../cinder-common.templates:2001 msgid "" "If some of these requirements are missing, do not choose this option and run " "with regular SQLite support." @@ -74,7 +58,7 @@ msgstr "" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 +#: ../cinder-common.templates:2001 msgid "" "You can change this setting later on by running \"dpkg-reconfigure -plow " "cinder\"." @@ -84,13 +68,13 @@ msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:4001 +#: ../cinder-common.templates:3001 msgid "Authentication server hostname:" msgstr "Nome de servidor de autenticação:" #. Type: string #. Description -#: ../cinder-common.templates:4001 +#: ../cinder-common.templates:3001 msgid "" "Please specify the hostname of the authentication server. Typically this is " "also the hostname of the OpenStack Identity Service (Keystone)." @@ -107,7 +91,7 @@ msgstr "" #. You're advised to either keep "tenant" without translating it #. or keep it aside with your translation. Example for French: #. proprietaire ("tenant") -#: ../cinder-common.templates:5001 +#: ../cinder-common.templates:4001 msgid "Authentication server tenant name:" msgstr "Nome do inquilino ('tenant') do servidor de autenticação:" @@ -120,43 +104,43 @@ msgstr "Nome do inquilino ('tenant') do servidor de autenticação:" #. You're advised to either keep "tenant" without translating it #. or keep it aside with your translation. Example for French: #. proprietaire ("tenant") -#: ../cinder-common.templates:5001 +#: ../cinder-common.templates:4001 msgid "Please specify the authentication server tenant name." msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:6001 +#: ../cinder-common.templates:5001 msgid "Authentication server username:" msgstr "Nome de utilizador do servidor de autenticação:" #. Type: string #. Description -#: ../cinder-common.templates:6001 +#: ../cinder-common.templates:5001 msgid "Please specify the username to use with the authentication server." msgstr "" #. Type: password #. Description -#: ../cinder-common.templates:7001 +#: ../cinder-common.templates:6001 msgid "Authentication server password:" msgstr "Password do servidor de autenticação:" #. Type: password #. Description -#: ../cinder-common.templates:7001 +#: ../cinder-common.templates:6001 msgid "Please specify the password to use with the authentication server." msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:8001 +#: ../cinder-common.templates:7001 msgid "Cinder volume group:" msgstr "Grupo de volumes Cinder:" #. Type: string #. Description -#: ../cinder-common.templates:8001 +#: ../cinder-common.templates:7001 msgid "" "Please specify the name of the LVM volume group on which Cinder will create " "partitions." @@ -166,7 +150,7 @@ msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:9001 +#: ../cinder-common.templates:8001 msgid "IP address of your RabbitMQ host:" msgstr "" @@ -176,8 +160,8 @@ msgstr "" #. Description #. Type: password #. Description -#: ../cinder-common.templates:9001 ../cinder-common.templates:10001 -#: ../cinder-common.templates:11001 +#: ../cinder-common.templates:8001 ../cinder-common.templates:9001 +#: ../cinder-common.templates:10001 msgid "" "In order to interoperate with other components of OpenStack, this package " "needs to connect to a central RabbitMQ server." @@ -185,7 +169,7 @@ msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:9001 +#: ../cinder-common.templates:8001 #, fuzzy #| msgid "Please enter the IP address that will be used to contact Cinder." msgid "Please specify the IP address of that server." @@ -195,25 +179,25 @@ msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:10001 +#: ../cinder-common.templates:9001 msgid "Username for connection to the RabbitMQ server:" msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:10001 +#: ../cinder-common.templates:9001 msgid "Please specify the username used to connect to the RabbitMQ server." msgstr "" #. Type: password #. Description -#: ../cinder-common.templates:11001 +#: ../cinder-common.templates:10001 msgid "Password for connection to the RabbitMQ server:" msgstr "" #. Type: password #. Description -#: ../cinder-common.templates:11001 +#: ../cinder-common.templates:10001 msgid "Please specify the password used to connect to the RabbitMQ server." msgstr "" @@ -320,3 +304,13 @@ msgstr "" "O Openstack pode ser usado usando zonas de disponibilidade, com cada região " "a representar uma localização. Por favor, indique a zona que quer usar ao " "registar o ponto de ligação." + +#~ msgid "Start Cinder services at boot?" +#~ msgstr "Iniciar serviços cinder no arranque?" + +#~ msgid "" +#~ "Please choose whether you want to start Cinder services when the machine " +#~ "is booted up." +#~ msgstr "" +#~ "Por favor escolha se pretende iniciar os serviços Cinder quando a máquina " +#~ "é ligada." diff --git a/xenial/debian/po/ru.po b/xenial/debian/po/ru.po index 8df06360a..0b8ff112c 100644 --- a/xenial/debian/po/ru.po +++ b/xenial/debian/po/ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: cinder 2013.2-1\n" "Report-Msgid-Bugs-To: cinder@packages.debian.org\n" -"POT-Creation-Date: 2013-10-09 23:29+0800\n" +"POT-Creation-Date: 2013-12-19 16:02+0800\n" "PO-Revision-Date: 2013-11-17 08:49+0400\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" @@ -21,26 +21,12 @@ msgstr "" #. Type: boolean #. Description #: ../cinder-common.templates:2001 -msgid "Start Cinder services at boot?" -msgstr "Запускать службы Cinder при включении машины?" - -#. Type: boolean -#. Description -#: ../cinder-common.templates:2001 -msgid "" -"Please choose whether you want to start Cinder services when the machine is " -"booted up." -msgstr "Укажите, нужно ли запускать службы Cinder при включении машины." - -#. Type: boolean -#. Description -#: ../cinder-common.templates:3001 msgid "Set up a database for Cinder?" msgstr "Настроить базу данных для Cinder?" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 +#: ../cinder-common.templates:2001 msgid "" "No database has been set up for Cinder to use. Before continuing, you should " "make sure you have the following information:" @@ -50,7 +36,7 @@ msgstr "" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 +#: ../cinder-common.templates:2001 msgid "" " * the type of database that you want to use;\n" " * the database server hostname (that server must allow TCP connections from " @@ -65,7 +51,7 @@ msgstr "" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 +#: ../cinder-common.templates:2001 msgid "" "If some of these requirements are missing, do not choose this option and run " "with regular SQLite support." @@ -75,7 +61,7 @@ msgstr "" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 +#: ../cinder-common.templates:2001 msgid "" "You can change this setting later on by running \"dpkg-reconfigure -plow " "cinder\"." @@ -85,13 +71,13 @@ msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:4001 +#: ../cinder-common.templates:3001 msgid "Authentication server hostname:" msgstr "Имя узла сервера аутентификации:" #. Type: string #. Description -#: ../cinder-common.templates:4001 +#: ../cinder-common.templates:3001 msgid "" "Please specify the hostname of the authentication server. Typically this is " "also the hostname of the OpenStack Identity Service (Keystone)." @@ -108,7 +94,7 @@ msgstr "" #. You're advised to either keep "tenant" without translating it #. or keep it aside with your translation. Example for French: #. proprietaire ("tenant") -#: ../cinder-common.templates:5001 +#: ../cinder-common.templates:4001 msgid "Authentication server tenant name:" msgstr "Членское имя сервера аутентификации:" @@ -121,43 +107,43 @@ msgstr "Членское имя сервера аутентификации:" #. You're advised to either keep "tenant" without translating it #. or keep it aside with your translation. Example for French: #. proprietaire ("tenant") -#: ../cinder-common.templates:5001 +#: ../cinder-common.templates:4001 msgid "Please specify the authentication server tenant name." msgstr "Укажите членское имя сервера аутентификации." #. Type: string #. Description -#: ../cinder-common.templates:6001 +#: ../cinder-common.templates:5001 msgid "Authentication server username:" msgstr "Имя пользователя для сервера аутентификации:" #. Type: string #. Description -#: ../cinder-common.templates:6001 +#: ../cinder-common.templates:5001 msgid "Please specify the username to use with the authentication server." msgstr "Введите имя пользователя для работы с сервером аутентификации." #. Type: password #. Description -#: ../cinder-common.templates:7001 +#: ../cinder-common.templates:6001 msgid "Authentication server password:" msgstr "Пароль для сервера аутентификации:" #. Type: password #. Description -#: ../cinder-common.templates:7001 +#: ../cinder-common.templates:6001 msgid "Please specify the password to use with the authentication server." msgstr "Введите пароль для работы с сервером аутентификации." #. Type: string #. Description -#: ../cinder-common.templates:8001 +#: ../cinder-common.templates:7001 msgid "Cinder volume group:" msgstr "Группа томов Cinder:" #. Type: string #. Description -#: ../cinder-common.templates:8001 +#: ../cinder-common.templates:7001 msgid "" "Please specify the name of the LVM volume group on which Cinder will create " "partitions." @@ -166,7 +152,7 @@ msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:9001 +#: ../cinder-common.templates:8001 msgid "IP address of your RabbitMQ host:" msgstr "IP-адрес узла RabbitMQ:" @@ -176,45 +162,42 @@ msgstr "IP-адрес узла RabbitMQ:" #. Description #. Type: password #. Description -#: ../cinder-common.templates:9001 ../cinder-common.templates:10001 -#: ../cinder-common.templates:11001 +#: ../cinder-common.templates:8001 ../cinder-common.templates:9001 +#: ../cinder-common.templates:10001 msgid "" "In order to interoperate with other components of OpenStack, this package " "needs to connect to a central RabbitMQ server." msgstr "" -"Для взаимодействия с другими компонентами OpenStack, этому пакету " -"необходимо подключаться к центральному серверу RabbitMQ." +"Для взаимодействия с другими компонентами OpenStack, этому пакету необходимо " +"подключаться к центральному серверу RabbitMQ." #. Type: string #. Description -#: ../cinder-common.templates:9001 -#| msgid "Please specify the password to use with the authentication server." +#: ../cinder-common.templates:8001 msgid "Please specify the IP address of that server." msgstr "Укажите IP-адрес этого сервера." #. Type: string #. Description -#: ../cinder-common.templates:10001 +#: ../cinder-common.templates:9001 msgid "Username for connection to the RabbitMQ server:" msgstr "Имя пользователя для подключения к серверу RabbitMQ:" #. Type: string #. Description -#: ../cinder-common.templates:10001 -#| msgid "Please specify the username to use with the authentication server." +#: ../cinder-common.templates:9001 msgid "Please specify the username used to connect to the RabbitMQ server." msgstr "Введите имя пользователя для подключения к серверу RabbitMQ." #. Type: password #. Description -#: ../cinder-common.templates:11001 +#: ../cinder-common.templates:10001 msgid "Password for connection to the RabbitMQ server:" msgstr "Пароль для подключения к серверу RabbitMQ:" #. Type: password #. Description -#: ../cinder-common.templates:11001 -#| msgid "Please specify the password to use with the authentication server." +#: ../cinder-common.templates:10001 msgid "Please specify the password used to connect to the RabbitMQ server." msgstr "Введите пароль для подключения к серверу RabbitMQ." @@ -320,6 +303,14 @@ msgstr "" "представляет определённое расположение. Введите зону, которую вы хотите " "использовать при регистрации конечной точки." +#~ msgid "Start Cinder services at boot?" +#~ msgstr "Запускать службы Cinder при включении машины?" + +#~ msgid "" +#~ "Please choose whether you want to start Cinder services when the machine " +#~ "is booted up." +#~ msgstr "Укажите, нужно ли запускать службы Cinder при включении машины." + #~ msgid "" #~ "If you don't choose this option, no database will be set up and Cinder " #~ "will use regular SQLite support." diff --git a/xenial/debian/po/templates.pot b/xenial/debian/po/templates.pot index 06ea8b18f..c178a2ce2 100644 --- a/xenial/debian/po/templates.pot +++ b/xenial/debian/po/templates.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: cinder\n" "Report-Msgid-Bugs-To: cinder@packages.debian.org\n" -"POT-Creation-Date: 2013-10-09 23:29+0800\n" +"POT-Creation-Date: 2013-12-19 16:02+0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -20,26 +20,12 @@ msgstr "" #. Type: boolean #. Description #: ../cinder-common.templates:2001 -msgid "Start Cinder services at boot?" -msgstr "" - -#. Type: boolean -#. Description -#: ../cinder-common.templates:2001 -msgid "" -"Please choose whether you want to start Cinder services when the machine is " -"booted up." -msgstr "" - -#. Type: boolean -#. Description -#: ../cinder-common.templates:3001 msgid "Set up a database for Cinder?" msgstr "" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 +#: ../cinder-common.templates:2001 msgid "" "No database has been set up for Cinder to use. Before continuing, you should " "make sure you have the following information:" @@ -47,7 +33,7 @@ msgstr "" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 +#: ../cinder-common.templates:2001 msgid "" " * the type of database that you want to use;\n" " * the database server hostname (that server must allow TCP connections from " @@ -58,7 +44,7 @@ msgstr "" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 +#: ../cinder-common.templates:2001 msgid "" "If some of these requirements are missing, do not choose this option and run " "with regular SQLite support." @@ -66,7 +52,7 @@ msgstr "" #. Type: boolean #. Description -#: ../cinder-common.templates:3001 +#: ../cinder-common.templates:2001 msgid "" "You can change this setting later on by running \"dpkg-reconfigure -plow " "cinder\"." @@ -74,13 +60,13 @@ msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:4001 +#: ../cinder-common.templates:3001 msgid "Authentication server hostname:" msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:4001 +#: ../cinder-common.templates:3001 msgid "" "Please specify the hostname of the authentication server. Typically this is " "also the hostname of the OpenStack Identity Service (Keystone)." @@ -95,7 +81,7 @@ msgstr "" #. You're advised to either keep "tenant" without translating it #. or keep it aside with your translation. Example for French: #. proprietaire ("tenant") -#: ../cinder-common.templates:5001 +#: ../cinder-common.templates:4001 msgid "Authentication server tenant name:" msgstr "" @@ -108,43 +94,43 @@ msgstr "" #. You're advised to either keep "tenant" without translating it #. or keep it aside with your translation. Example for French: #. proprietaire ("tenant") -#: ../cinder-common.templates:5001 +#: ../cinder-common.templates:4001 msgid "Please specify the authentication server tenant name." msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:6001 +#: ../cinder-common.templates:5001 msgid "Authentication server username:" msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:6001 +#: ../cinder-common.templates:5001 msgid "Please specify the username to use with the authentication server." msgstr "" #. Type: password #. Description -#: ../cinder-common.templates:7001 +#: ../cinder-common.templates:6001 msgid "Authentication server password:" msgstr "" #. Type: password #. Description -#: ../cinder-common.templates:7001 +#: ../cinder-common.templates:6001 msgid "Please specify the password to use with the authentication server." msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:8001 +#: ../cinder-common.templates:7001 msgid "Cinder volume group:" msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:8001 +#: ../cinder-common.templates:7001 msgid "" "Please specify the name of the LVM volume group on which Cinder will create " "partitions." @@ -152,7 +138,7 @@ msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:9001 +#: ../cinder-common.templates:8001 msgid "IP address of your RabbitMQ host:" msgstr "" @@ -162,8 +148,8 @@ msgstr "" #. Description #. Type: password #. Description -#: ../cinder-common.templates:9001 ../cinder-common.templates:10001 -#: ../cinder-common.templates:11001 +#: ../cinder-common.templates:8001 ../cinder-common.templates:9001 +#: ../cinder-common.templates:10001 msgid "" "In order to interoperate with other components of OpenStack, this package " "needs to connect to a central RabbitMQ server." @@ -171,31 +157,31 @@ msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:9001 +#: ../cinder-common.templates:8001 msgid "Please specify the IP address of that server." msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:10001 +#: ../cinder-common.templates:9001 msgid "Username for connection to the RabbitMQ server:" msgstr "" #. Type: string #. Description -#: ../cinder-common.templates:10001 +#: ../cinder-common.templates:9001 msgid "Please specify the username used to connect to the RabbitMQ server." msgstr "" #. Type: password #. Description -#: ../cinder-common.templates:11001 +#: ../cinder-common.templates:10001 msgid "Password for connection to the RabbitMQ server:" msgstr "" #. Type: password #. Description -#: ../cinder-common.templates:11001 +#: ../cinder-common.templates:10001 msgid "Please specify the password used to connect to the RabbitMQ server." msgstr ""