Commit 0a921683 authored by Seppo Jaakola's avatar Seppo Jaakola

Initial merge result with mariaDB 10: lp:maria

parent 58926b5e
...@@ -970,6 +970,8 @@ support-files/mysql.server ...@@ -970,6 +970,8 @@ support-files/mysql.server
support-files/mysql.spec support-files/mysql.spec
support-files/mysqld_multi.server support-files/mysqld_multi.server
support-files/ndb-config-2-node.ini support-files/ndb-config-2-node.ini
support-files/wsrep.cnf
support-files/wsrep_notify
TAGS TAGS
test/ndbapi/bank/bankCreator test/ndbapi/bank/bankCreator
test/ndbapi/bank/bankMakeGL test/ndbapi/bank/bankMakeGL
...@@ -1093,6 +1095,9 @@ sql/share/slovak ...@@ -1093,6 +1095,9 @@ sql/share/slovak
sql/share/spanish sql/share/spanish
sql/share/swedish sql/share/swedish
sql/share/ukrainian sql/share/ukrainian
scripts/wsrep_sst_mysqldump
scripts/wsrep_sst_rsync
scripts/wsrep_sst_xtrabackup
CPackConfig.cmake CPackConfig.cmake
CPackSourceConfig.cmake CPackSourceConfig.cmake
Docs/INFO_BIN Docs/INFO_BIN
......
...@@ -215,7 +215,7 @@ all_configs="$SSL_LIBRARY --with-plugins=max --with-plugin-ndbcluster --with-emb ...@@ -215,7 +215,7 @@ all_configs="$SSL_LIBRARY --with-plugins=max --with-plugin-ndbcluster --with-emb
alpha_cflags="$check_cpu_cflags -Wa,-m$cpu_flag" alpha_cflags="$check_cpu_cflags -Wa,-m$cpu_flag"
amd64_cflags="$check_cpu_cflags" amd64_cflags="$check_cpu_cflags"
amd64_cxxflags="" # If dropping '--with-big-tables', add here "-DBIG_TABLES" amd64_cxxflags="" # If dropping '--with-big-tables', add here "-DBIG_TABLES"
pentium_cflags="$check_cpu_cflags" pentium_cflags="$check_cpu_cflags -m32"
pentium64_cflags="$check_cpu_cflags -m64" pentium64_cflags="$check_cpu_cflags -m64"
ppc_cflags="$check_cpu_cflags" ppc_cflags="$check_cpu_cflags"
sparc_cflags="" sparc_cflags=""
......
...@@ -148,6 +148,7 @@ INCLUDE(ctest) ...@@ -148,6 +148,7 @@ INCLUDE(ctest)
INCLUDE(plugin) INCLUDE(plugin)
INCLUDE(install_macros) INCLUDE(install_macros)
INCLUDE(mysql_add_executable) INCLUDE(mysql_add_executable)
INCLUDE(wsrep)
# Handle options # Handle options
OPTION(DISABLE_SHARED OPTION(DISABLE_SHARED
...@@ -187,6 +188,12 @@ MARK_AS_ADVANCED(ENABLED_LOCAL_INFILE) ...@@ -187,6 +188,12 @@ MARK_AS_ADVANCED(ENABLED_LOCAL_INFILE)
OPTION(WITH_FAST_MUTEXES "Compile with fast mutexes" OFF) OPTION(WITH_FAST_MUTEXES "Compile with fast mutexes" OFF)
MARK_AS_ADVANCED(WITH_FAST_MUTEXES) MARK_AS_ADVANCED(WITH_FAST_MUTEXES)
OPTION(WITH_INNODB_DISALLOW_WRITES "InnoDB freeze writes patch from Google" ${WITH_WSREP})
IF (WITH_INNODB_DISALLOW_WRITES)
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DWITH_INNODB_DISALLOW_WRITES")
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DWITH_INNODB_DISALLOW_WRITES")
ENDIF()
# Set DBUG_OFF and other optional release-only flags for non-debug project types # Set DBUG_OFF and other optional release-only flags for non-debug project types
FOREACH(BUILD_TYPE RELEASE RELWITHDEBINFO MINSIZEREL) FOREACH(BUILD_TYPE RELEASE RELWITHDEBINFO MINSIZEREL)
FOREACH(LANG C CXX) FOREACH(LANG C CXX)
...@@ -298,6 +305,9 @@ ADD_SUBDIRECTORY(vio) ...@@ -298,6 +305,9 @@ ADD_SUBDIRECTORY(vio)
ADD_SUBDIRECTORY(regex) ADD_SUBDIRECTORY(regex)
ADD_SUBDIRECTORY(mysys) ADD_SUBDIRECTORY(mysys)
ADD_SUBDIRECTORY(libmysql) ADD_SUBDIRECTORY(libmysql)
IF(WITH_WSREP)
ADD_SUBDIRECTORY(wsrep)
ENDIF()
ADD_SUBDIRECTORY(client) ADD_SUBDIRECTORY(client)
ADD_SUBDIRECTORY(extra) ADD_SUBDIRECTORY(extra)
ADD_SUBDIRECTORY(libservices) ADD_SUBDIRECTORY(libservices)
...@@ -381,7 +391,7 @@ OPTIONAL ...@@ -381,7 +391,7 @@ OPTIONAL
INSTALL(FILES README DESTINATION ${INSTALL_DOCREADMEDIR} COMPONENT Readme) INSTALL(FILES README DESTINATION ${INSTALL_DOCREADMEDIR} COMPONENT Readme)
INSTALL(FILES ${CMAKE_BINARY_DIR}/Docs/INFO_SRC ${CMAKE_BINARY_DIR}/Docs/INFO_BIN DESTINATION ${INSTALL_DOCDIR}) INSTALL(FILES ${CMAKE_BINARY_DIR}/Docs/INFO_SRC ${CMAKE_BINARY_DIR}/Docs/INFO_BIN DESTINATION ${INSTALL_DOCDIR})
IF(UNIX) IF(UNIX)
INSTALL(FILES Docs/INSTALL-BINARY DESTINATION ${INSTALL_DOCREADMEDIR} COMPONENT Readme) INSTALL(FILES Docs/INSTALL-BINARY Docs/README-wsrep DESTINATION ${INSTALL_DOCREADMEDIR} COMPONENT Readme)
ENDIF() ENDIF()
INCLUDE(CPack) INCLUDE(CPack)
......
This is a release of MariaDB. This is a release of MariaDB Galera Cluster.
* https://kb.askmonty.org/en/galera/
* https://kb.askmonty.org/en/what-is-mariadb-galera-cluster/
MariaDB Galera Cluster is a synchronous multi-master cluster for MariaDB.
Features:
* Synchronous replication
* Active-active multi-master topology
* Read and write to any cluster node
* Automatic membership control, failed nodes drop from the cluster
* Automatic node joining
* True parallel replication, on row level
* Direct client connections, native MySQL look & feel
Benefits:
The above features yield several benefits for a DBMS clustering solution,
including:
* No slave lag
* No lost transactions
* Both read and write scalability
* Smaller client latencies
* Technology
MariaDB Galera Cluster uses the Galera library for the replication
implementation. To interface with Galera replication, we have enhanced MariaDB
to support the replication API definition in the wsrep API project.
* http://codership.com/products/galera_replication
* https://launchpad.net/wsrep
The implementation of the replication API in MariaDB happens in the open source
MySQL-wsrep project.
* http://www.codership.com/products/mysql-write-set-replication-project
See Also:
* About Galera Replication:
https://kb.askmonty.org/en/about-galera-replication/
* Codership: Using Galera Cluster:
http://codership.com/content/using-galera-cluster
* Galera Use Cases:
https://kb.askmonty.org/en/galera-use-cases/
* Getting Started with MariaDB Galera Cluster:
https://kb.askmonty.org/en/getting-started-with-mariadb-galera-cluster/
***************************************************************************
About MariaDB
MariaDB is designed as a drop-in replacement of MySQL(R) with more MariaDB is designed as a drop-in replacement of MySQL(R) with more
features, new storage engines, fewer bugs, and better performance. features, new storage engines, fewer bugs, and better performance.
......
...@@ -206,6 +206,16 @@ foreach my $option (@ARGV) ...@@ -206,6 +206,16 @@ foreach my $option (@ARGV)
$cmakeargs = $cmakeargs." -DMYSQL_DATADIR=".substr($option,14); $cmakeargs = $cmakeargs." -DMYSQL_DATADIR=".substr($option,14);
next; next;
} }
if ($option =~ /layout=/)
{
$cmakeargs = $cmakeargs." -DINSTALL_LAYOUT=".substr($option,7);
next;
}
if ($option =~ /with-unix-socket-path=/)
{
$cmakeargs = $cmakeargs." -DMYSQL_UNIX_ADDR=".substr($option,22);
next;
}
if ($option =~ /mysql-maintainer-mode/) if ($option =~ /mysql-maintainer-mode/)
{ {
$cmakeargs = $cmakeargs." -DMYSQL_MAINTAINER_MODE=" . $cmakeargs = $cmakeargs." -DMYSQL_MAINTAINER_MODE=" .
......
...@@ -23,11 +23,9 @@ SET(CPACK_COMPONENT_SHAREDLIBRARIES_GROUP "shared") ...@@ -23,11 +23,9 @@ SET(CPACK_COMPONENT_SHAREDLIBRARIES_GROUP "shared")
SET(CPACK_COMPONENT_COMMON_GROUP "common") SET(CPACK_COMPONENT_COMMON_GROUP "common")
SET(CPACK_COMPONENT_COMPAT_GROUP "compat") SET(CPACK_COMPONENT_COMPAT_GROUP "compat")
SET(CPACK_COMPONENTS_ALL Server ManPagesServer IniFiles Server_Scripts SET(CPACK_COMPONENTS_ALL Server ManPagesServer IniFiles Server_Scripts
SupportFiles Development ManPagesDevelopment SupportFiles Readme)
ManPagesTest Readme ManPagesClient Test
Common Client SharedLibraries)
SET(CPACK_RPM_PACKAGE_NAME "MariaDB") SET(CPACK_RPM_PACKAGE_NAME "MariaDB-Galera")
SET(CPACK_PACKAGE_FILE_NAME "${CPACK_RPM_PACKAGE_NAME}-${VERSION}-${RPM}-${CMAKE_SYSTEM_PROCESSOR}") SET(CPACK_PACKAGE_FILE_NAME "${CPACK_RPM_PACKAGE_NAME}-${VERSION}-${RPM}-${CMAKE_SYSTEM_PROCESSOR}")
SET(CPACK_RPM_PACKAGE_RELEASE 1) # FIX: add distribution name here SET(CPACK_RPM_PACKAGE_RELEASE 1) # FIX: add distribution name here
...@@ -124,32 +122,6 @@ SET(CPACK_RPM_test_PACKAGE_PROVIDES "MariaDB-test MySQL-test mysql-test") ...@@ -124,32 +122,6 @@ SET(CPACK_RPM_test_PACKAGE_PROVIDES "MariaDB-test MySQL-test mysql-test")
# workaround for lots of perl dependencies added by rpmbuild # workaround for lots of perl dependencies added by rpmbuild
SET(CPACK_RPM_test_PACKAGE_PROVIDES "${CPACK_RPM_test_PACKAGE_PROVIDES} perl(lib::mtr_gcov.pl) perl(lib::mtr_gprof.pl) perl(lib::mtr_io.pl) perl(lib::mtr_misc.pl) perl(lib::mtr_process.pl) perl(lib::v1/mtr_cases.pl) perl(lib::v1/mtr_gcov.pl) perl(lib::v1/mtr_gprof.pl) perl(lib::v1/mtr_im.pl) perl(lib::v1/mtr_io.pl) perl(lib::v1/mtr_match.pl) perl(lib::v1/mtr_misc.pl) perl(lib::v1/mtr_process.pl) perl(lib::v1/mtr_report.pl) perl(lib::v1/mtr_stress.pl) perl(lib::v1/mtr_timer.pl) perl(lib::v1/mtr_unique.pl) perl(mtr_cases) perl(mtr_io.pl) perl(mtr_match) perl(mtr_misc.pl) perl(mtr_report) perl(mtr_results) perl(mtr_unique)") SET(CPACK_RPM_test_PACKAGE_PROVIDES "${CPACK_RPM_test_PACKAGE_PROVIDES} perl(lib::mtr_gcov.pl) perl(lib::mtr_gprof.pl) perl(lib::mtr_io.pl) perl(lib::mtr_misc.pl) perl(lib::mtr_process.pl) perl(lib::v1/mtr_cases.pl) perl(lib::v1/mtr_gcov.pl) perl(lib::v1/mtr_gprof.pl) perl(lib::v1/mtr_im.pl) perl(lib::v1/mtr_io.pl) perl(lib::v1/mtr_match.pl) perl(lib::v1/mtr_misc.pl) perl(lib::v1/mtr_process.pl) perl(lib::v1/mtr_report.pl) perl(lib::v1/mtr_stress.pl) perl(lib::v1/mtr_timer.pl) perl(lib::v1/mtr_unique.pl) perl(mtr_cases) perl(mtr_io.pl) perl(mtr_match) perl(mtr_misc.pl) perl(mtr_report) perl(mtr_results) perl(mtr_unique)")
# If we want to build build MariaDB-shared-compat,
# extract compat libraries from MariaDB-shared-5.3 rpm
FILE(GLOB compat_rpm RELATIVE ${CMAKE_SOURCE_DIR}
"${CMAKE_SOURCE_DIR}/../MariaDB-shared-5.3.*.rpm")
IF (compat_rpm)
MESSAGE("Using ${compat_rpm} to build MariaDB-compat")
INSTALL(CODE "EXECUTE_PROCESS(
COMMAND rpm2cpio ${CMAKE_SOURCE_DIR}/${compat_rpm}
COMMAND cpio --extract --make-directories */libmysqlclient*.so.* -
WORKING_DIRECTORY \$ENV{DESTDIR})
EXECUTE_PROCESS(
COMMAND chmod -R a+rX .
WORKING_DIRECTORY \$ENV{DESTDIR})"
COMPONENT Compat)
SET(CPACK_COMPONENTS_ALL ${CPACK_COMPONENTS_ALL} Compat)
# RHEL6/CentOS6 install Postfix by default, and it requires
# libmysqlclient.so.16 that pulls in mysql-libs-5.1.x
# And the latter conflicts with our rpms.
# Make sure that for these distribuions all our rpms require
# MariaDB-compat, that will replace mysql-libs-5.1
IF(RPM MATCHES "(rhel|centos)6")
SET(CPACK_RPM_common_PACKAGE_REQUIRES "MariaDB-compat")
ENDIF()
ENDIF(compat_rpm)
SET(CPACK_RPM_compat_PACKAGE_REQUIRES "/bin/sh") # to mask CPACK_RPM_PACKAGE_REQUIRES SET(CPACK_RPM_compat_PACKAGE_REQUIRES "/bin/sh") # to mask CPACK_RPM_PACKAGE_REQUIRES
SET(CPACK_RPM_compat_PACKAGE_PROVIDES "mysql-libs = 5.3.5") # exact version doesn't matter as long as it greater than 5.1 SET(CPACK_RPM_compat_PACKAGE_PROVIDES "mysql-libs = 5.3.5") # exact version doesn't matter as long as it greater than 5.1
SET(CPACK_RPM_compat_PACKAGE_OBSOLETES "mysql-libs < 5.3.5") SET(CPACK_RPM_compat_PACKAGE_OBSOLETES "mysql-libs < 5.3.5")
......
...@@ -120,7 +120,7 @@ IF(NOT VERSION) ...@@ -120,7 +120,7 @@ IF(NOT VERSION)
ELSEIF(MYSQL_SERVER_SUFFIX) ELSEIF(MYSQL_SERVER_SUFFIX)
SET(PRODUCT_TAG "${MYSQL_SERVER_SUFFIX}") # Already has a leading dash SET(PRODUCT_TAG "${MYSQL_SERVER_SUFFIX}") # Already has a leading dash
ELSE() ELSE()
SET(PRODUCT_TAG) SET(PRODUCT_TAG "-galera")
ENDIF() ENDIF()
IF("${VERSION}" MATCHES "-ndb-") IF("${VERSION}" MATCHES "-ndb-")
......
...@@ -6,5 +6,6 @@ usr/sbin ...@@ -6,5 +6,6 @@ usr/sbin
usr/share/man/man8 usr/share/man/man8
usr/share/mysql usr/share/mysql
usr/share/doc/mariadb-server-10.0 usr/share/doc/mariadb-server-10.0
usr/support-files
var/run/mysqld var/run/mysqld
var/lib/mysql-upgrade var/lib/mysql-upgrade
...@@ -190,15 +190,13 @@ install: build ...@@ -190,15 +190,13 @@ install: build
# lintian overrides # lintian overrides
mkdir -p $(TMP)/usr/share/lintian/overrides/ mkdir -p $(TMP)/usr/share/lintian/overrides/
cp debian/mysql-common.lintian-overrides $(TMP)/usr/share/lintian/overrides/mysql-common cp debian/mariadb-galera-server-10.0.lintian-overrides $(TMP)/usr/share/lintian/overrides/mariadb-server-10.0
cp debian/mariadb-server-10.0.lintian-overrides $(TMP)/usr/share/lintian/overrides/mariadb-server-10.0
cp debian/mariadb-client-10.0.lintian-overrides $(TMP)/usr/share/lintian/overrides/mariadb-client-10.0
# For 5.0 -> 10.0 transition # For 5.0 -> 10.0 transition
d=$(TMP)/usr/share/mysql-common/internal-use-only/; \ d=$(TMP)/usr/share/mysql-common/internal-use-only/; \
mkdir -p $$d; \ mkdir -p $$d; \
cp debian/mariadb-server-10.0.mysql.init $$d/_etc_init.d_mysql; \ cp debian/mariadb-galera-server-10.0.mysql.init $$d/_etc_init.d_mysql; \
cp debian/mariadb-server-10.0.mysql-server.logrotate $$d/_etc_logrotate.d_mysql-server; \ cp debian/mariadb-galera-server-10.0.mysql-server.logrotate $$d/_etc_logrotate.d_mysql-server; \
cp debian/additions/debian-start $$d/_etc_mysql_debian-start; cp debian/additions/debian-start $$d/_etc_mysql_debian-start;
dh_movefiles dh_movefiles
......
...@@ -6,5 +6,6 @@ usr/sbin ...@@ -6,5 +6,6 @@ usr/sbin
usr/share/man/man8 usr/share/man/man8
usr/share/mysql usr/share/mysql
usr/share/doc/mariadb-server-10.0 usr/share/doc/mariadb-server-10.0
usr/support-files
var/run/mysqld var/run/mysqld
var/lib/mysql-upgrade var/lib/mysql-upgrade
...@@ -190,15 +190,13 @@ install: build ...@@ -190,15 +190,13 @@ install: build
# lintian overrides # lintian overrides
mkdir -p $(TMP)/usr/share/lintian/overrides/ mkdir -p $(TMP)/usr/share/lintian/overrides/
cp debian/mysql-common.lintian-overrides $(TMP)/usr/share/lintian/overrides/mysql-common cp debian/mariadb-galera-server-10.0.lintian-overrides $(TMP)/usr/share/lintian/overrides/mariadb-server-10.0
cp debian/mariadb-server-10.0.lintian-overrides $(TMP)/usr/share/lintian/overrides/mariadb-server-10.0
cp debian/mariadb-client-10.0.lintian-overrides $(TMP)/usr/share/lintian/overrides/mariadb-client-10.0
# For 5.0 -> 10.0 transition # For 5.0 -> 10.0 transition
d=$(TMP)/usr/share/mysql-common/internal-use-only/; \ d=$(TMP)/usr/share/mysql-common/internal-use-only/; \
mkdir -p $$d; \ mkdir -p $$d; \
cp debian/mariadb-server-10.0.mysql.init $$d/_etc_init.d_mysql; \ cp debian/mariadb-galera-server-10.0.mysql.init $$d/_etc_init.d_mysql; \
cp debian/mariadb-server-10.0.mysql-server.logrotate $$d/_etc_logrotate.d_mysql-server; \ cp debian/mariadb-galera-server-10.0.mysql-server.logrotate $$d/_etc_logrotate.d_mysql-server; \
cp debian/additions/debian-start $$d/_etc_mysql_debian-start; cp debian/additions/debian-start $$d/_etc_mysql_debian-start;
# install AppArmor profile # install AppArmor profile
......
The examples directory includes files that might be needed by some
developers:
- header files not installed by default
- the example file udf_example.c
usr/bin/mysql_config
usr/include/mysql
usr/lib/libmysqlclient.a
usr/lib/libmysqlclient_r.a
usr/lib/libmysqlservices.a
usr/share/aclocal/mysql.m4
usr/share/man/man1/mysql_config.1
usr/lib/libmysqlclient.so.18 usr/lib/libmysqlclient.so
usr/lib/libmysqlclient_r.so.18 usr/lib/libmysqlclient_r.so
usr/lib/libmysqlclient*.so.*
#!/bin/bash -e
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0
# vim: ts=4
usr/lib/mysql/*.a
usr/lib/mysql/*.la
FAQ:
Q: My <tab> completition is gone, why?
A: You have "no-auto-rehash" in the "[mysql]" section of /etc/mysql/my.cnf!
usr/bin/
usr/share/man/man1/
usr/share/perl5/
debian/additions/innotop/changelog.innotop
README
usr/bin/innochecksum
usr/bin/innotop
usr/bin/mysqlaccess
usr/bin/mysqladmin
usr/bin/mysqlbug
usr/bin/mysqldump
usr/bin/mysqldumpslow
usr/bin/mysql_find_rows
usr/bin/mysql_fix_extensions
usr/bin/mysqlimport
usr/bin/mysqlreport
usr/bin/mysqlshow
usr/bin/mysqlslap
usr/bin/mysql_waitpid
usr/share/lintian/overrides/mariadb-client-10.0
usr/share/man/man1/innotop.1
usr/share/man/man1/mysqlaccess.1
usr/share/man/man1/mysqladmin.1
usr/share/man/man1/mysqlbug.1
usr/share/man/man1/mysqldump.1
usr/share/man/man1/mysqldumpslow.1
usr/share/man/man1/mysql_find_rows.1
usr/share/man/man1/mysql_fix_extensions.1
usr/share/man/man1/mysqlimport.1
usr/share/man/man1/mysqlman.1
usr/share/man/man1/mysqlreport.1
usr/share/man/man1/mysqlshow.1
usr/share/man/man1/mysqlslap.1
usr/share/man/man1/mysql_tableinfo.1
usr/share/man/man1/mysql_waitpid.1
usr/share/man/man8/mysqlmanager.8
usr/bin/mysqlcheck usr/bin/mysqlrepair
usr/bin/mysqlcheck usr/bin/mysqlanalyze
usr/bin/mysqlcheck usr/bin/mysqloptimize
mariadb-client-5.3: package-has-a-duplicate-relation
mariadb-client-5.3: wrong-name-for-upstream-changelog usr/share/doc/mariadb-client-5.3/changelog.innotop.gz
mariadb-client-5.3: pkg-not-in-package-test innotop
# According to /usr/share/menu/ policy 1.4, not /usr/share/doc/debian-policy/
?package(innotop):needs="text" section="Applications/Data Management"\
title="innotop" command="/usr/bin/innotop"
usr/bin/mysql
usr/bin/mysqlcheck
usr/share/man/man1/mysql.1
usr/share/man/man1/mysqlcheck.1
etc/mysql/conf.d/mariadb.cnf
#!/bin/bash -e
if [ "$1" = "purge" ]; then
rmdir /etc/mysql/conf.d 2>/dev/null || true
rmdir /etc/mysql 2>/dev/null || true
fi
#DEBHELPER#
mariadb-server-10.0: command-with-path-in-maintainer-script postinst mariadb-galera-server-10.0: command-with-path-in-maintainer-script postinst
mariadb-server-10.0: possible-bashism-in-maintainer-script postinst:81 'p{("a".."z","A".."Z",0..9)[int(rand(62))]}' mariadb-galera-server-10.0: possible-bashism-in-maintainer-script postinst:81 'p{("a".."z","A".."Z",0..9)[int(rand(62))]}'
mariadb-server-10.0: possible-bashism-in-maintainer-script preinst:33 '${cmd/ */}' mariadb-galera-server-10.0: possible-bashism-in-maintainer-script preinst:33 '${cmd/ */}'
mariadb-server-10.0: statically-linked-binary ./usr/bin/mysql_tzinfo_to_sql mariadb-galera-server-10.0: statically-linked-binary ./usr/bin/mysql_tzinfo_to_sql
mariadb-server-10.0: statically-linked-binary ./usr/sbin/mysqld mariadb-galera-server-10.0: statically-linked-binary ./usr/sbin/mysqld
usr/sbin/mysqld
usr/share/man/man8/mysqld.8
usr/share/mysql/charsets
usr/share/mysql/czech
usr/share/mysql/danish
usr/share/mysql/dutch
usr/share/mysql/english
usr/share/mysql/estonian
usr/share/mysql/french
usr/share/mysql/german
usr/share/mysql/greek
usr/share/mysql/hungarian
usr/share/mysql/italian
usr/share/mysql/japanese
usr/share/mysql/korean
usr/share/mysql/norwegian
usr/share/mysql/norwegian-ny
usr/share/mysql/polish
usr/share/mysql/portuguese
usr/share/mysql/romanian
usr/share/mysql/russian
usr/share/mysql/serbian
usr/share/mysql/slovak
usr/share/mysql/spanish
usr/share/mysql/swedish
usr/share/mysql/ukrainian
usr/bin
usr/share/man/man1
usr/share/mysql/mysql-test
usr/share/mysql/mysql-test/extra
usr/share/mysql/mysql-test/extra/binlog_tests
usr/share/mysql/mysql-test/extra/rpl_tests
usr/share/mysql/mysql-test/lib
usr/share/mysql/mysql-test/lib/My
usr/share/mysql/mysql-test/lib/My/SafeProcess
usr/share/mysql/mysql-test/lib/My/File
usr/share/mysql/mysql-test/lib/v1
usr/share/mysql/mysql-test/lib/v1/My
usr/share/mysql/mysql-test/collections
usr/share/mysql/mysql-test/t
usr/share/mysql/mysql-test/r
usr/share/mysql/mysql-test/include
usr/share/mysql/mysql-test/suite
usr/share/mysql/mysql-test/suite/parts
usr/share/mysql/mysql-test/suite/parts/inc
usr/share/mysql/mysql-test/suite/parts/t
usr/share/mysql/mysql-test/suite/parts/r
usr/share/mysql/mysql-test/suite/rpl_ndb
usr/share/mysql/mysql-test/suite/rpl_ndb/t
usr/share/mysql/mysql-test/suite/rpl_ndb/r
usr/share/mysql/mysql-test/suite/bugs
usr/share/mysql/mysql-test/suite/bugs/t
usr/share/mysql/mysql-test/suite/bugs/r
usr/share/mysql/mysql-test/suite/bugs/data
usr/share/mysql/mysql-test/suite/rpl
usr/share/mysql/mysql-test/suite/rpl/t
usr/share/mysql/mysql-test/suite/rpl/r
usr/share/mysql/mysql-test/suite/rpl/include
usr/share/mysql/mysql-test/suite/innodb
usr/share/mysql/mysql-test/suite/innodb/t
usr/share/mysql/mysql-test/suite/innodb/r
usr/share/mysql/mysql-test/suite/innodb/include
usr/share/mysql/mysql-test/suite/manual
usr/share/mysql/mysql-test/suite/manual/t
usr/share/mysql/mysql-test/suite/manual/r
usr/share/mysql/mysql-test/suite/stress
usr/share/mysql/mysql-test/suite/stress/t
usr/share/mysql/mysql-test/suite/stress/r
usr/share/mysql/mysql-test/suite/stress/include
usr/share/mysql/mysql-test/suite/jp
usr/share/mysql/mysql-test/suite/jp/t
usr/share/mysql/mysql-test/suite/jp/r
usr/share/mysql/mysql-test/suite/jp/include
usr/share/mysql/mysql-test/suite/jp/std_data
usr/share/mysql/mysql-test/suite/ndb
usr/share/mysql/mysql-test/suite/ndb/t
usr/share/mysql/mysql-test/suite/ndb/r
usr/share/mysql/mysql-test/suite/maria
usr/share/mysql/mysql-test/suite/maria/t
usr/share/mysql/mysql-test/suite/maria/r
usr/share/mysql/mysql-test/suite/funcs_2
usr/share/mysql/mysql-test/suite/funcs_2/lib
usr/share/mysql/mysql-test/suite/funcs_2/t
usr/share/mysql/mysql-test/suite/funcs_2/charset
usr/share/mysql/mysql-test/suite/funcs_2/r
usr/share/mysql/mysql-test/suite/funcs_2/include
usr/share/mysql/mysql-test/suite/funcs_2/data
usr/share/mysql/mysql-test/suite/binlog
usr/share/mysql/mysql-test/suite/binlog/t
usr/share/mysql/mysql-test/suite/binlog/r
usr/share/mysql/mysql-test/suite/binlog/std_data
usr/share/mysql/mysql-test/suite/ndb_team
usr/share/mysql/mysql-test/suite/ndb_team/t
usr/share/mysql/mysql-test/suite/ndb_team/r
usr/share/mysql/mysql-test/suite/federated
usr/share/mysql/mysql-test/suite/pbxt
usr/share/mysql/mysql-test/suite/pbxt/t
usr/share/mysql/mysql-test/suite/pbxt/r
usr/share/mysql/mysql-test/suite/funcs_1
usr/share/mysql/mysql-test/suite/funcs_1/cursors
usr/share/mysql/mysql-test/suite/funcs_1/bitdata
usr/share/mysql/mysql-test/suite/funcs_1/views
usr/share/mysql/mysql-test/suite/funcs_1/storedproc
usr/share/mysql/mysql-test/suite/funcs_1/triggers
usr/share/mysql/mysql-test/suite/funcs_1/lib
usr/share/mysql/mysql-test/suite/funcs_1/t
usr/share/mysql/mysql-test/suite/funcs_1/r
usr/share/mysql/mysql-test/suite/funcs_1/include
usr/share/mysql/mysql-test/suite/funcs_1/datadict
usr/share/mysql/mysql-test/suite/vcol
usr/share/mysql/mysql-test/suite/vcol/inc
usr/share/mysql/mysql-test/suite/vcol/t
usr/share/mysql/mysql-test/suite/vcol/r
usr/share/mysql/mysql-test/suite/oqgraph
usr/share/mysql/mysql-test/suite/oqgraph/t
usr/share/mysql/mysql-test/suite/oqgraph/r
usr/share/mysql/mysql-test/suite/oqgraph/include
usr/share/mysql/mysql-test/std_data
usr/share/mysql/mysql-test/std_data/ndb_backup50
usr/share/mysql/mysql-test/std_data/parts
usr/share/mysql/mysql-test/std_data/ndb_backup51_data_le
usr/share/mysql/mysql-test/std_data/ndb_backup51_data_be
usr/share/mysql/mysql-test/std_data/ndb_backup51
usr/share/mysql/mysql-test/std_data/funcs_1
usr/bin/mysql_client_test
usr/bin/mysql_client_test_embedded
usr/bin/mysqltest_embedded
usr/share/man/man1/mysql_client_test.1
usr/share/man/man1/mysql_client_test_embedded.1
usr/bin/mysqltest
usr/share/man/man1/mysqltest.1
usr/share/man/man1/mysqltest_embedded.1
usr/share/mysql/mysql-test
usr/share/mysql/mysql-test/mysql-test-run.pl usr/share/mysql/mysql-test/mysql-test-run
usr/share/mysql/mysql-test/mysql-test-run.pl usr/share/mysql/mysql-test/mtr
etc/mysql/my.cnf
usr/share/mysql-common/internal-use-only
usr/share/lintian/overrides/mysql-common
script-not-executable ./usr/share/mysql-common/internal-use-only/_etc_init.d_mysql
script-not-executable ./usr/share/mysql-common/internal-use-only/_etc_mysql_debian-start
#!/bin/bash -e
if [ "$1" = "purge" ]; then
rmdir /etc/mysql 2>/dev/null || true
fi
#DEBHELPER#
[type: gettext/rfc822deb] mariadb-server-10.0.templates [type: gettext/rfc822deb] mariadb-galera-server-10.0.templates
...@@ -27,19 +27,19 @@ msgstr "" ...@@ -27,19 +27,19 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "Really proceed with downgrade?" msgid "Really proceed with downgrade?"
msgstr "هل فعلاً تريد التثبيط؟" msgstr "هل فعلاً تريد التثبيط؟"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "A file named /var/lib/mysql/debian-*.flag exists on this system." msgid "A file named /var/lib/mysql/debian-*.flag exists on this system."
msgstr "هناك ملف مسمى /var/lib/mysql/debian-*.flag موجود على هذا النظام." msgstr "هناك ملف مسمى /var/lib/mysql/debian-*.flag موجود على هذا النظام."
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "Such file is an indication that a mariadb-server package with a higher " #| "Such file is an indication that a mariadb-server package with a higher "
...@@ -52,7 +52,7 @@ msgstr "" ...@@ -52,7 +52,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "" msgid ""
"There is no guarantee that the version you're currently installing will be " "There is no guarantee that the version you're currently installing will be "
"able to use the current databases." "able to use the current databases."
...@@ -62,13 +62,13 @@ msgstr "" ...@@ -62,13 +62,13 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "Important note for NIS/YP users" msgid "Important note for NIS/YP users"
msgstr "ملاحظة هامة لمستخدمي NIS/YP" msgstr "ملاحظة هامة لمستخدمي NIS/YP"
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"Using MariaDB under NIS/YP requires a mysql user account to be added on the " "Using MariaDB under NIS/YP requires a mysql user account to be added on the "
"local system with:" "local system with:"
...@@ -76,7 +76,7 @@ msgstr "" ...@@ -76,7 +76,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "You should also check the permissions and the owner of the /var/lib/mysql " #| "You should also check the permissions and the owner of the /var/lib/mysql "
...@@ -88,13 +88,13 @@ msgstr "عليك أيضاً أن تقوم بالتأكد من صلاحيات م ...@@ -88,13 +88,13 @@ msgstr "عليك أيضاً أن تقوم بالتأكد من صلاحيات م
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "Remove all MariaDB databases?" msgid "Remove all MariaDB databases?"
msgstr "إزالة جميع قواعد بيانات MariaDB؟" msgstr "إزالة جميع قواعد بيانات MariaDB؟"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"The /var/lib/mysql directory which contains the MariaDB databases is about " "The /var/lib/mysql directory which contains the MariaDB databases is about "
"to be removed." "to be removed."
...@@ -102,7 +102,7 @@ msgstr "الدليل /var/lib/mysql الذي يحتوي قواعد بيانات ...@@ -102,7 +102,7 @@ msgstr "الدليل /var/lib/mysql الذي يحتوي قواعد بيانات
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"If you're removing the MariaDB package in order to later install a more " "If you're removing the MariaDB package in order to later install a more "
"recent version or if a different mariadb-server package is already using it, " "recent version or if a different mariadb-server package is already using it, "
...@@ -113,13 +113,13 @@ msgstr "" ...@@ -113,13 +113,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
msgid "Start the MariaDB server on boot?" msgid "Start the MariaDB server on boot?"
msgstr "تشغيل خادم MariaDB عند الإقلاع؟" msgstr "تشغيل خادم MariaDB عند الإقلاع؟"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
msgid "" msgid ""
"The MariaDB server can be launched automatically at boot time or manually " "The MariaDB server can be launched automatically at boot time or manually "
"with the '/etc/init.d/mysql start' command." "with the '/etc/init.d/mysql start' command."
...@@ -129,13 +129,13 @@ msgstr "" ...@@ -129,13 +129,13 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "New password for the MariaDB \"root\" user:" msgid "New password for the MariaDB \"root\" user:"
msgstr "كلمة المرور الجديدة لمستخد \"root\" الخاص بـMariaDB:" msgstr "كلمة المرور الجديدة لمستخد \"root\" الخاص بـMariaDB:"
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "" msgid ""
"While not mandatory, it is highly recommended that you set a password for " "While not mandatory, it is highly recommended that you set a password for "
"the MariaDB administrative \"root\" user." "the MariaDB administrative \"root\" user."
...@@ -145,7 +145,7 @@ msgstr "" ...@@ -145,7 +145,7 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
#, fuzzy #, fuzzy
#| msgid "If that field is left blank, the password will not be changed." #| msgid "If that field is left blank, the password will not be changed."
msgid "If this field is left blank, the password will not be changed." msgid "If this field is left blank, the password will not be changed."
...@@ -153,7 +153,7 @@ msgstr "إن ترك الحقل فارغاً، فلن يتم تغيير كلمة ...@@ -153,7 +153,7 @@ msgstr "إن ترك الحقل فارغاً، فلن يتم تغيير كلمة
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:7001 #: ../mariadb-galera-server-10.0.templates:7001
#, fuzzy #, fuzzy
#| msgid "New password for the MariaDB \"root\" user:" #| msgid "New password for the MariaDB \"root\" user:"
msgid "Repeat password for the MariaDB \"root\" user:" msgid "Repeat password for the MariaDB \"root\" user:"
...@@ -161,13 +161,13 @@ msgstr "كلمة المرور الجديدة لمستخد \"root\" الخاص ب ...@@ -161,13 +161,13 @@ msgstr "كلمة المرور الجديدة لمستخد \"root\" الخاص ب
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "Unable to set password for the MariaDB \"root\" user" msgid "Unable to set password for the MariaDB \"root\" user"
msgstr "تعذر تعيين كلمة مرور للمستخدم \"root\" الخاص بـMariaDB." msgstr "تعذر تعيين كلمة مرور للمستخدم \"root\" الخاص بـMariaDB."
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "" msgid ""
"An error occurred while setting the password for the MariaDB administrative " "An error occurred while setting the password for the MariaDB administrative "
"user. This may have happened because the account already has a password, or " "user. This may have happened because the account already has a password, or "
...@@ -179,7 +179,7 @@ msgstr "" ...@@ -179,7 +179,7 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "You should check the account's password after tha package installation." #| "You should check the account's password after tha package installation."
...@@ -188,7 +188,7 @@ msgstr "يجب عليك التحقق من كلمة مرور الحساب عقب ...@@ -188,7 +188,7 @@ msgstr "يجب عليك التحقق من كلمة مرور الحساب عقب
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "Please read the /usr/share/doc/mysql-server-5.1/README.Debian file for " #| "Please read the /usr/share/doc/mysql-server-5.1/README.Debian file for "
...@@ -202,25 +202,25 @@ msgstr "" ...@@ -202,25 +202,25 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "Password input error" msgid "Password input error"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "The two passwords you entered were not the same. Please try again." msgid "The two passwords you entered were not the same. Please try again."
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "NDB Cluster seems to be in use" msgid "NDB Cluster seems to be in use"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "" msgid ""
"MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new " "MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new "
"mysql-cluster package and remove all lines starting with \"ndb\" from all " "mysql-cluster package and remove all lines starting with \"ndb\" from all "
......
...@@ -17,19 +17,19 @@ msgstr "" ...@@ -17,19 +17,19 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "Really proceed with downgrade?" msgid "Really proceed with downgrade?"
msgstr "" msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "A file named /var/lib/mysql/debian-*.flag exists on this system." msgid "A file named /var/lib/mysql/debian-*.flag exists on this system."
msgstr "" msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "" msgid ""
"Such a file is an indication that a mariadb-server package with a higher " "Such a file is an indication that a mariadb-server package with a higher "
"version has been installed previously." "version has been installed previously."
...@@ -37,7 +37,7 @@ msgstr "" ...@@ -37,7 +37,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "" msgid ""
"There is no guarantee that the version you're currently installing will be " "There is no guarantee that the version you're currently installing will be "
"able to use the current databases." "able to use the current databases."
...@@ -45,7 +45,7 @@ msgstr "" ...@@ -45,7 +45,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
#, fuzzy #, fuzzy
#| msgid "Important note for NIS/YP users!" #| msgid "Important note for NIS/YP users!"
msgid "Important note for NIS/YP users" msgid "Important note for NIS/YP users"
...@@ -53,7 +53,7 @@ msgstr "Nota important pels usuaris de NIS/YP" ...@@ -53,7 +53,7 @@ msgstr "Nota important pels usuaris de NIS/YP"
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"Using MariaDB under NIS/YP requires a mysql user account to be added on the " "Using MariaDB under NIS/YP requires a mysql user account to be added on the "
"local system with:" "local system with:"
...@@ -61,7 +61,7 @@ msgstr "" ...@@ -61,7 +61,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"You should also check the permissions and ownership of the /var/lib/mysql " "You should also check the permissions and ownership of the /var/lib/mysql "
"directory:" "directory:"
...@@ -69,13 +69,13 @@ msgstr "" ...@@ -69,13 +69,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "Remove all MariaDB databases?" msgid "Remove all MariaDB databases?"
msgstr "" msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"The /var/lib/mysql directory which contains the MariaDB databases is about " "The /var/lib/mysql directory which contains the MariaDB databases is about "
"to be removed." "to be removed."
...@@ -83,7 +83,7 @@ msgstr "" ...@@ -83,7 +83,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"If you're removing the MariaDB package in order to later install a more " "If you're removing the MariaDB package in order to later install a more "
"recent version or if a different mariadb-server package is already using it, " "recent version or if a different mariadb-server package is already using it, "
...@@ -92,7 +92,7 @@ msgstr "" ...@@ -92,7 +92,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
#, fuzzy #, fuzzy
#| msgid "Should MySQL start on boot?" #| msgid "Should MySQL start on boot?"
msgid "Start the MariaDB server on boot?" msgid "Start the MariaDB server on boot?"
...@@ -100,7 +100,7 @@ msgstr "Voleu que el MariaDB s'inici ...@@ -100,7 +100,7 @@ msgstr "Voleu que el MariaDB s'inici
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
#, fuzzy #, fuzzy
msgid "" msgid ""
"The MariaDB server can be launched automatically at boot time or manually " "The MariaDB server can be launched automatically at boot time or manually "
...@@ -112,13 +112,13 @@ msgstr "" ...@@ -112,13 +112,13 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "New password for the MariaDB \"root\" user:" msgid "New password for the MariaDB \"root\" user:"
msgstr "" msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "" msgid ""
"While not mandatory, it is highly recommended that you set a password for " "While not mandatory, it is highly recommended that you set a password for "
"the MariaDB administrative \"root\" user." "the MariaDB administrative \"root\" user."
...@@ -126,25 +126,25 @@ msgstr "" ...@@ -126,25 +126,25 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "If this field is left blank, the password will not be changed." msgid "If this field is left blank, the password will not be changed."
msgstr "" msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:7001 #: ../mariadb-galera-server-10.0.templates:7001
msgid "Repeat password for the MariaDB \"root\" user:" msgid "Repeat password for the MariaDB \"root\" user:"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "Unable to set password for the MariaDB \"root\" user" msgid "Unable to set password for the MariaDB \"root\" user"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "" msgid ""
"An error occurred while setting the password for the MariaDB administrative " "An error occurred while setting the password for the MariaDB administrative "
"user. This may have happened because the account already has a password, or " "user. This may have happened because the account already has a password, or "
...@@ -153,13 +153,13 @@ msgstr "" ...@@ -153,13 +153,13 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "You should check the account's password after the package installation." msgid "You should check the account's password after the package installation."
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "" msgid ""
"Please read the /usr/share/doc/mariadb-server-10.0/README.Debian file for " "Please read the /usr/share/doc/mariadb-server-10.0/README.Debian file for "
"more information." "more information."
...@@ -167,25 +167,25 @@ msgstr "" ...@@ -167,25 +167,25 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "Password input error" msgid "Password input error"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "The two passwords you entered were not the same. Please try again." msgid "The two passwords you entered were not the same. Please try again."
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "NDB Cluster seems to be in use" msgid "NDB Cluster seems to be in use"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "" msgid ""
"MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new " "MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new "
"mysql-cluster package and remove all lines starting with \"ndb\" from all " "mysql-cluster package and remove all lines starting with \"ndb\" from all "
......
...@@ -26,19 +26,19 @@ msgstr "" ...@@ -26,19 +26,19 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "Really proceed with downgrade?" msgid "Really proceed with downgrade?"
msgstr "Opravdu pokračovat v degradaci?" msgstr "Opravdu pokračovat v degradaci?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "A file named /var/lib/mysql/debian-*.flag exists on this system." msgid "A file named /var/lib/mysql/debian-*.flag exists on this system."
msgstr "V systému existuje soubor /var/lib/mysql/debian-*.flag." msgstr "V systému existuje soubor /var/lib/mysql/debian-*.flag."
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "Such file is an indication that a mariadb-server package with a higher " #| "Such file is an indication that a mariadb-server package with a higher "
...@@ -51,7 +51,7 @@ msgstr "" ...@@ -51,7 +51,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "" msgid ""
"There is no guarantee that the version you're currently installing will be " "There is no guarantee that the version you're currently installing will be "
"able to use the current databases." "able to use the current databases."
...@@ -61,13 +61,13 @@ msgstr "" ...@@ -61,13 +61,13 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "Important note for NIS/YP users" msgid "Important note for NIS/YP users"
msgstr "Důležitá poznámka pro uživatele NIS/YP" msgstr "Důležitá poznámka pro uživatele NIS/YP"
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"Using MariaDB under NIS/YP requires a mysql user account to be added on the " "Using MariaDB under NIS/YP requires a mysql user account to be added on the "
"local system with:" "local system with:"
...@@ -75,7 +75,7 @@ msgstr "" ...@@ -75,7 +75,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "You should also check the permissions and the owner of the /var/lib/mysql " #| "You should also check the permissions and the owner of the /var/lib/mysql "
...@@ -88,13 +88,13 @@ msgstr "" ...@@ -88,13 +88,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "Remove all MariaDB databases?" msgid "Remove all MariaDB databases?"
msgstr "Odstranit všechny MariaDB databáze?" msgstr "Odstranit všechny MariaDB databáze?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"The /var/lib/mysql directory which contains the MariaDB databases is about " "The /var/lib/mysql directory which contains the MariaDB databases is about "
"to be removed." "to be removed."
...@@ -104,7 +104,7 @@ msgstr "" ...@@ -104,7 +104,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"If you're removing the MariaDB package in order to later install a more " "If you're removing the MariaDB package in order to later install a more "
"recent version or if a different mariadb-server package is already using it, " "recent version or if a different mariadb-server package is already using it, "
...@@ -116,13 +116,13 @@ msgstr "" ...@@ -116,13 +116,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
msgid "Start the MariaDB server on boot?" msgid "Start the MariaDB server on boot?"
msgstr "Spustit MariaDB server při startu systému?" msgstr "Spustit MariaDB server při startu systému?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
msgid "" msgid ""
"The MariaDB server can be launched automatically at boot time or manually " "The MariaDB server can be launched automatically at boot time or manually "
"with the '/etc/init.d/mysql start' command." "with the '/etc/init.d/mysql start' command."
...@@ -132,13 +132,13 @@ msgstr "" ...@@ -132,13 +132,13 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "New password for the MariaDB \"root\" user:" msgid "New password for the MariaDB \"root\" user:"
msgstr "Nové heslo MariaDB uživatele \"root\":" msgstr "Nové heslo MariaDB uživatele \"root\":"
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "" msgid ""
"While not mandatory, it is highly recommended that you set a password for " "While not mandatory, it is highly recommended that you set a password for "
"the MariaDB administrative \"root\" user." "the MariaDB administrative \"root\" user."
...@@ -148,7 +148,7 @@ msgstr "" ...@@ -148,7 +148,7 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
#, fuzzy #, fuzzy
#| msgid "If that field is left blank, the password will not be changed." #| msgid "If that field is left blank, the password will not be changed."
msgid "If this field is left blank, the password will not be changed." msgid "If this field is left blank, the password will not be changed."
...@@ -156,7 +156,7 @@ msgstr "Ponecháte-li pole prázdné, heslo se nezmění." ...@@ -156,7 +156,7 @@ msgstr "Ponecháte-li pole prázdné, heslo se nezmění."
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:7001 #: ../mariadb-galera-server-10.0.templates:7001
#, fuzzy #, fuzzy
#| msgid "New password for the MySQL \"root\" user:" #| msgid "New password for the MySQL \"root\" user:"
msgid "Repeat password for the MariaDB \"root\" user:" msgid "Repeat password for the MariaDB \"root\" user:"
...@@ -164,13 +164,13 @@ msgstr "Nové heslo MariaDB uživatele \"root\":" ...@@ -164,13 +164,13 @@ msgstr "Nové heslo MariaDB uživatele \"root\":"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "Unable to set password for the MariaDB \"root\" user" msgid "Unable to set password for the MariaDB \"root\" user"
msgstr "Nelze nastavit heslo MariaDB uživatele \"root\"" msgstr "Nelze nastavit heslo MariaDB uživatele \"root\""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "" msgid ""
"An error occurred while setting the password for the MariaDB administrative " "An error occurred while setting the password for the MariaDB administrative "
"user. This may have happened because the account already has a password, or " "user. This may have happened because the account already has a password, or "
...@@ -182,7 +182,7 @@ msgstr "" ...@@ -182,7 +182,7 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "You should check the account's password after tha package installation." #| "You should check the account's password after tha package installation."
...@@ -191,7 +191,7 @@ msgstr "Po instalaci balíku byste měli heslo ověřit." ...@@ -191,7 +191,7 @@ msgstr "Po instalaci balíku byste měli heslo ověřit."
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "Please read the /usr/share/doc/mysql-server-5.1/README.Debian file for " #| "Please read the /usr/share/doc/mysql-server-5.1/README.Debian file for "
...@@ -204,25 +204,25 @@ msgstr "" ...@@ -204,25 +204,25 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "Password input error" msgid "Password input error"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "The two passwords you entered were not the same. Please try again." msgid "The two passwords you entered were not the same. Please try again."
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "NDB Cluster seems to be in use" msgid "NDB Cluster seems to be in use"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "" msgid ""
"MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new " "MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new "
"mysql-cluster package and remove all lines starting with \"ndb\" from all " "mysql-cluster package and remove all lines starting with \"ndb\" from all "
......
...@@ -27,20 +27,20 @@ msgstr "" ...@@ -27,20 +27,20 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "Really proceed with downgrade?" msgid "Really proceed with downgrade?"
msgstr "nsker du virkelig at fortstte nedgraderingen?" msgstr "nsker du virkelig at fortstte nedgraderingen?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "A file named /var/lib/mysql/debian-*.flag exists on this system." msgid "A file named /var/lib/mysql/debian-*.flag exists on this system."
msgstr "" msgstr ""
"Der er en fil med navnet /var/lib/mysql/debian-*.flag p dette system." "Der er en fil med navnet /var/lib/mysql/debian-*.flag p dette system."
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "Such file is an indication that a mariadb-server package with a higher " #| "Such file is an indication that a mariadb-server package with a higher "
...@@ -54,7 +54,7 @@ msgstr "" ...@@ -54,7 +54,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "" msgid ""
"There is no guarantee that the version you're currently installing will be " "There is no guarantee that the version you're currently installing will be "
"able to use the current databases." "able to use the current databases."
...@@ -64,13 +64,13 @@ msgstr "" ...@@ -64,13 +64,13 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "Important note for NIS/YP users" msgid "Important note for NIS/YP users"
msgstr "Vigtig oplysning til NIS/YP-brugere" msgstr "Vigtig oplysning til NIS/YP-brugere"
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"Using MariaDB under NIS/YP requires a mysql user account to be added on the " "Using MariaDB under NIS/YP requires a mysql user account to be added on the "
"local system with:" "local system with:"
...@@ -78,7 +78,7 @@ msgstr "" ...@@ -78,7 +78,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "You should also check the permissions and the owner of the /var/lib/mysql " #| "You should also check the permissions and the owner of the /var/lib/mysql "
...@@ -91,13 +91,13 @@ msgstr "" ...@@ -91,13 +91,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "Remove all MariaDB databases?" msgid "Remove all MariaDB databases?"
msgstr "Fjern alle MariaDB-databaser?" msgstr "Fjern alle MariaDB-databaser?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"The /var/lib/mysql directory which contains the MariaDB databases is about " "The /var/lib/mysql directory which contains the MariaDB databases is about "
"to be removed." "to be removed."
...@@ -107,7 +107,7 @@ msgstr "" ...@@ -107,7 +107,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"If you're removing the MariaDB package in order to later install a more " "If you're removing the MariaDB package in order to later install a more "
"recent version or if a different mariadb-server package is already using it, " "recent version or if a different mariadb-server package is already using it, "
...@@ -119,13 +119,13 @@ msgstr "" ...@@ -119,13 +119,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
msgid "Start the MariaDB server on boot?" msgid "Start the MariaDB server on boot?"
msgstr "Start MariaDB-serveren under systemopstart?" msgstr "Start MariaDB-serveren under systemopstart?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
msgid "" msgid ""
"The MariaDB server can be launched automatically at boot time or manually " "The MariaDB server can be launched automatically at boot time or manually "
"with the '/etc/init.d/mysql start' command." "with the '/etc/init.d/mysql start' command."
...@@ -135,13 +135,13 @@ msgstr "" ...@@ -135,13 +135,13 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "New password for the MariaDB \"root\" user:" msgid "New password for the MariaDB \"root\" user:"
msgstr "Ny adgangskode for MariaDB's \"root\"-bruger:" msgstr "Ny adgangskode for MariaDB's \"root\"-bruger:"
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "" msgid ""
"While not mandatory, it is highly recommended that you set a password for " "While not mandatory, it is highly recommended that you set a password for "
"the MariaDB administrative \"root\" user." "the MariaDB administrative \"root\" user."
...@@ -151,7 +151,7 @@ msgstr "" ...@@ -151,7 +151,7 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
#, fuzzy #, fuzzy
#| msgid "If that field is left blank, the password will not be changed." #| msgid "If that field is left blank, the password will not be changed."
msgid "If this field is left blank, the password will not be changed." msgid "If this field is left blank, the password will not be changed."
...@@ -159,7 +159,7 @@ msgstr "Hvis du lader dette felt st ...@@ -159,7 +159,7 @@ msgstr "Hvis du lader dette felt st
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:7001 #: ../mariadb-galera-server-10.0.templates:7001
#, fuzzy #, fuzzy
#| msgid "New password for the MySQL \"root\" user:" #| msgid "New password for the MySQL \"root\" user:"
msgid "Repeat password for the MariaDB \"root\" user:" msgid "Repeat password for the MariaDB \"root\" user:"
...@@ -167,13 +167,13 @@ msgstr "Ny adgangskode for MariaDB's \"root\"-bruger:" ...@@ -167,13 +167,13 @@ msgstr "Ny adgangskode for MariaDB's \"root\"-bruger:"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "Unable to set password for the MariaDB \"root\" user" msgid "Unable to set password for the MariaDB \"root\" user"
msgstr "Kunne ikke stte adgangskoden for MariaDB's \"root\"-bruger" msgstr "Kunne ikke stte adgangskoden for MariaDB's \"root\"-bruger"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "" msgid ""
"An error occurred while setting the password for the MariaDB administrative " "An error occurred while setting the password for the MariaDB administrative "
"user. This may have happened because the account already has a password, or " "user. This may have happened because the account already has a password, or "
...@@ -186,13 +186,13 @@ msgstr "" ...@@ -186,13 +186,13 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "You should check the account's password after the package installation." msgid "You should check the account's password after the package installation."
msgstr "Du br tjekke kontoens adgangskode efter pakkeinstallationen." msgstr "Du br tjekke kontoens adgangskode efter pakkeinstallationen."
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "Please read the /usr/share/doc/mysql-server-5.1/README.Debian file for " #| "Please read the /usr/share/doc/mysql-server-5.1/README.Debian file for "
...@@ -206,25 +206,25 @@ msgstr "" ...@@ -206,25 +206,25 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "Password input error" msgid "Password input error"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "The two passwords you entered were not the same. Please try again." msgid "The two passwords you entered were not the same. Please try again."
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "NDB Cluster seems to be in use" msgid "NDB Cluster seems to be in use"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "" msgid ""
"MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new " "MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new "
"mysql-cluster package and remove all lines starting with \"ndb\" from all " "mysql-cluster package and remove all lines starting with \"ndb\" from all "
......
...@@ -29,13 +29,13 @@ msgstr "" ...@@ -29,13 +29,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "Really proceed with downgrade?" msgid "Really proceed with downgrade?"
msgstr "Möchten Sie wirklich eine ältere Version einspielen?" msgstr "Möchten Sie wirklich eine ältere Version einspielen?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "A file named /var/lib/mysql/debian-*.flag exists on this system." msgid "A file named /var/lib/mysql/debian-*.flag exists on this system."
msgstr "" msgstr ""
"Auf diesem System existiert eine Datei mit dem Namen /var/lib/mysql/debian-*." "Auf diesem System existiert eine Datei mit dem Namen /var/lib/mysql/debian-*."
...@@ -43,7 +43,7 @@ msgstr "" ...@@ -43,7 +43,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "" msgid ""
"Such a file is an indication that a mariadb-server package with a higher " "Such a file is an indication that a mariadb-server package with a higher "
"version has been installed previously." "version has been installed previously."
...@@ -53,7 +53,7 @@ msgstr "" ...@@ -53,7 +53,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "" msgid ""
"There is no guarantee that the version you're currently installing will be " "There is no guarantee that the version you're currently installing will be "
"able to use the current databases." "able to use the current databases."
...@@ -63,13 +63,13 @@ msgstr "" ...@@ -63,13 +63,13 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "Important note for NIS/YP users" msgid "Important note for NIS/YP users"
msgstr "Wichtige Anmerkung für NIS/YP-Benutzer!" msgstr "Wichtige Anmerkung für NIS/YP-Benutzer!"
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"Using MariaDB under NIS/YP requires a mysql user account to be added on the " "Using MariaDB under NIS/YP requires a mysql user account to be added on the "
"local system with:" "local system with:"
...@@ -79,7 +79,7 @@ msgstr "" ...@@ -79,7 +79,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"You should also check the permissions and ownership of the /var/lib/mysql " "You should also check the permissions and ownership of the /var/lib/mysql "
"directory:" "directory:"
...@@ -89,13 +89,13 @@ msgstr "" ...@@ -89,13 +89,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "Remove all MariaDB databases?" msgid "Remove all MariaDB databases?"
msgstr "Alle MariaDB-Datenbanken entfernen?" msgstr "Alle MariaDB-Datenbanken entfernen?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"The /var/lib/mysql directory which contains the MariaDB databases is about " "The /var/lib/mysql directory which contains the MariaDB databases is about "
"to be removed." "to be removed."
...@@ -105,7 +105,7 @@ msgstr "" ...@@ -105,7 +105,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"If you're removing the MariaDB package in order to later install a more " "If you're removing the MariaDB package in order to later install a more "
"recent version or if a different mariadb-server package is already using it, " "recent version or if a different mariadb-server package is already using it, "
...@@ -117,13 +117,13 @@ msgstr "" ...@@ -117,13 +117,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
msgid "Start the MariaDB server on boot?" msgid "Start the MariaDB server on boot?"
msgstr "Soll der MariaDB-Server automatisch beim Booten starten?" msgstr "Soll der MariaDB-Server automatisch beim Booten starten?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
msgid "" msgid ""
"The MariaDB server can be launched automatically at boot time or manually " "The MariaDB server can be launched automatically at boot time or manually "
"with the '/etc/init.d/mysql start' command." "with the '/etc/init.d/mysql start' command."
...@@ -133,13 +133,13 @@ msgstr "" ...@@ -133,13 +133,13 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "New password for the MariaDB \"root\" user:" msgid "New password for the MariaDB \"root\" user:"
msgstr "Neues Passwort für den MariaDB »root«-Benutzer:" msgstr "Neues Passwort für den MariaDB »root«-Benutzer:"
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "" msgid ""
"While not mandatory, it is highly recommended that you set a password for " "While not mandatory, it is highly recommended that you set a password for "
"the MariaDB administrative \"root\" user." "the MariaDB administrative \"root\" user."
...@@ -149,25 +149,25 @@ msgstr "" ...@@ -149,25 +149,25 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "If this field is left blank, the password will not be changed." msgid "If this field is left blank, the password will not be changed."
msgstr "Wenn dieses Feld freigelassen wird, wird das Passwort nicht geändert." msgstr "Wenn dieses Feld freigelassen wird, wird das Passwort nicht geändert."
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:7001 #: ../mariadb-galera-server-10.0.templates:7001
msgid "Repeat password for the MariaDB \"root\" user:" msgid "Repeat password for the MariaDB \"root\" user:"
msgstr "Wiederholen Sie das Passwort für den MariaDB-»root«-Benutzer:" msgstr "Wiederholen Sie das Passwort für den MariaDB-»root«-Benutzer:"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "Unable to set password for the MariaDB \"root\" user" msgid "Unable to set password for the MariaDB \"root\" user"
msgstr "Konnte für den MariaDB-»root«-Benutzer kein Passwort setzen" msgstr "Konnte für den MariaDB-»root«-Benutzer kein Passwort setzen"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "" msgid ""
"An error occurred while setting the password for the MariaDB administrative " "An error occurred while setting the password for the MariaDB administrative "
"user. This may have happened because the account already has a password, or " "user. This may have happened because the account already has a password, or "
...@@ -180,7 +180,7 @@ msgstr "" ...@@ -180,7 +180,7 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "You should check the account's password after the package installation." msgid "You should check the account's password after the package installation."
msgstr "" msgstr ""
"Sie sollten das Passwort des administrativen Benutzers nach der " "Sie sollten das Passwort des administrativen Benutzers nach der "
...@@ -188,7 +188,7 @@ msgstr "" ...@@ -188,7 +188,7 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "Please read the /usr/share/doc/mariadb-server-5.1/README.Debian file for " #| "Please read the /usr/share/doc/mariadb-server-5.1/README.Debian file for "
...@@ -202,13 +202,13 @@ msgstr "" ...@@ -202,13 +202,13 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "Password input error" msgid "Password input error"
msgstr "Passwort-Eingabefehler" msgstr "Passwort-Eingabefehler"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "The two passwords you entered were not the same. Please try again." msgid "The two passwords you entered were not the same. Please try again."
msgstr "" msgstr ""
"Die beiden von Ihnen eingegebenen Passwörter sind nicht identisch. Bitte " "Die beiden von Ihnen eingegebenen Passwörter sind nicht identisch. Bitte "
...@@ -216,13 +216,13 @@ msgstr "" ...@@ -216,13 +216,13 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "NDB Cluster seems to be in use" msgid "NDB Cluster seems to be in use"
msgstr "NDB-Cluster scheint gerade benutzt zu werden" msgstr "NDB-Cluster scheint gerade benutzt zu werden"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "" msgid ""
"MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new " "MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new "
"mysql-cluster package and remove all lines starting with \"ndb\" from all " "mysql-cluster package and remove all lines starting with \"ndb\" from all "
......
...@@ -52,20 +52,20 @@ msgstr "" ...@@ -52,20 +52,20 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "Really proceed with downgrade?" msgid "Really proceed with downgrade?"
msgstr "¿Desea realmente continuar con la desactualización?" msgstr "¿Desea realmente continuar con la desactualización?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "A file named /var/lib/mysql/debian-*.flag exists on this system." msgid "A file named /var/lib/mysql/debian-*.flag exists on this system."
msgstr "" msgstr ""
"Existe un archivo con el nombre /var/lib/mysql/debian-*.flag en este sistema." "Existe un archivo con el nombre /var/lib/mysql/debian-*.flag en este sistema."
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "Such file is an indication that a mariadb-server package with a higher " #| "Such file is an indication that a mariadb-server package with a higher "
...@@ -79,7 +79,7 @@ msgstr "" ...@@ -79,7 +79,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "" msgid ""
"There is no guarantee that the version you're currently installing will be " "There is no guarantee that the version you're currently installing will be "
"able to use the current databases." "able to use the current databases."
...@@ -89,13 +89,13 @@ msgstr "" ...@@ -89,13 +89,13 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "Important note for NIS/YP users" msgid "Important note for NIS/YP users"
msgstr "Nota importante para los usuarios de NIS/YP" msgstr "Nota importante para los usuarios de NIS/YP"
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"Using MariaDB under NIS/YP requires a mysql user account to be added on the " "Using MariaDB under NIS/YP requires a mysql user account to be added on the "
"local system with:" "local system with:"
...@@ -103,7 +103,7 @@ msgstr "" ...@@ -103,7 +103,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "You should also check the permissions and the owner of the /var/lib/mysql " #| "You should also check the permissions and the owner of the /var/lib/mysql "
...@@ -117,13 +117,13 @@ msgstr "" ...@@ -117,13 +117,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "Remove all MariaDB databases?" msgid "Remove all MariaDB databases?"
msgstr "¿Desea eliminar todas las bases de datos MariaDB?" msgstr "¿Desea eliminar todas las bases de datos MariaDB?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"The /var/lib/mysql directory which contains the MariaDB databases is about " "The /var/lib/mysql directory which contains the MariaDB databases is about "
"to be removed." "to be removed."
...@@ -133,7 +133,7 @@ msgstr "" ...@@ -133,7 +133,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"If you're removing the MariaDB package in order to later install a more " "If you're removing the MariaDB package in order to later install a more "
"recent version or if a different mariadb-server package is already using it, " "recent version or if a different mariadb-server package is already using it, "
...@@ -145,13 +145,13 @@ msgstr "" ...@@ -145,13 +145,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
msgid "Start the MariaDB server on boot?" msgid "Start the MariaDB server on boot?"
msgstr "¿Debería ejecutarse el servidor MariaDB al iniciarse el sistema?" msgstr "¿Debería ejecutarse el servidor MariaDB al iniciarse el sistema?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
msgid "" msgid ""
"The MariaDB server can be launched automatically at boot time or manually " "The MariaDB server can be launched automatically at boot time or manually "
"with the '/etc/init.d/mysql start' command." "with the '/etc/init.d/mysql start' command."
...@@ -161,13 +161,13 @@ msgstr "" ...@@ -161,13 +161,13 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "New password for the MariaDB \"root\" user:" msgid "New password for the MariaDB \"root\" user:"
msgstr "Nueva contraseña para el usuario «root» de MariaDB:" msgstr "Nueva contraseña para el usuario «root» de MariaDB:"
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "" msgid ""
"While not mandatory, it is highly recommended that you set a password for " "While not mandatory, it is highly recommended that you set a password for "
"the MariaDB administrative \"root\" user." "the MariaDB administrative \"root\" user."
...@@ -177,7 +177,7 @@ msgstr "" ...@@ -177,7 +177,7 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
#, fuzzy #, fuzzy
#| msgid "If that field is left blank, the password will not be changed." #| msgid "If that field is left blank, the password will not be changed."
msgid "If this field is left blank, the password will not be changed." msgid "If this field is left blank, the password will not be changed."
...@@ -185,7 +185,7 @@ msgstr "No se modificará la contraseña si deja el espacio en blanco." ...@@ -185,7 +185,7 @@ msgstr "No se modificará la contraseña si deja el espacio en blanco."
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:7001 #: ../mariadb-galera-server-10.0.templates:7001
#, fuzzy #, fuzzy
#| msgid "New password for the MySQL \"root\" user:" #| msgid "New password for the MySQL \"root\" user:"
msgid "Repeat password for the MariaDB \"root\" user:" msgid "Repeat password for the MariaDB \"root\" user:"
...@@ -193,13 +193,13 @@ msgstr "Nueva contraseña para el usuario «root» de MariaDB:" ...@@ -193,13 +193,13 @@ msgstr "Nueva contraseña para el usuario «root» de MariaDB:"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "Unable to set password for the MariaDB \"root\" user" msgid "Unable to set password for the MariaDB \"root\" user"
msgstr "No se pudo fijar la contraseña para el usuario «root» de MariaDB" msgstr "No se pudo fijar la contraseña para el usuario «root» de MariaDB"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "" msgid ""
"An error occurred while setting the password for the MariaDB administrative " "An error occurred while setting the password for the MariaDB administrative "
"user. This may have happened because the account already has a password, or " "user. This may have happened because the account already has a password, or "
...@@ -212,7 +212,7 @@ msgstr "" ...@@ -212,7 +212,7 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "You should check the account's password after the package installation." msgid "You should check the account's password after the package installation."
msgstr "" msgstr ""
"Debería comprobar la contraseña de la cuenta después de la instalación del " "Debería comprobar la contraseña de la cuenta después de la instalación del "
...@@ -220,7 +220,7 @@ msgstr "" ...@@ -220,7 +220,7 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "Please read the /usr/share/doc/mysql-server-5.1/README.Debian file for " #| "Please read the /usr/share/doc/mysql-server-5.1/README.Debian file for "
...@@ -234,25 +234,25 @@ msgstr "" ...@@ -234,25 +234,25 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "Password input error" msgid "Password input error"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "The two passwords you entered were not the same. Please try again." msgid "The two passwords you entered were not the same. Please try again."
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "NDB Cluster seems to be in use" msgid "NDB Cluster seems to be in use"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "" msgid ""
"MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new " "MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new "
"mysql-cluster package and remove all lines starting with \"ndb\" from all " "mysql-cluster package and remove all lines starting with \"ndb\" from all "
......
...@@ -20,19 +20,19 @@ msgstr "" ...@@ -20,19 +20,19 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "Really proceed with downgrade?" msgid "Really proceed with downgrade?"
msgstr "Benetan bertsio zaharragora itzuli nahi duzu?" msgstr "Benetan bertsio zaharragora itzuli nahi duzu?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "A file named /var/lib/mysql/debian-*.flag exists on this system." msgid "A file named /var/lib/mysql/debian-*.flag exists on this system."
msgstr "Sisteman badago /var/lib/mysql/debian-*.flag izeneko fitxategi bat." msgstr "Sisteman badago /var/lib/mysql/debian-*.flag izeneko fitxategi bat."
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "Such file is an indication that a mariadb-server package with a higher " #| "Such file is an indication that a mariadb-server package with a higher "
...@@ -46,7 +46,7 @@ msgstr "" ...@@ -46,7 +46,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "" msgid ""
"There is no guarantee that the version you're currently installing will be " "There is no guarantee that the version you're currently installing will be "
"able to use the current databases." "able to use the current databases."
...@@ -56,13 +56,13 @@ msgstr "" ...@@ -56,13 +56,13 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "Important note for NIS/YP users" msgid "Important note for NIS/YP users"
msgstr "NIS/YP erabiltzaileentzat ohar garrantzitsua" msgstr "NIS/YP erabiltzaileentzat ohar garrantzitsua"
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"Using MariaDB under NIS/YP requires a mysql user account to be added on the " "Using MariaDB under NIS/YP requires a mysql user account to be added on the "
"local system with:" "local system with:"
...@@ -70,7 +70,7 @@ msgstr "" ...@@ -70,7 +70,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "You should also check the permissions and the owner of the /var/lib/mysql " #| "You should also check the permissions and the owner of the /var/lib/mysql "
...@@ -84,13 +84,13 @@ msgstr "" ...@@ -84,13 +84,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "Remove all MariaDB databases?" msgid "Remove all MariaDB databases?"
msgstr "Ezabatu MariaDB datubase guztiak?" msgstr "Ezabatu MariaDB datubase guztiak?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"The /var/lib/mysql directory which contains the MariaDB databases is about " "The /var/lib/mysql directory which contains the MariaDB databases is about "
"to be removed." "to be removed."
...@@ -99,7 +99,7 @@ msgstr "" ...@@ -99,7 +99,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"If you're removing the MariaDB package in order to later install a more " "If you're removing the MariaDB package in order to later install a more "
"recent version or if a different mariadb-server package is already using it, " "recent version or if a different mariadb-server package is already using it, "
...@@ -111,13 +111,13 @@ msgstr "" ...@@ -111,13 +111,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
msgid "Start the MariaDB server on boot?" msgid "Start the MariaDB server on boot?"
msgstr "Abioan MariaDB zerbitzaria abiarazi?" msgstr "Abioan MariaDB zerbitzaria abiarazi?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
msgid "" msgid ""
"The MariaDB server can be launched automatically at boot time or manually " "The MariaDB server can be launched automatically at boot time or manually "
"with the '/etc/init.d/mysql start' command." "with the '/etc/init.d/mysql start' command."
...@@ -127,13 +127,13 @@ msgstr "" ...@@ -127,13 +127,13 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "New password for the MariaDB \"root\" user:" msgid "New password for the MariaDB \"root\" user:"
msgstr "MariaDB \"root\" erabiltzailearen pasahitz berria:" msgstr "MariaDB \"root\" erabiltzailearen pasahitz berria:"
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "" msgid ""
"While not mandatory, it is highly recommended that you set a password for " "While not mandatory, it is highly recommended that you set a password for "
"the MariaDB administrative \"root\" user." "the MariaDB administrative \"root\" user."
...@@ -143,7 +143,7 @@ msgstr "" ...@@ -143,7 +143,7 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
#, fuzzy #, fuzzy
#| msgid "If that field is left blank, the password will not be changed." #| msgid "If that field is left blank, the password will not be changed."
msgid "If this field is left blank, the password will not be changed." msgid "If this field is left blank, the password will not be changed."
...@@ -151,19 +151,19 @@ msgstr "Eremua hau zurian utziaz gero ez da pasahitza aldatuko." ...@@ -151,19 +151,19 @@ msgstr "Eremua hau zurian utziaz gero ez da pasahitza aldatuko."
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:7001 #: ../mariadb-galera-server-10.0.templates:7001
msgid "Repeat password for the MariaDB \"root\" user:" msgid "Repeat password for the MariaDB \"root\" user:"
msgstr "Errepikatu MariaDB \"root\" erabiltzailearen pasahitza:" msgstr "Errepikatu MariaDB \"root\" erabiltzailearen pasahitza:"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "Unable to set password for the MariaDB \"root\" user" msgid "Unable to set password for the MariaDB \"root\" user"
msgstr "Ezin da MariaDB \"root\" erabiltzailearen pasahitza ezarri" msgstr "Ezin da MariaDB \"root\" erabiltzailearen pasahitza ezarri"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "" msgid ""
"An error occurred while setting the password for the MariaDB administrative " "An error occurred while setting the password for the MariaDB administrative "
"user. This may have happened because the account already has a password, or " "user. This may have happened because the account already has a password, or "
...@@ -175,14 +175,14 @@ msgstr "" ...@@ -175,14 +175,14 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "You should check the account's password after the package installation." msgid "You should check the account's password after the package installation."
msgstr "" msgstr ""
"Kontuaren pasahitza egiaztatu beharko zenuke paketea instalatu aurretik." "Kontuaren pasahitza egiaztatu beharko zenuke paketea instalatu aurretik."
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "Please read the /usr/share/doc/mariadb-server-10.0/README.Debian file for " #| "Please read the /usr/share/doc/mariadb-server-10.0/README.Debian file for "
...@@ -196,25 +196,25 @@ msgstr "" ...@@ -196,25 +196,25 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "Password input error" msgid "Password input error"
msgstr "Pasahitz sarrera errorea" msgstr "Pasahitz sarrera errorea"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "The two passwords you entered were not the same. Please try again." msgid "The two passwords you entered were not the same. Please try again."
msgstr "Idatzi dituzun bi pasahitzak ez dira berdina. Mesedez saiatu berriz." msgstr "Idatzi dituzun bi pasahitzak ez dira berdina. Mesedez saiatu berriz."
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "NDB Cluster seems to be in use" msgid "NDB Cluster seems to be in use"
msgstr "Dirudienez NDB Cluster-a erabilia dago" msgstr "Dirudienez NDB Cluster-a erabilia dago"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "MySQL-5.1 has orphaned NDB Cluster support. Please migrate to the new " #| "MySQL-5.1 has orphaned NDB Cluster support. Please migrate to the new "
......
...@@ -22,19 +22,19 @@ msgstr "" ...@@ -22,19 +22,19 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "Really proceed with downgrade?" msgid "Really proceed with downgrade?"
msgstr "Faut-il vraiment revenir à la version précédente ?" msgstr "Faut-il vraiment revenir à la version précédente ?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "A file named /var/lib/mysql/debian-*.flag exists on this system." msgid "A file named /var/lib/mysql/debian-*.flag exists on this system."
msgstr "Un fichier /var/lib/mysql/debian-*.flag est présent sur ce système." msgstr "Un fichier /var/lib/mysql/debian-*.flag est présent sur ce système."
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "" msgid ""
"Such a file is an indication that a mariadb-server package with a higher " "Such a file is an indication that a mariadb-server package with a higher "
"version has been installed previously." "version has been installed previously."
...@@ -44,7 +44,7 @@ msgstr "" ...@@ -44,7 +44,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "" msgid ""
"There is no guarantee that the version you're currently installing will be " "There is no guarantee that the version you're currently installing will be "
"able to use the current databases." "able to use the current databases."
...@@ -52,13 +52,13 @@ msgstr "Il n'est pas garanti que cette version puisse en utiliser les données." ...@@ -52,13 +52,13 @@ msgstr "Il n'est pas garanti que cette version puisse en utiliser les données."
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "Important note for NIS/YP users" msgid "Important note for NIS/YP users"
msgstr "Note importante pour les utilisateurs NIS/YP" msgstr "Note importante pour les utilisateurs NIS/YP"
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"Using MariaDB under NIS/YP requires a mysql user account to be added on the " "Using MariaDB under NIS/YP requires a mysql user account to be added on the "
"local system with:" "local system with:"
...@@ -68,7 +68,7 @@ msgstr "" ...@@ -68,7 +68,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"You should also check the permissions and ownership of the /var/lib/mysql " "You should also check the permissions and ownership of the /var/lib/mysql "
"directory:" "directory:"
...@@ -78,13 +78,13 @@ msgstr "" ...@@ -78,13 +78,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "Remove all MariaDB databases?" msgid "Remove all MariaDB databases?"
msgstr "Faut-il supprimer toutes les bases de données MariaDB ?" msgstr "Faut-il supprimer toutes les bases de données MariaDB ?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"The /var/lib/mysql directory which contains the MariaDB databases is about " "The /var/lib/mysql directory which contains the MariaDB databases is about "
"to be removed." "to be removed."
...@@ -94,7 +94,7 @@ msgstr "" ...@@ -94,7 +94,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"If you're removing the MariaDB package in order to later install a more " "If you're removing the MariaDB package in order to later install a more "
"recent version or if a different mariadb-server package is already using it, " "recent version or if a different mariadb-server package is already using it, "
...@@ -105,13 +105,13 @@ msgstr "" ...@@ -105,13 +105,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
msgid "Start the MariaDB server on boot?" msgid "Start the MariaDB server on boot?"
msgstr "Faut-il lancer MariaDB au démarrage ?" msgstr "Faut-il lancer MariaDB au démarrage ?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
msgid "" msgid ""
"The MariaDB server can be launched automatically at boot time or manually " "The MariaDB server can be launched automatically at boot time or manually "
"with the '/etc/init.d/mysql start' command." "with the '/etc/init.d/mysql start' command."
...@@ -121,13 +121,13 @@ msgstr "" ...@@ -121,13 +121,13 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "New password for the MariaDB \"root\" user:" msgid "New password for the MariaDB \"root\" user:"
msgstr "Nouveau mot de passe du superutilisateur de MariaDB :" msgstr "Nouveau mot de passe du superutilisateur de MariaDB :"
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "" msgid ""
"While not mandatory, it is highly recommended that you set a password for " "While not mandatory, it is highly recommended that you set a password for "
"the MariaDB administrative \"root\" user." "the MariaDB administrative \"root\" user."
...@@ -137,26 +137,26 @@ msgstr "" ...@@ -137,26 +137,26 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "If this field is left blank, the password will not be changed." msgid "If this field is left blank, the password will not be changed."
msgstr "Si ce champ est laissé vide, le mot de passe ne sera pas changé." msgstr "Si ce champ est laissé vide, le mot de passe ne sera pas changé."
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:7001 #: ../mariadb-galera-server-10.0.templates:7001
msgid "Repeat password for the MariaDB \"root\" user:" msgid "Repeat password for the MariaDB \"root\" user:"
msgstr "Confirmation du mot de passe du superutilisateur de MariaDB :" msgstr "Confirmation du mot de passe du superutilisateur de MariaDB :"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "Unable to set password for the MariaDB \"root\" user" msgid "Unable to set password for the MariaDB \"root\" user"
msgstr "" msgstr ""
"Impossible de changer le mot de passe de l'utilisateur « root » de MariaDB" "Impossible de changer le mot de passe de l'utilisateur « root » de MariaDB"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "" msgid ""
"An error occurred while setting the password for the MariaDB administrative " "An error occurred while setting the password for the MariaDB administrative "
"user. This may have happened because the account already has a password, or " "user. This may have happened because the account already has a password, or "
...@@ -168,7 +168,7 @@ msgstr "" ...@@ -168,7 +168,7 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "You should check the account's password after the package installation." msgid "You should check the account's password after the package installation."
msgstr "" msgstr ""
"Vous devriez vérifier le mot de passe de ce compte après l'installation du " "Vous devriez vérifier le mot de passe de ce compte après l'installation du "
...@@ -176,7 +176,7 @@ msgstr "" ...@@ -176,7 +176,7 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "Please read the /usr/share/doc/mariadb-server-10.0/README.Debian file for " #| "Please read the /usr/share/doc/mariadb-server-10.0/README.Debian file for "
...@@ -190,13 +190,13 @@ msgstr "" ...@@ -190,13 +190,13 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "Password input error" msgid "Password input error"
msgstr "Erreur de saisie du mot de passe" msgstr "Erreur de saisie du mot de passe"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "The two passwords you entered were not the same. Please try again." msgid "The two passwords you entered were not the same. Please try again."
msgstr "" msgstr ""
"Le mot de passe et sa confirmation ne sont pas identiques. Veuillez " "Le mot de passe et sa confirmation ne sont pas identiques. Veuillez "
...@@ -204,13 +204,13 @@ msgstr "" ...@@ -204,13 +204,13 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "NDB Cluster seems to be in use" msgid "NDB Cluster seems to be in use"
msgstr "Abandon de la gestion de NDB" msgstr "Abandon de la gestion de NDB"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "" msgid ""
"MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new " "MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new "
"mysql-cluster package and remove all lines starting with \"ndb\" from all " "mysql-cluster package and remove all lines starting with \"ndb\" from all "
......
...@@ -17,19 +17,19 @@ msgstr "" ...@@ -17,19 +17,19 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "Really proceed with downgrade?" msgid "Really proceed with downgrade?"
msgstr "¿Quere pasar a unha versión anterior?" msgstr "¿Quere pasar a unha versión anterior?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "A file named /var/lib/mysql/debian-*.flag exists on this system." msgid "A file named /var/lib/mysql/debian-*.flag exists on this system."
msgstr "Neste sistema hai un ficheiro chamado /var/lib/mysql/debian-*.flag." msgstr "Neste sistema hai un ficheiro chamado /var/lib/mysql/debian-*.flag."
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "Such file is an indication that a mariadb-server package with a higher " #| "Such file is an indication that a mariadb-server package with a higher "
...@@ -43,7 +43,7 @@ msgstr "" ...@@ -43,7 +43,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "" msgid ""
"There is no guarantee that the version you're currently installing will be " "There is no guarantee that the version you're currently installing will be "
"able to use the current databases." "able to use the current databases."
...@@ -53,13 +53,13 @@ msgstr "" ...@@ -53,13 +53,13 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "Important note for NIS/YP users" msgid "Important note for NIS/YP users"
msgstr "Nota importante para os usuarios de NIS/YP" msgstr "Nota importante para os usuarios de NIS/YP"
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"Using MariaDB under NIS/YP requires a mysql user account to be added on the " "Using MariaDB under NIS/YP requires a mysql user account to be added on the "
"local system with:" "local system with:"
...@@ -67,7 +67,7 @@ msgstr "" ...@@ -67,7 +67,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "You should also check the permissions and the owner of the /var/lib/mysql " #| "You should also check the permissions and the owner of the /var/lib/mysql "
...@@ -81,13 +81,13 @@ msgstr "" ...@@ -81,13 +81,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "Remove all MariaDB databases?" msgid "Remove all MariaDB databases?"
msgstr "¿Eliminar tódalas bases de datos de MariaDB?" msgstr "¿Eliminar tódalas bases de datos de MariaDB?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"The /var/lib/mysql directory which contains the MariaDB databases is about " "The /var/lib/mysql directory which contains the MariaDB databases is about "
"to be removed." "to be removed."
...@@ -97,7 +97,7 @@ msgstr "" ...@@ -97,7 +97,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"If you're removing the MariaDB package in order to later install a more " "If you're removing the MariaDB package in order to later install a more "
"recent version or if a different mariadb-server package is already using it, " "recent version or if a different mariadb-server package is already using it, "
...@@ -109,13 +109,13 @@ msgstr "" ...@@ -109,13 +109,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
msgid "Start the MariaDB server on boot?" msgid "Start the MariaDB server on boot?"
msgstr "¿Iniciar o servidor MariaDB co ordenador?" msgstr "¿Iniciar o servidor MariaDB co ordenador?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
msgid "" msgid ""
"The MariaDB server can be launched automatically at boot time or manually " "The MariaDB server can be launched automatically at boot time or manually "
"with the '/etc/init.d/mysql start' command." "with the '/etc/init.d/mysql start' command."
...@@ -125,13 +125,13 @@ msgstr "" ...@@ -125,13 +125,13 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "New password for the MariaDB \"root\" user:" msgid "New password for the MariaDB \"root\" user:"
msgstr "Novo contrasinal para o usuario \"root\" de MariaDB:" msgstr "Novo contrasinal para o usuario \"root\" de MariaDB:"
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "" msgid ""
"While not mandatory, it is highly recommended that you set a password for " "While not mandatory, it is highly recommended that you set a password for "
"the MariaDB administrative \"root\" user." "the MariaDB administrative \"root\" user."
...@@ -141,7 +141,7 @@ msgstr "" ...@@ -141,7 +141,7 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
#, fuzzy #, fuzzy
#| msgid "If that field is left blank, the password will not be changed." #| msgid "If that field is left blank, the password will not be changed."
msgid "If this field is left blank, the password will not be changed." msgid "If this field is left blank, the password will not be changed."
...@@ -149,7 +149,7 @@ msgstr "Se deixa o campo en branco, non se ha cambiar o contrasinal." ...@@ -149,7 +149,7 @@ msgstr "Se deixa o campo en branco, non se ha cambiar o contrasinal."
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:7001 #: ../mariadb-galera-server-10.0.templates:7001
#, fuzzy #, fuzzy
#| msgid "New password for the MySQL \"root\" user:" #| msgid "New password for the MySQL \"root\" user:"
msgid "Repeat password for the MariaDB \"root\" user:" msgid "Repeat password for the MariaDB \"root\" user:"
...@@ -157,13 +157,13 @@ msgstr "Novo contrasinal para o usuario \"root\" de MariaDB:" ...@@ -157,13 +157,13 @@ msgstr "Novo contrasinal para o usuario \"root\" de MariaDB:"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "Unable to set password for the MariaDB \"root\" user" msgid "Unable to set password for the MariaDB \"root\" user"
msgstr "Non se puido establecer o contrasinal do usuario \"root\" de MariaDB" msgstr "Non se puido establecer o contrasinal do usuario \"root\" de MariaDB"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "" msgid ""
"An error occurred while setting the password for the MariaDB administrative " "An error occurred while setting the password for the MariaDB administrative "
"user. This may have happened because the account already has a password, or " "user. This may have happened because the account already has a password, or "
...@@ -175,7 +175,7 @@ msgstr "" ...@@ -175,7 +175,7 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "You should check the account's password after tha package installation." #| "You should check the account's password after tha package installation."
...@@ -184,7 +184,7 @@ msgstr "Debería comprobar o contrasinal da conta trala instalación do paquete. ...@@ -184,7 +184,7 @@ msgstr "Debería comprobar o contrasinal da conta trala instalación do paquete.
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "Please read the /usr/share/doc/mysql-server-5.1/README.Debian file for " #| "Please read the /usr/share/doc/mysql-server-5.1/README.Debian file for "
...@@ -198,25 +198,25 @@ msgstr "" ...@@ -198,25 +198,25 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "Password input error" msgid "Password input error"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "The two passwords you entered were not the same. Please try again." msgid "The two passwords you entered were not the same. Please try again."
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "NDB Cluster seems to be in use" msgid "NDB Cluster seems to be in use"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "" msgid ""
"MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new " "MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new "
"mysql-cluster package and remove all lines starting with \"ndb\" from all " "mysql-cluster package and remove all lines starting with \"ndb\" from all "
......
...@@ -18,20 +18,20 @@ msgstr "" ...@@ -18,20 +18,20 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "Really proceed with downgrade?" msgid "Really proceed with downgrade?"
msgstr "Procedere realmente con l'abbassamento di versione?" msgstr "Procedere realmente con l'abbassamento di versione?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "A file named /var/lib/mysql/debian-*.flag exists on this system." msgid "A file named /var/lib/mysql/debian-*.flag exists on this system."
msgstr "" msgstr ""
"Su questo sistema esiste un file con nome /var/lib/mysql/debian-*.flag." "Su questo sistema esiste un file con nome /var/lib/mysql/debian-*.flag."
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "" msgid ""
"Such a file is an indication that a mariadb-server package with a higher " "Such a file is an indication that a mariadb-server package with a higher "
"version has been installed previously." "version has been installed previously."
...@@ -41,7 +41,7 @@ msgstr "" ...@@ -41,7 +41,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "" msgid ""
"There is no guarantee that the version you're currently installing will be " "There is no guarantee that the version you're currently installing will be "
"able to use the current databases." "able to use the current databases."
...@@ -51,13 +51,13 @@ msgstr "" ...@@ -51,13 +51,13 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "Important note for NIS/YP users" msgid "Important note for NIS/YP users"
msgstr "Nota importante per gli utenti NIS/YP" msgstr "Nota importante per gli utenti NIS/YP"
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"Using MariaDB under NIS/YP requires a mysql user account to be added on the " "Using MariaDB under NIS/YP requires a mysql user account to be added on the "
"local system with:" "local system with:"
...@@ -67,7 +67,7 @@ msgstr "" ...@@ -67,7 +67,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"You should also check the permissions and ownership of the /var/lib/mysql " "You should also check the permissions and ownership of the /var/lib/mysql "
"directory:" "directory:"
...@@ -77,13 +77,13 @@ msgstr "" ...@@ -77,13 +77,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "Remove all MariaDB databases?" msgid "Remove all MariaDB databases?"
msgstr "Eliminare tutti i database MariaDB?" msgstr "Eliminare tutti i database MariaDB?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"The /var/lib/mysql directory which contains the MariaDB databases is about " "The /var/lib/mysql directory which contains the MariaDB databases is about "
"to be removed." "to be removed."
...@@ -93,7 +93,7 @@ msgstr "" ...@@ -93,7 +93,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"If you're removing the MariaDB package in order to later install a more " "If you're removing the MariaDB package in order to later install a more "
"recent version or if a different mariadb-server package is already using it, " "recent version or if a different mariadb-server package is already using it, "
...@@ -105,13 +105,13 @@ msgstr "" ...@@ -105,13 +105,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
msgid "Start the MariaDB server on boot?" msgid "Start the MariaDB server on boot?"
msgstr "Lanciare il server MariaDB all'avvio?" msgstr "Lanciare il server MariaDB all'avvio?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
msgid "" msgid ""
"The MariaDB server can be launched automatically at boot time or manually " "The MariaDB server can be launched automatically at boot time or manually "
"with the '/etc/init.d/mysql start' command." "with the '/etc/init.d/mysql start' command."
...@@ -121,13 +121,13 @@ msgstr "" ...@@ -121,13 +121,13 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "New password for the MariaDB \"root\" user:" msgid "New password for the MariaDB \"root\" user:"
msgstr "Nuova password per l'utente «root» di MariaDB:" msgstr "Nuova password per l'utente «root» di MariaDB:"
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "" msgid ""
"While not mandatory, it is highly recommended that you set a password for " "While not mandatory, it is highly recommended that you set a password for "
"the MariaDB administrative \"root\" user." "the MariaDB administrative \"root\" user."
...@@ -137,25 +137,25 @@ msgstr "" ...@@ -137,25 +137,25 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "If this field is left blank, the password will not be changed." msgid "If this field is left blank, the password will not be changed."
msgstr "Se questo campo è lasciato vuoto, la password non viene cambiata." msgstr "Se questo campo è lasciato vuoto, la password non viene cambiata."
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:7001 #: ../mariadb-galera-server-10.0.templates:7001
msgid "Repeat password for the MariaDB \"root\" user:" msgid "Repeat password for the MariaDB \"root\" user:"
msgstr "Ripetere la password per l'utente «root» di MariaDB:" msgstr "Ripetere la password per l'utente «root» di MariaDB:"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "Unable to set password for the MariaDB \"root\" user" msgid "Unable to set password for the MariaDB \"root\" user"
msgstr "Impossibile impostare la password per l'utente «root» di MariaDB" msgstr "Impossibile impostare la password per l'utente «root» di MariaDB"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "" msgid ""
"An error occurred while setting the password for the MariaDB administrative " "An error occurred while setting the password for the MariaDB administrative "
"user. This may have happened because the account already has a password, or " "user. This may have happened because the account already has a password, or "
...@@ -168,14 +168,14 @@ msgstr "" ...@@ -168,14 +168,14 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "You should check the account's password after the package installation." msgid "You should check the account's password after the package installation."
msgstr "" msgstr ""
"Al termine dell'installazione si deve verificare la password dell'account." "Al termine dell'installazione si deve verificare la password dell'account."
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "Please read the /usr/share/doc/mariadb-server-10.0/README.Debian file for " #| "Please read the /usr/share/doc/mariadb-server-10.0/README.Debian file for "
...@@ -189,25 +189,25 @@ msgstr "" ...@@ -189,25 +189,25 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "Password input error" msgid "Password input error"
msgstr "Errore di inserimento della password" msgstr "Errore di inserimento della password"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "The two passwords you entered were not the same. Please try again." msgid "The two passwords you entered were not the same. Please try again."
msgstr "Le due password inserite sono diverse. Riprovare." msgstr "Le due password inserite sono diverse. Riprovare."
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "NDB Cluster seems to be in use" msgid "NDB Cluster seems to be in use"
msgstr "È in uso un cluster NDB" msgstr "È in uso un cluster NDB"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "" msgid ""
"MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new " "MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new "
"mysql-cluster package and remove all lines starting with \"ndb\" from all " "mysql-cluster package and remove all lines starting with \"ndb\" from all "
......
...@@ -27,13 +27,13 @@ msgstr "" ...@@ -27,13 +27,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "Really proceed with downgrade?" msgid "Really proceed with downgrade?"
msgstr "本当にダウングレードを実行しますか?" msgstr "本当にダウングレードを実行しますか?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "A file named /var/lib/mysql/debian-*.flag exists on this system." msgid "A file named /var/lib/mysql/debian-*.flag exists on this system."
msgstr "" msgstr ""
"このシステムには /var/lib/mysql/debian-*.flag という名前のファイルが存在して" "このシステムには /var/lib/mysql/debian-*.flag という名前のファイルが存在して"
...@@ -41,7 +41,7 @@ msgstr "" ...@@ -41,7 +41,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "" msgid ""
"Such a file is an indication that a mariadb-server package with a higher " "Such a file is an indication that a mariadb-server package with a higher "
"version has been installed previously." "version has been installed previously."
...@@ -51,7 +51,7 @@ msgstr "" ...@@ -51,7 +51,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "" msgid ""
"There is no guarantee that the version you're currently installing will be " "There is no guarantee that the version you're currently installing will be "
"able to use the current databases." "able to use the current databases."
...@@ -61,13 +61,13 @@ msgstr "" ...@@ -61,13 +61,13 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "Important note for NIS/YP users" msgid "Important note for NIS/YP users"
msgstr "NIS/YP ユーザへの重要な注意" msgstr "NIS/YP ユーザへの重要な注意"
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"Using MariaDB under NIS/YP requires a mysql user account to be added on the " "Using MariaDB under NIS/YP requires a mysql user account to be added on the "
"local system with:" "local system with:"
...@@ -77,7 +77,7 @@ msgstr "" ...@@ -77,7 +77,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"You should also check the permissions and ownership of the /var/lib/mysql " "You should also check the permissions and ownership of the /var/lib/mysql "
"directory:" "directory:"
...@@ -85,13 +85,13 @@ msgstr "/var/lib/mysql の所有者権限をチェックする必要もありま ...@@ -85,13 +85,13 @@ msgstr "/var/lib/mysql の所有者権限をチェックする必要もありま
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "Remove all MariaDB databases?" msgid "Remove all MariaDB databases?"
msgstr "すべての MariaDB データベースを削除しますか?" msgstr "すべての MariaDB データベースを削除しますか?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"The /var/lib/mysql directory which contains the MariaDB databases is about " "The /var/lib/mysql directory which contains the MariaDB databases is about "
"to be removed." "to be removed."
...@@ -101,7 +101,7 @@ msgstr "" ...@@ -101,7 +101,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"If you're removing the MariaDB package in order to later install a more " "If you're removing the MariaDB package in order to later install a more "
"recent version or if a different mariadb-server package is already using it, " "recent version or if a different mariadb-server package is already using it, "
...@@ -113,13 +113,13 @@ msgstr "" ...@@ -113,13 +113,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
msgid "Start the MariaDB server on boot?" msgid "Start the MariaDB server on boot?"
msgstr "MariaDB をシステム起動時に開始しますか?" msgstr "MariaDB をシステム起動時に開始しますか?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
msgid "" msgid ""
"The MariaDB server can be launched automatically at boot time or manually " "The MariaDB server can be launched automatically at boot time or manually "
"with the '/etc/init.d/mysql start' command." "with the '/etc/init.d/mysql start' command."
...@@ -129,13 +129,13 @@ msgstr "" ...@@ -129,13 +129,13 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "New password for the MariaDB \"root\" user:" msgid "New password for the MariaDB \"root\" user:"
msgstr "MariaDB の \"root\" ユーザに対する新しいパスワード:" msgstr "MariaDB の \"root\" ユーザに対する新しいパスワード:"
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "" msgid ""
"While not mandatory, it is highly recommended that you set a password for " "While not mandatory, it is highly recommended that you set a password for "
"the MariaDB administrative \"root\" user." "the MariaDB administrative \"root\" user."
...@@ -145,25 +145,25 @@ msgstr "" ...@@ -145,25 +145,25 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "If this field is left blank, the password will not be changed." msgid "If this field is left blank, the password will not be changed."
msgstr "この値を空のままにしておいた場合は、パスワードは変更されません。" msgstr "この値を空のままにしておいた場合は、パスワードは変更されません。"
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:7001 #: ../mariadb-galera-server-10.0.templates:7001
msgid "Repeat password for the MariaDB \"root\" user:" msgid "Repeat password for the MariaDB \"root\" user:"
msgstr "MariaDB の \"root\" ユーザに対する新しいパスワード:" msgstr "MariaDB の \"root\" ユーザに対する新しいパスワード:"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "Unable to set password for the MariaDB \"root\" user" msgid "Unable to set password for the MariaDB \"root\" user"
msgstr "MariaDB の \"root\" ユーザのパスワードを設定できません" msgstr "MariaDB の \"root\" ユーザのパスワードを設定できません"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "" msgid ""
"An error occurred while setting the password for the MariaDB administrative " "An error occurred while setting the password for the MariaDB administrative "
"user. This may have happened because the account already has a password, or " "user. This may have happened because the account already has a password, or "
...@@ -175,14 +175,14 @@ msgstr "" ...@@ -175,14 +175,14 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "You should check the account's password after the package installation." msgid "You should check the account's password after the package installation."
msgstr "" msgstr ""
"パッケージのインストール後、アカウントのパスワードを確認する必要があります。" "パッケージのインストール後、アカウントのパスワードを確認する必要があります。"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "Please read the /usr/share/doc/mariadb-server-10.0/README.Debian file for " #| "Please read the /usr/share/doc/mariadb-server-10.0/README.Debian file for "
...@@ -195,25 +195,25 @@ msgstr "" ...@@ -195,25 +195,25 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "Password input error" msgid "Password input error"
msgstr "パスワード入力エラー" msgstr "パスワード入力エラー"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "The two passwords you entered were not the same. Please try again." msgid "The two passwords you entered were not the same. Please try again."
msgstr "入力された二つのパスワードが一致しません。再入力してください。" msgstr "入力された二つのパスワードが一致しません。再入力してください。"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "NDB Cluster seems to be in use" msgid "NDB Cluster seems to be in use"
msgstr "NDB クラスタが利用されているようです" msgstr "NDB クラスタが利用されているようです"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "" msgid ""
"MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new " "MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new "
"mysql-cluster package and remove all lines starting with \"ndb\" from all " "mysql-cluster package and remove all lines starting with \"ndb\" from all "
......
...@@ -19,7 +19,7 @@ msgstr "" ...@@ -19,7 +19,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
#, fuzzy #, fuzzy
#| msgid "Do you really want to downgrade?" #| msgid "Do you really want to downgrade?"
msgid "Really proceed with downgrade?" msgid "Really proceed with downgrade?"
...@@ -27,13 +27,13 @@ msgstr "Er du sikker på at du vil nedgradere?" ...@@ -27,13 +27,13 @@ msgstr "Er du sikker på at du vil nedgradere?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "A file named /var/lib/mysql/debian-*.flag exists on this system." msgid "A file named /var/lib/mysql/debian-*.flag exists on this system."
msgstr "" msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "WARNING: The file /var/lib/mysql/debian-*.flag exists. This indicates " #| "WARNING: The file /var/lib/mysql/debian-*.flag exists. This indicates "
...@@ -50,7 +50,7 @@ msgstr "" ...@@ -50,7 +50,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "" msgid ""
"There is no guarantee that the version you're currently installing will be " "There is no guarantee that the version you're currently installing will be "
"able to use the current databases." "able to use the current databases."
...@@ -58,7 +58,7 @@ msgstr "" ...@@ -58,7 +58,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
#, fuzzy #, fuzzy
#| msgid "Important note for NIS/YP users!" #| msgid "Important note for NIS/YP users!"
msgid "Important note for NIS/YP users" msgid "Important note for NIS/YP users"
...@@ -66,7 +66,7 @@ msgstr "Viktig merknad for NIS/YP-brukere!" ...@@ -66,7 +66,7 @@ msgstr "Viktig merknad for NIS/YP-brukere!"
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"Using MariaDB under NIS/YP requires a mysql user account to be added on the " "Using MariaDB under NIS/YP requires a mysql user account to be added on the "
"local system with:" "local system with:"
...@@ -74,7 +74,7 @@ msgstr "" ...@@ -74,7 +74,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"You should also check the permissions and ownership of the /var/lib/mysql " "You should also check the permissions and ownership of the /var/lib/mysql "
"directory:" "directory:"
...@@ -82,13 +82,13 @@ msgstr "" ...@@ -82,13 +82,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "Remove all MariaDB databases?" msgid "Remove all MariaDB databases?"
msgstr "" msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"The /var/lib/mysql directory which contains the MariaDB databases is about " "The /var/lib/mysql directory which contains the MariaDB databases is about "
"to be removed." "to be removed."
...@@ -96,7 +96,7 @@ msgstr "" ...@@ -96,7 +96,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "The script is about to remove the data directory /var/lib/mysql. If it is " #| "The script is about to remove the data directory /var/lib/mysql. If it is "
...@@ -113,7 +113,7 @@ msgstr "" ...@@ -113,7 +113,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
#, fuzzy #, fuzzy
#| msgid "Should MySQL start on boot?" #| msgid "Should MySQL start on boot?"
msgid "Start the MariaDB server on boot?" msgid "Start the MariaDB server on boot?"
...@@ -121,7 +121,7 @@ msgstr "Skal MariaDB startes ved maskinoppstart?" ...@@ -121,7 +121,7 @@ msgstr "Skal MariaDB startes ved maskinoppstart?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "The MySQL can start automatically on boot time or only if you manually " #| "The MySQL can start automatically on boot time or only if you manually "
...@@ -135,7 +135,7 @@ msgstr "" ...@@ -135,7 +135,7 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
#, fuzzy #, fuzzy
#| msgid "New password for MySQL \"root\" user:" #| msgid "New password for MySQL \"root\" user:"
msgid "New password for the MariaDB \"root\" user:" msgid "New password for the MariaDB \"root\" user:"
...@@ -143,7 +143,7 @@ msgstr "Nytt passord for MariaDBs «root»-bruker:" ...@@ -143,7 +143,7 @@ msgstr "Nytt passord for MariaDBs «root»-bruker:"
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "It is highly recommended that you set a password for the MySQL " #| "It is highly recommended that you set a password for the MySQL "
...@@ -157,13 +157,13 @@ msgstr "" ...@@ -157,13 +157,13 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "If this field is left blank, the password will not be changed." msgid "If this field is left blank, the password will not be changed."
msgstr "" msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:7001 #: ../mariadb-galera-server-10.0.templates:7001
#, fuzzy #, fuzzy
#| msgid "New password for MySQL \"root\" user:" #| msgid "New password for MySQL \"root\" user:"
msgid "Repeat password for the MariaDB \"root\" user:" msgid "Repeat password for the MariaDB \"root\" user:"
...@@ -171,7 +171,7 @@ msgstr "Nytt passord for MariaDBs «root»-bruker:" ...@@ -171,7 +171,7 @@ msgstr "Nytt passord for MariaDBs «root»-bruker:"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
#, fuzzy #, fuzzy
#| msgid "Unable to set password for MySQL \"root\" user" #| msgid "Unable to set password for MySQL \"root\" user"
msgid "Unable to set password for the MariaDB \"root\" user" msgid "Unable to set password for the MariaDB \"root\" user"
...@@ -179,7 +179,7 @@ msgstr "Klarer ikke angi passord for MariaDBs «root»-bruker" ...@@ -179,7 +179,7 @@ msgstr "Klarer ikke angi passord for MariaDBs «root»-bruker"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "It seems an error occurred while setting the password for the MySQL " #| "It seems an error occurred while setting the password for the MySQL "
...@@ -198,13 +198,13 @@ msgstr "" ...@@ -198,13 +198,13 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "You should check the account's password after the package installation." msgid "You should check the account's password after the package installation."
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "" msgid ""
"Please read the /usr/share/doc/mariadb-server-10.0/README.Debian file for " "Please read the /usr/share/doc/mariadb-server-10.0/README.Debian file for "
"more information." "more information."
...@@ -212,25 +212,25 @@ msgstr "" ...@@ -212,25 +212,25 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "Password input error" msgid "Password input error"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "The two passwords you entered were not the same. Please try again." msgid "The two passwords you entered were not the same. Please try again."
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "NDB Cluster seems to be in use" msgid "NDB Cluster seems to be in use"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "" msgid ""
"MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new " "MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new "
"mysql-cluster package and remove all lines starting with \"ndb\" from all " "mysql-cluster package and remove all lines starting with \"ndb\" from all "
......
...@@ -18,7 +18,7 @@ msgstr "" ...@@ -18,7 +18,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
#, fuzzy #, fuzzy
#| msgid "Do you really want to downgrade?" #| msgid "Do you really want to downgrade?"
msgid "Really proceed with downgrade?" msgid "Really proceed with downgrade?"
...@@ -26,13 +26,13 @@ msgstr "Wilt u echt een oude versie herstellen?" ...@@ -26,13 +26,13 @@ msgstr "Wilt u echt een oude versie herstellen?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "A file named /var/lib/mysql/debian-*.flag exists on this system." msgid "A file named /var/lib/mysql/debian-*.flag exists on this system."
msgstr "" msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "WARNING: The file /var/lib/mysql/debian-*.flag exists. This indicates " #| "WARNING: The file /var/lib/mysql/debian-*.flag exists. This indicates "
...@@ -50,7 +50,7 @@ msgstr "" ...@@ -50,7 +50,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "" msgid ""
"There is no guarantee that the version you're currently installing will be " "There is no guarantee that the version you're currently installing will be "
"able to use the current databases." "able to use the current databases."
...@@ -58,7 +58,7 @@ msgstr "" ...@@ -58,7 +58,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
#, fuzzy #, fuzzy
#| msgid "Important note for NIS/YP users!" #| msgid "Important note for NIS/YP users!"
msgid "Important note for NIS/YP users" msgid "Important note for NIS/YP users"
...@@ -66,7 +66,7 @@ msgstr "Belangrijke opmerking voor gebruikers van NIS/YP!" ...@@ -66,7 +66,7 @@ msgstr "Belangrijke opmerking voor gebruikers van NIS/YP!"
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"Using MariaDB under NIS/YP requires a mysql user account to be added on the " "Using MariaDB under NIS/YP requires a mysql user account to be added on the "
"local system with:" "local system with:"
...@@ -74,7 +74,7 @@ msgstr "" ...@@ -74,7 +74,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"You should also check the permissions and ownership of the /var/lib/mysql " "You should also check the permissions and ownership of the /var/lib/mysql "
"directory:" "directory:"
...@@ -82,13 +82,13 @@ msgstr "" ...@@ -82,13 +82,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "Remove all MariaDB databases?" msgid "Remove all MariaDB databases?"
msgstr "" msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"The /var/lib/mysql directory which contains the MariaDB databases is about " "The /var/lib/mysql directory which contains the MariaDB databases is about "
"to be removed." "to be removed."
...@@ -96,7 +96,7 @@ msgstr "" ...@@ -96,7 +96,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "The script is about to remove the data directory /var/lib/mysql. If it is " #| "The script is about to remove the data directory /var/lib/mysql. If it is "
...@@ -114,7 +114,7 @@ msgstr "" ...@@ -114,7 +114,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
#, fuzzy #, fuzzy
#| msgid "Should MySQL start on boot?" #| msgid "Should MySQL start on boot?"
msgid "Start the MariaDB server on boot?" msgid "Start the MariaDB server on boot?"
...@@ -122,7 +122,7 @@ msgstr "Moet MariaDB starten als de computer start?" ...@@ -122,7 +122,7 @@ msgstr "Moet MariaDB starten als de computer start?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "The MySQL can start automatically on boot time or only if you manually " #| "The MySQL can start automatically on boot time or only if you manually "
...@@ -136,7 +136,7 @@ msgstr "" ...@@ -136,7 +136,7 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
#, fuzzy #, fuzzy
#| msgid "New password for MySQL \"root\" user:" #| msgid "New password for MySQL \"root\" user:"
msgid "New password for the MariaDB \"root\" user:" msgid "New password for the MariaDB \"root\" user:"
...@@ -144,7 +144,7 @@ msgstr "Nieuw wachtwoord voor de MariaDB \"root\"-gebruiker:" ...@@ -144,7 +144,7 @@ msgstr "Nieuw wachtwoord voor de MariaDB \"root\"-gebruiker:"
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "It is highly recommended that you set a password for the MySQL " #| "It is highly recommended that you set a password for the MySQL "
...@@ -158,13 +158,13 @@ msgstr "" ...@@ -158,13 +158,13 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "If this field is left blank, the password will not be changed." msgid "If this field is left blank, the password will not be changed."
msgstr "" msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:7001 #: ../mariadb-galera-server-10.0.templates:7001
#, fuzzy #, fuzzy
#| msgid "New password for MySQL \"root\" user:" #| msgid "New password for MySQL \"root\" user:"
msgid "Repeat password for the MariaDB \"root\" user:" msgid "Repeat password for the MariaDB \"root\" user:"
...@@ -172,7 +172,7 @@ msgstr "Nieuw wachtwoord voor de MariaDB \"root\"-gebruiker:" ...@@ -172,7 +172,7 @@ msgstr "Nieuw wachtwoord voor de MariaDB \"root\"-gebruiker:"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
#, fuzzy #, fuzzy
#| msgid "Unable to set password for MySQL \"root\" user" #| msgid "Unable to set password for MySQL \"root\" user"
msgid "Unable to set password for the MariaDB \"root\" user" msgid "Unable to set password for the MariaDB \"root\" user"
...@@ -180,7 +180,7 @@ msgstr "Kan het wachtwoord voor de MariaDB \"root\"-gebruiker niet instellen" ...@@ -180,7 +180,7 @@ msgstr "Kan het wachtwoord voor de MariaDB \"root\"-gebruiker niet instellen"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "It seems an error occurred while setting the password for the MySQL " #| "It seems an error occurred while setting the password for the MySQL "
...@@ -199,13 +199,13 @@ msgstr "" ...@@ -199,13 +199,13 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "You should check the account's password after the package installation." msgid "You should check the account's password after the package installation."
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "" msgid ""
"Please read the /usr/share/doc/mariadb-server-10.0/README.Debian file for " "Please read the /usr/share/doc/mariadb-server-10.0/README.Debian file for "
"more information." "more information."
...@@ -213,25 +213,25 @@ msgstr "" ...@@ -213,25 +213,25 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "Password input error" msgid "Password input error"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "The two passwords you entered were not the same. Please try again." msgid "The two passwords you entered were not the same. Please try again."
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "NDB Cluster seems to be in use" msgid "NDB Cluster seems to be in use"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "" msgid ""
"MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new " "MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new "
"mysql-cluster package and remove all lines starting with \"ndb\" from all " "mysql-cluster package and remove all lines starting with \"ndb\" from all "
......
...@@ -18,19 +18,19 @@ msgstr "" ...@@ -18,19 +18,19 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "Really proceed with downgrade?" msgid "Really proceed with downgrade?"
msgstr "Deseja mesmo fazer downgrade?" msgstr "Deseja mesmo fazer downgrade?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "A file named /var/lib/mysql/debian-*.flag exists on this system." msgid "A file named /var/lib/mysql/debian-*.flag exists on this system."
msgstr "Existe um ficheiro chamado /var/lib/mysql/debian-*.flag neste sistema." msgstr "Existe um ficheiro chamado /var/lib/mysql/debian-*.flag neste sistema."
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "Such file is an indication that a mariadb-server package with a higher " #| "Such file is an indication that a mariadb-server package with a higher "
...@@ -44,7 +44,7 @@ msgstr "" ...@@ -44,7 +44,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "" msgid ""
"There is no guarantee that the version you're currently installing will be " "There is no guarantee that the version you're currently installing will be "
"able to use the current databases." "able to use the current databases."
...@@ -54,13 +54,13 @@ msgstr "" ...@@ -54,13 +54,13 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "Important note for NIS/YP users" msgid "Important note for NIS/YP users"
msgstr "Nota importante para utilizadores de NIS/YP" msgstr "Nota importante para utilizadores de NIS/YP"
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"Using MariaDB under NIS/YP requires a mysql user account to be added on the " "Using MariaDB under NIS/YP requires a mysql user account to be added on the "
"local system with:" "local system with:"
...@@ -68,7 +68,7 @@ msgstr "" ...@@ -68,7 +68,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "You should also check the permissions and the owner of the /var/lib/mysql " #| "You should also check the permissions and the owner of the /var/lib/mysql "
...@@ -81,13 +81,13 @@ msgstr "" ...@@ -81,13 +81,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "Remove all MariaDB databases?" msgid "Remove all MariaDB databases?"
msgstr "Remover todas as bases de dados MariaDB?" msgstr "Remover todas as bases de dados MariaDB?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"The /var/lib/mysql directory which contains the MariaDB databases is about " "The /var/lib/mysql directory which contains the MariaDB databases is about "
"to be removed." "to be removed."
...@@ -97,7 +97,7 @@ msgstr "" ...@@ -97,7 +97,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"If you're removing the MariaDB package in order to later install a more " "If you're removing the MariaDB package in order to later install a more "
"recent version or if a different mariadb-server package is already using it, " "recent version or if a different mariadb-server package is already using it, "
...@@ -109,13 +109,13 @@ msgstr "" ...@@ -109,13 +109,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
msgid "Start the MariaDB server on boot?" msgid "Start the MariaDB server on boot?"
msgstr "Iniciar o servidor MariaDB no arranque?" msgstr "Iniciar o servidor MariaDB no arranque?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
msgid "" msgid ""
"The MariaDB server can be launched automatically at boot time or manually " "The MariaDB server can be launched automatically at boot time or manually "
"with the '/etc/init.d/mysql start' command." "with the '/etc/init.d/mysql start' command."
...@@ -125,13 +125,13 @@ msgstr "" ...@@ -125,13 +125,13 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "New password for the MariaDB \"root\" user:" msgid "New password for the MariaDB \"root\" user:"
msgstr "Nova palavra-passe para o utilizador \"root\" do MariaDB:" msgstr "Nova palavra-passe para o utilizador \"root\" do MariaDB:"
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "" msgid ""
"While not mandatory, it is highly recommended that you set a password for " "While not mandatory, it is highly recommended that you set a password for "
"the MariaDB administrative \"root\" user." "the MariaDB administrative \"root\" user."
...@@ -141,7 +141,7 @@ msgstr "" ...@@ -141,7 +141,7 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
#, fuzzy #, fuzzy
#| msgid "If that field is left blank, the password will not be changed." #| msgid "If that field is left blank, the password will not be changed."
msgid "If this field is left blank, the password will not be changed." msgid "If this field is left blank, the password will not be changed."
...@@ -150,7 +150,7 @@ msgstr "" ...@@ -150,7 +150,7 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:7001 #: ../mariadb-galera-server-10.0.templates:7001
#, fuzzy #, fuzzy
#| msgid "New password for the MySQL \"root\" user:" #| msgid "New password for the MySQL \"root\" user:"
msgid "Repeat password for the MariaDB \"root\" user:" msgid "Repeat password for the MariaDB \"root\" user:"
...@@ -158,7 +158,7 @@ msgstr "Nova palavra-passe para o utilizador \"root\" do MariaDB:" ...@@ -158,7 +158,7 @@ msgstr "Nova palavra-passe para o utilizador \"root\" do MariaDB:"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "Unable to set password for the MariaDB \"root\" user" msgid "Unable to set password for the MariaDB \"root\" user"
msgstr "" msgstr ""
"Não foi possível definir a palavra-passe para o utilizador \"root\" do " "Não foi possível definir a palavra-passe para o utilizador \"root\" do "
...@@ -166,7 +166,7 @@ msgstr "" ...@@ -166,7 +166,7 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "" msgid ""
"An error occurred while setting the password for the MariaDB administrative " "An error occurred while setting the password for the MariaDB administrative "
"user. This may have happened because the account already has a password, or " "user. This may have happened because the account already has a password, or "
...@@ -179,7 +179,7 @@ msgstr "" ...@@ -179,7 +179,7 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "You should check the account's password after tha package installation." #| "You should check the account's password after tha package installation."
...@@ -189,7 +189,7 @@ msgstr "" ...@@ -189,7 +189,7 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "Please read the /usr/share/doc/mysql-server-5.1/README.Debian file for " #| "Please read the /usr/share/doc/mysql-server-5.1/README.Debian file for "
...@@ -203,25 +203,25 @@ msgstr "" ...@@ -203,25 +203,25 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "Password input error" msgid "Password input error"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "The two passwords you entered were not the same. Please try again." msgid "The two passwords you entered were not the same. Please try again."
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "NDB Cluster seems to be in use" msgid "NDB Cluster seems to be in use"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "" msgid ""
"MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new " "MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new "
"mysql-cluster package and remove all lines starting with \"ndb\" from all " "mysql-cluster package and remove all lines starting with \"ndb\" from all "
......
...@@ -21,19 +21,19 @@ msgstr "" ...@@ -21,19 +21,19 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "Really proceed with downgrade?" msgid "Really proceed with downgrade?"
msgstr "Realmente proceder com o rebaixamento de versão?" msgstr "Realmente proceder com o rebaixamento de versão?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "A file named /var/lib/mysql/debian-*.flag exists on this system." msgid "A file named /var/lib/mysql/debian-*.flag exists on this system."
msgstr "Um arquivo de nome /var/lib/mysql/debian-*.flag existe no sistema." msgstr "Um arquivo de nome /var/lib/mysql/debian-*.flag existe no sistema."
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "Such file is an indication that a mariadb-server package with a higher " #| "Such file is an indication that a mariadb-server package with a higher "
...@@ -47,7 +47,7 @@ msgstr "" ...@@ -47,7 +47,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "" msgid ""
"There is no guarantee that the version you're currently installing will be " "There is no guarantee that the version you're currently installing will be "
"able to use the current databases." "able to use the current databases."
...@@ -57,13 +57,13 @@ msgstr "" ...@@ -57,13 +57,13 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "Important note for NIS/YP users" msgid "Important note for NIS/YP users"
msgstr "Aviso importante para usuários NIS/YP" msgstr "Aviso importante para usuários NIS/YP"
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"Using MariaDB under NIS/YP requires a mysql user account to be added on the " "Using MariaDB under NIS/YP requires a mysql user account to be added on the "
"local system with:" "local system with:"
...@@ -71,7 +71,7 @@ msgstr "" ...@@ -71,7 +71,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "You should also check the permissions and the owner of the /var/lib/mysql " #| "You should also check the permissions and the owner of the /var/lib/mysql "
...@@ -84,13 +84,13 @@ msgstr "" ...@@ -84,13 +84,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "Remove all MariaDB databases?" msgid "Remove all MariaDB databases?"
msgstr "Remover todas as bases de dados do MariaDB?" msgstr "Remover todas as bases de dados do MariaDB?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"The /var/lib/mysql directory which contains the MariaDB databases is about " "The /var/lib/mysql directory which contains the MariaDB databases is about "
"to be removed." "to be removed."
...@@ -100,7 +100,7 @@ msgstr "" ...@@ -100,7 +100,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"If you're removing the MariaDB package in order to later install a more " "If you're removing the MariaDB package in order to later install a more "
"recent version or if a different mariadb-server package is already using it, " "recent version or if a different mariadb-server package is already using it, "
...@@ -112,13 +112,13 @@ msgstr "" ...@@ -112,13 +112,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
msgid "Start the MariaDB server on boot?" msgid "Start the MariaDB server on boot?"
msgstr "Iniciar o servidor MariaDB junto a inicialização da máquina?" msgstr "Iniciar o servidor MariaDB junto a inicialização da máquina?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
msgid "" msgid ""
"The MariaDB server can be launched automatically at boot time or manually " "The MariaDB server can be launched automatically at boot time or manually "
"with the '/etc/init.d/mysql start' command." "with the '/etc/init.d/mysql start' command."
...@@ -128,13 +128,13 @@ msgstr "" ...@@ -128,13 +128,13 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "New password for the MariaDB \"root\" user:" msgid "New password for the MariaDB \"root\" user:"
msgstr "Nova senha para o usuário \"root\" do MariaDB:" msgstr "Nova senha para o usuário \"root\" do MariaDB:"
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "" msgid ""
"While not mandatory, it is highly recommended that you set a password for " "While not mandatory, it is highly recommended that you set a password for "
"the MariaDB administrative \"root\" user." "the MariaDB administrative \"root\" user."
...@@ -144,7 +144,7 @@ msgstr "" ...@@ -144,7 +144,7 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
#, fuzzy #, fuzzy
#| msgid "If that field is left blank, the password will not be changed." #| msgid "If that field is left blank, the password will not be changed."
msgid "If this field is left blank, the password will not be changed." msgid "If this field is left blank, the password will not be changed."
...@@ -152,7 +152,7 @@ msgstr "Caso este campo seja deixado em branco, a senha não sera mudada." ...@@ -152,7 +152,7 @@ msgstr "Caso este campo seja deixado em branco, a senha não sera mudada."
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:7001 #: ../mariadb-galera-server-10.0.templates:7001
#, fuzzy #, fuzzy
#| msgid "New password for the MySQL \"root\" user:" #| msgid "New password for the MySQL \"root\" user:"
msgid "Repeat password for the MariaDB \"root\" user:" msgid "Repeat password for the MariaDB \"root\" user:"
...@@ -160,13 +160,13 @@ msgstr "Nova senha para o usuário \"root\" do MariaDB:" ...@@ -160,13 +160,13 @@ msgstr "Nova senha para o usuário \"root\" do MariaDB:"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "Unable to set password for the MariaDB \"root\" user" msgid "Unable to set password for the MariaDB \"root\" user"
msgstr "Impossível definir senha para o usuário \"root\" do MariaDB" msgstr "Impossível definir senha para o usuário \"root\" do MariaDB"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "" msgid ""
"An error occurred while setting the password for the MariaDB administrative " "An error occurred while setting the password for the MariaDB administrative "
"user. This may have happened because the account already has a password, or " "user. This may have happened because the account already has a password, or "
...@@ -179,7 +179,7 @@ msgstr "" ...@@ -179,7 +179,7 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "You should check the account's password after tha package installation." #| "You should check the account's password after tha package installation."
...@@ -188,7 +188,7 @@ msgstr "Você deverá checar a senha dessa conta após a instalação deste paco ...@@ -188,7 +188,7 @@ msgstr "Você deverá checar a senha dessa conta após a instalação deste paco
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "Please read the /usr/share/doc/mysql-server-5.1/README.Debian file for " #| "Please read the /usr/share/doc/mysql-server-5.1/README.Debian file for "
...@@ -202,25 +202,25 @@ msgstr "" ...@@ -202,25 +202,25 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "Password input error" msgid "Password input error"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "The two passwords you entered were not the same. Please try again." msgid "The two passwords you entered were not the same. Please try again."
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "NDB Cluster seems to be in use" msgid "NDB Cluster seems to be in use"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "" msgid ""
"MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new " "MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new "
"mysql-cluster package and remove all lines starting with \"ndb\" from all " "mysql-cluster package and remove all lines starting with \"ndb\" from all "
......
...@@ -19,7 +19,7 @@ msgstr "" ...@@ -19,7 +19,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
#, fuzzy #, fuzzy
#| msgid "Do you really want to downgrade?" #| msgid "Do you really want to downgrade?"
msgid "Really proceed with downgrade?" msgid "Really proceed with downgrade?"
...@@ -27,13 +27,13 @@ msgstr "Sunteţi sigur că doriţi să instalaţi o versiune mai veche?" ...@@ -27,13 +27,13 @@ msgstr "Sunteţi sigur că doriţi să instalaţi o versiune mai veche?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "A file named /var/lib/mysql/debian-*.flag exists on this system." msgid "A file named /var/lib/mysql/debian-*.flag exists on this system."
msgstr "" msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "WARNING: The file /var/lib/mysql/debian-*.flag exists. This indicates " #| "WARNING: The file /var/lib/mysql/debian-*.flag exists. This indicates "
...@@ -50,7 +50,7 @@ msgstr "" ...@@ -50,7 +50,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "" msgid ""
"There is no guarantee that the version you're currently installing will be " "There is no guarantee that the version you're currently installing will be "
"able to use the current databases." "able to use the current databases."
...@@ -58,7 +58,7 @@ msgstr "" ...@@ -58,7 +58,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
#, fuzzy #, fuzzy
#| msgid "Important note for NIS/YP users!" #| msgid "Important note for NIS/YP users!"
msgid "Important note for NIS/YP users" msgid "Important note for NIS/YP users"
...@@ -66,7 +66,7 @@ msgstr "Notă importantă pentru utilizatorii NIS/YP!" ...@@ -66,7 +66,7 @@ msgstr "Notă importantă pentru utilizatorii NIS/YP!"
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"Using MariaDB under NIS/YP requires a mysql user account to be added on the " "Using MariaDB under NIS/YP requires a mysql user account to be added on the "
"local system with:" "local system with:"
...@@ -74,7 +74,7 @@ msgstr "" ...@@ -74,7 +74,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"You should also check the permissions and ownership of the /var/lib/mysql " "You should also check the permissions and ownership of the /var/lib/mysql "
"directory:" "directory:"
...@@ -82,13 +82,13 @@ msgstr "" ...@@ -82,13 +82,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "Remove all MariaDB databases?" msgid "Remove all MariaDB databases?"
msgstr "" msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"The /var/lib/mysql directory which contains the MariaDB databases is about " "The /var/lib/mysql directory which contains the MariaDB databases is about "
"to be removed." "to be removed."
...@@ -96,7 +96,7 @@ msgstr "" ...@@ -96,7 +96,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "The script is about to remove the data directory /var/lib/mysql. If it is " #| "The script is about to remove the data directory /var/lib/mysql. If it is "
...@@ -113,7 +113,7 @@ msgstr "" ...@@ -113,7 +113,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
#, fuzzy #, fuzzy
#| msgid "Should MySQL start on boot?" #| msgid "Should MySQL start on boot?"
msgid "Start the MariaDB server on boot?" msgid "Start the MariaDB server on boot?"
...@@ -121,7 +121,7 @@ msgstr "Doriţi ca MariaDB să pornească la initializarea sistemului?" ...@@ -121,7 +121,7 @@ msgstr "Doriţi ca MariaDB să pornească la initializarea sistemului?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "The MySQL can start automatically on boot time or only if you manually " #| "The MySQL can start automatically on boot time or only if you manually "
...@@ -135,7 +135,7 @@ msgstr "" ...@@ -135,7 +135,7 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
#, fuzzy #, fuzzy
#| msgid "New password for MySQL \"root\" user:" #| msgid "New password for MySQL \"root\" user:"
msgid "New password for the MariaDB \"root\" user:" msgid "New password for the MariaDB \"root\" user:"
...@@ -143,7 +143,7 @@ msgstr "Noua parolă pentru utilizatorul „root” al MariaDB:" ...@@ -143,7 +143,7 @@ msgstr "Noua parolă pentru utilizatorul „root” al MariaDB:"
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "It is highly recommended that you set a password for the MySQL " #| "It is highly recommended that you set a password for the MySQL "
...@@ -157,13 +157,13 @@ msgstr "" ...@@ -157,13 +157,13 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "If this field is left blank, the password will not be changed." msgid "If this field is left blank, the password will not be changed."
msgstr "" msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:7001 #: ../mariadb-galera-server-10.0.templates:7001
#, fuzzy #, fuzzy
#| msgid "New password for MySQL \"root\" user:" #| msgid "New password for MySQL \"root\" user:"
msgid "Repeat password for the MariaDB \"root\" user:" msgid "Repeat password for the MariaDB \"root\" user:"
...@@ -171,7 +171,7 @@ msgstr "Noua parolă pentru utilizatorul „root” al MariaDB:" ...@@ -171,7 +171,7 @@ msgstr "Noua parolă pentru utilizatorul „root” al MariaDB:"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
#, fuzzy #, fuzzy
#| msgid "Unable to set password for MySQL \"root\" user" #| msgid "Unable to set password for MySQL \"root\" user"
msgid "Unable to set password for the MariaDB \"root\" user" msgid "Unable to set password for the MariaDB \"root\" user"
...@@ -179,7 +179,7 @@ msgstr "Nu s-a putut stabili parola pentru utilizatorul „root” al MariaDB" ...@@ -179,7 +179,7 @@ msgstr "Nu s-a putut stabili parola pentru utilizatorul „root” al MariaDB"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "It seems an error occurred while setting the password for the MySQL " #| "It seems an error occurred while setting the password for the MySQL "
...@@ -198,13 +198,13 @@ msgstr "" ...@@ -198,13 +198,13 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "You should check the account's password after the package installation." msgid "You should check the account's password after the package installation."
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "" msgid ""
"Please read the /usr/share/doc/mariadb-server-10.0/README.Debian file for " "Please read the /usr/share/doc/mariadb-server-10.0/README.Debian file for "
"more information." "more information."
...@@ -212,25 +212,25 @@ msgstr "" ...@@ -212,25 +212,25 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "Password input error" msgid "Password input error"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "The two passwords you entered were not the same. Please try again." msgid "The two passwords you entered were not the same. Please try again."
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "NDB Cluster seems to be in use" msgid "NDB Cluster seems to be in use"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "" msgid ""
"MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new " "MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new "
"mysql-cluster package and remove all lines starting with \"ndb\" from all " "mysql-cluster package and remove all lines starting with \"ndb\" from all "
......
...@@ -32,19 +32,19 @@ msgstr "" ...@@ -32,19 +32,19 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "Really proceed with downgrade?" msgid "Really proceed with downgrade?"
msgstr "Действительно установить более старую версию?" msgstr "Действительно установить более старую версию?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "A file named /var/lib/mysql/debian-*.flag exists on this system." msgid "A file named /var/lib/mysql/debian-*.flag exists on this system."
msgstr "В системе найден файл /var/lib/mysql/debian-*.flag." msgstr "В системе найден файл /var/lib/mysql/debian-*.flag."
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "" msgid ""
"Such a file is an indication that a mariadb-server package with a higher " "Such a file is an indication that a mariadb-server package with a higher "
"version has been installed previously." "version has been installed previously."
...@@ -54,7 +54,7 @@ msgstr "" ...@@ -54,7 +54,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "" msgid ""
"There is no guarantee that the version you're currently installing will be " "There is no guarantee that the version you're currently installing will be "
"able to use the current databases." "able to use the current databases."
...@@ -64,13 +64,13 @@ msgstr "" ...@@ -64,13 +64,13 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "Important note for NIS/YP users" msgid "Important note for NIS/YP users"
msgstr "Важное замечание для пользователей NIS/YP" msgstr "Важное замечание для пользователей NIS/YP"
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"Using MariaDB under NIS/YP requires a mysql user account to be added on the " "Using MariaDB under NIS/YP requires a mysql user account to be added on the "
"local system with:" "local system with:"
...@@ -80,7 +80,7 @@ msgstr "" ...@@ -80,7 +80,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"You should also check the permissions and ownership of the /var/lib/mysql " "You should also check the permissions and ownership of the /var/lib/mysql "
"directory:" "directory:"
...@@ -88,13 +88,13 @@ msgstr "Также проверьте права доступа и владел ...@@ -88,13 +88,13 @@ msgstr "Также проверьте права доступа и владел
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "Remove all MariaDB databases?" msgid "Remove all MariaDB databases?"
msgstr "Удалить все базы данных MariaDB?" msgstr "Удалить все базы данных MariaDB?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"The /var/lib/mysql directory which contains the MariaDB databases is about " "The /var/lib/mysql directory which contains the MariaDB databases is about "
"to be removed." "to be removed."
...@@ -103,7 +103,7 @@ msgstr "" ...@@ -103,7 +103,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"If you're removing the MariaDB package in order to later install a more " "If you're removing the MariaDB package in order to later install a more "
"recent version or if a different mariadb-server package is already using it, " "recent version or if a different mariadb-server package is already using it, "
...@@ -115,13 +115,13 @@ msgstr "" ...@@ -115,13 +115,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
msgid "Start the MariaDB server on boot?" msgid "Start the MariaDB server on boot?"
msgstr "Запускать MariaDB при загрузке системы?" msgstr "Запускать MariaDB при загрузке системы?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
msgid "" msgid ""
"The MariaDB server can be launched automatically at boot time or manually " "The MariaDB server can be launched automatically at boot time or manually "
"with the '/etc/init.d/mysql start' command." "with the '/etc/init.d/mysql start' command."
...@@ -131,13 +131,13 @@ msgstr "" ...@@ -131,13 +131,13 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "New password for the MariaDB \"root\" user:" msgid "New password for the MariaDB \"root\" user:"
msgstr "Новый пароль для MariaDB пользователя \"root\":" msgstr "Новый пароль для MariaDB пользователя \"root\":"
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "" msgid ""
"While not mandatory, it is highly recommended that you set a password for " "While not mandatory, it is highly recommended that you set a password for "
"the MariaDB administrative \"root\" user." "the MariaDB administrative \"root\" user."
...@@ -147,25 +147,25 @@ msgstr "" ...@@ -147,25 +147,25 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "If this field is left blank, the password will not be changed." msgid "If this field is left blank, the password will not be changed."
msgstr "Если оставить поле пустым, то пароль изменён не будет." msgstr "Если оставить поле пустым, то пароль изменён не будет."
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:7001 #: ../mariadb-galera-server-10.0.templates:7001
msgid "Repeat password for the MariaDB \"root\" user:" msgid "Repeat password for the MariaDB \"root\" user:"
msgstr "Повторите ввод пароля для MariaDB пользователя \"root\":" msgstr "Повторите ввод пароля для MariaDB пользователя \"root\":"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "Unable to set password for the MariaDB \"root\" user" msgid "Unable to set password for the MariaDB \"root\" user"
msgstr "Невозможно задать пароль MariaDB пользователю \"root\"" msgstr "Невозможно задать пароль MariaDB пользователю \"root\""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "" msgid ""
"An error occurred while setting the password for the MariaDB administrative " "An error occurred while setting the password for the MariaDB administrative "
"user. This may have happened because the account already has a password, or " "user. This may have happened because the account already has a password, or "
...@@ -177,13 +177,13 @@ msgstr "" ...@@ -177,13 +177,13 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "You should check the account's password after the package installation." msgid "You should check the account's password after the package installation."
msgstr "Проверьте пароль учётной записи после установки пакета." msgstr "Проверьте пароль учётной записи после установки пакета."
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "Please read the /usr/share/doc/mariadb-server-10.0/README.Debian file for " #| "Please read the /usr/share/doc/mariadb-server-10.0/README.Debian file for "
...@@ -196,25 +196,25 @@ msgstr "" ...@@ -196,25 +196,25 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "Password input error" msgid "Password input error"
msgstr "Ошибка ввода пароля" msgstr "Ошибка ввода пароля"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "The two passwords you entered were not the same. Please try again." msgid "The two passwords you entered were not the same. Please try again."
msgstr "Два введённых пароля не одинаковы. Повторите ввод." msgstr "Два введённых пароля не одинаковы. Повторите ввод."
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "NDB Cluster seems to be in use" msgid "NDB Cluster seems to be in use"
msgstr "NDB Cluster уже используется" msgstr "NDB Cluster уже используется"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "" msgid ""
"MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new " "MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new "
"mysql-cluster package and remove all lines starting with \"ndb\" from all " "mysql-cluster package and remove all lines starting with \"ndb\" from all "
......
...@@ -21,19 +21,19 @@ msgstr "" ...@@ -21,19 +21,19 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "Really proceed with downgrade?" msgid "Really proceed with downgrade?"
msgstr "Vill du verkligen genomföra nedgraderingen?" msgstr "Vill du verkligen genomföra nedgraderingen?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "A file named /var/lib/mysql/debian-*.flag exists on this system." msgid "A file named /var/lib/mysql/debian-*.flag exists on this system."
msgstr "En fil med namnet /var/lib/mysql/debian-*.flag hittades i systemet." msgstr "En fil med namnet /var/lib/mysql/debian-*.flag hittades i systemet."
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "" msgid ""
"Such a file is an indication that a mariadb-server package with a higher " "Such a file is an indication that a mariadb-server package with a higher "
"version has been installed previously." "version has been installed previously."
...@@ -43,7 +43,7 @@ msgstr "" ...@@ -43,7 +43,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "" msgid ""
"There is no guarantee that the version you're currently installing will be " "There is no guarantee that the version you're currently installing will be "
"able to use the current databases." "able to use the current databases."
...@@ -53,13 +53,13 @@ msgstr "" ...@@ -53,13 +53,13 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "Important note for NIS/YP users" msgid "Important note for NIS/YP users"
msgstr "Viktig information för NIS/YP-användare" msgstr "Viktig information för NIS/YP-användare"
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"Using MariaDB under NIS/YP requires a mysql user account to be added on the " "Using MariaDB under NIS/YP requires a mysql user account to be added on the "
"local system with:" "local system with:"
...@@ -69,7 +69,7 @@ msgstr "" ...@@ -69,7 +69,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"You should also check the permissions and ownership of the /var/lib/mysql " "You should also check the permissions and ownership of the /var/lib/mysql "
"directory:" "directory:"
...@@ -79,13 +79,13 @@ msgstr "" ...@@ -79,13 +79,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "Remove all MariaDB databases?" msgid "Remove all MariaDB databases?"
msgstr "Ta bort alla MariaDB-databaser?" msgstr "Ta bort alla MariaDB-databaser?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"The /var/lib/mysql directory which contains the MariaDB databases is about " "The /var/lib/mysql directory which contains the MariaDB databases is about "
"to be removed." "to be removed."
...@@ -95,7 +95,7 @@ msgstr "" ...@@ -95,7 +95,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"If you're removing the MariaDB package in order to later install a more " "If you're removing the MariaDB package in order to later install a more "
"recent version or if a different mariadb-server package is already using it, " "recent version or if a different mariadb-server package is already using it, "
...@@ -107,13 +107,13 @@ msgstr "" ...@@ -107,13 +107,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
msgid "Start the MariaDB server on boot?" msgid "Start the MariaDB server on boot?"
msgstr "Ska MariaDB startas vid systemets uppstart?" msgstr "Ska MariaDB startas vid systemets uppstart?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
msgid "" msgid ""
"The MariaDB server can be launched automatically at boot time or manually " "The MariaDB server can be launched automatically at boot time or manually "
"with the '/etc/init.d/mysql start' command." "with the '/etc/init.d/mysql start' command."
...@@ -123,13 +123,13 @@ msgstr "" ...@@ -123,13 +123,13 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "New password for the MariaDB \"root\" user:" msgid "New password for the MariaDB \"root\" user:"
msgstr "Nytt lösenord för MariaDBs \"root\"-användare:" msgstr "Nytt lösenord för MariaDBs \"root\"-användare:"
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "" msgid ""
"While not mandatory, it is highly recommended that you set a password for " "While not mandatory, it is highly recommended that you set a password for "
"the MariaDB administrative \"root\" user." "the MariaDB administrative \"root\" user."
...@@ -139,25 +139,25 @@ msgstr "" ...@@ -139,25 +139,25 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "If this field is left blank, the password will not be changed." msgid "If this field is left blank, the password will not be changed."
msgstr "Om detta fält lämnas tom kommer lösenordet inte att ändras." msgstr "Om detta fält lämnas tom kommer lösenordet inte att ändras."
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:7001 #: ../mariadb-galera-server-10.0.templates:7001
msgid "Repeat password for the MariaDB \"root\" user:" msgid "Repeat password for the MariaDB \"root\" user:"
msgstr "Repetera lösenordet för MariaDBs \"root\"-användare:" msgstr "Repetera lösenordet för MariaDBs \"root\"-användare:"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "Unable to set password for the MariaDB \"root\" user" msgid "Unable to set password for the MariaDB \"root\" user"
msgstr "Kunde inte sätta lösenord för MariaDBs \"root\"-användare" msgstr "Kunde inte sätta lösenord för MariaDBs \"root\"-användare"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "" msgid ""
"An error occurred while setting the password for the MariaDB administrative " "An error occurred while setting the password for the MariaDB administrative "
"user. This may have happened because the account already has a password, or " "user. This may have happened because the account already has a password, or "
...@@ -170,13 +170,13 @@ msgstr "" ...@@ -170,13 +170,13 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "You should check the account's password after the package installation." msgid "You should check the account's password after the package installation."
msgstr "Du bör kontrollera kontots lösenord efter installationen av paketet." msgstr "Du bör kontrollera kontots lösenord efter installationen av paketet."
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
#, fuzzy #, fuzzy
#| msgid "" #| msgid ""
#| "Please read the /usr/share/doc/mariadb-server-10.0/README.Debian file for " #| "Please read the /usr/share/doc/mariadb-server-10.0/README.Debian file for "
...@@ -190,25 +190,25 @@ msgstr "" ...@@ -190,25 +190,25 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "Password input error" msgid "Password input error"
msgstr "Fel vid inmatning av lösenord" msgstr "Fel vid inmatning av lösenord"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "The two passwords you entered were not the same. Please try again." msgid "The two passwords you entered were not the same. Please try again."
msgstr "De två lösenorden du angav stämde inte överrens. Prova igen." msgstr "De två lösenorden du angav stämde inte överrens. Prova igen."
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "NDB Cluster seems to be in use" msgid "NDB Cluster seems to be in use"
msgstr "NDB-kluster används inte" msgstr "NDB-kluster används inte"
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "" msgid ""
"MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new " "MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new "
"mysql-cluster package and remove all lines starting with \"ndb\" from all " "mysql-cluster package and remove all lines starting with \"ndb\" from all "
......
...@@ -19,19 +19,19 @@ msgstr "" ...@@ -19,19 +19,19 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "Really proceed with downgrade?" msgid "Really proceed with downgrade?"
msgstr "" msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "A file named /var/lib/mysql/debian-*.flag exists on this system." msgid "A file named /var/lib/mysql/debian-*.flag exists on this system."
msgstr "" msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "" msgid ""
"Such a file is an indication that a mariadb-server package with a higher " "Such a file is an indication that a mariadb-server package with a higher "
"version has been installed previously." "version has been installed previously."
...@@ -39,7 +39,7 @@ msgstr "" ...@@ -39,7 +39,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "" msgid ""
"There is no guarantee that the version you're currently installing will be " "There is no guarantee that the version you're currently installing will be "
"able to use the current databases." "able to use the current databases."
...@@ -47,13 +47,13 @@ msgstr "" ...@@ -47,13 +47,13 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "Important note for NIS/YP users" msgid "Important note for NIS/YP users"
msgstr "" msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"Using MariaDB under NIS/YP requires a mysql user account to be added on the " "Using MariaDB under NIS/YP requires a mysql user account to be added on the "
"local system with:" "local system with:"
...@@ -61,7 +61,7 @@ msgstr "" ...@@ -61,7 +61,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"You should also check the permissions and ownership of the /var/lib/mysql " "You should also check the permissions and ownership of the /var/lib/mysql "
"directory:" "directory:"
...@@ -69,13 +69,13 @@ msgstr "" ...@@ -69,13 +69,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "Remove all MariaDB databases?" msgid "Remove all MariaDB databases?"
msgstr "" msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"The /var/lib/mysql directory which contains the MariaDB databases is about " "The /var/lib/mysql directory which contains the MariaDB databases is about "
"to be removed." "to be removed."
...@@ -83,7 +83,7 @@ msgstr "" ...@@ -83,7 +83,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"If you're removing the MariaDB package in order to later install a more " "If you're removing the MariaDB package in order to later install a more "
"recent version or if a different mariadb-server package is already using it, " "recent version or if a different mariadb-server package is already using it, "
...@@ -92,13 +92,13 @@ msgstr "" ...@@ -92,13 +92,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
msgid "Start the MariaDB server on boot?" msgid "Start the MariaDB server on boot?"
msgstr "" msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
msgid "" msgid ""
"The MariaDB server can be launched automatically at boot time or manually " "The MariaDB server can be launched automatically at boot time or manually "
"with the '/etc/init.d/mysql start' command." "with the '/etc/init.d/mysql start' command."
...@@ -106,13 +106,13 @@ msgstr "" ...@@ -106,13 +106,13 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "New password for the MariaDB \"root\" user:" msgid "New password for the MariaDB \"root\" user:"
msgstr "" msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "" msgid ""
"While not mandatory, it is highly recommended that you set a password for " "While not mandatory, it is highly recommended that you set a password for "
"the MariaDB administrative \"root\" user." "the MariaDB administrative \"root\" user."
...@@ -120,25 +120,25 @@ msgstr "" ...@@ -120,25 +120,25 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "If this field is left blank, the password will not be changed." msgid "If this field is left blank, the password will not be changed."
msgstr "" msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:7001 #: ../mariadb-galera-server-10.0.templates:7001
msgid "Repeat password for the MariaDB \"root\" user:" msgid "Repeat password for the MariaDB \"root\" user:"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "Unable to set password for the MariaDB \"root\" user" msgid "Unable to set password for the MariaDB \"root\" user"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "" msgid ""
"An error occurred while setting the password for the MariaDB administrative " "An error occurred while setting the password for the MariaDB administrative "
"user. This may have happened because the account already has a password, or " "user. This may have happened because the account already has a password, or "
...@@ -147,13 +147,13 @@ msgstr "" ...@@ -147,13 +147,13 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "You should check the account's password after the package installation." msgid "You should check the account's password after the package installation."
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "" msgid ""
"Please read the /usr/share/doc/mariadb-server-10.0/README.Debian file for " "Please read the /usr/share/doc/mariadb-server-10.0/README.Debian file for "
"more information." "more information."
...@@ -161,25 +161,25 @@ msgstr "" ...@@ -161,25 +161,25 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "Password input error" msgid "Password input error"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "The two passwords you entered were not the same. Please try again." msgid "The two passwords you entered were not the same. Please try again."
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "NDB Cluster seems to be in use" msgid "NDB Cluster seems to be in use"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "" msgid ""
"MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new " "MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new "
"mysql-cluster package and remove all lines starting with \"ndb\" from all " "mysql-cluster package and remove all lines starting with \"ndb\" from all "
......
...@@ -18,19 +18,19 @@ msgstr "" ...@@ -18,19 +18,19 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "Really proceed with downgrade?" msgid "Really proceed with downgrade?"
msgstr "" msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "A file named /var/lib/mysql/debian-*.flag exists on this system." msgid "A file named /var/lib/mysql/debian-*.flag exists on this system."
msgstr "" msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "" msgid ""
"Such a file is an indication that a mariadb-server package with a higher " "Such a file is an indication that a mariadb-server package with a higher "
"version has been installed previously." "version has been installed previously."
...@@ -38,7 +38,7 @@ msgstr "" ...@@ -38,7 +38,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:2001 #: ../mariadb-galera-server-10.0.templates:2001
msgid "" msgid ""
"There is no guarantee that the version you're currently installing will be " "There is no guarantee that the version you're currently installing will be "
"able to use the current databases." "able to use the current databases."
...@@ -46,7 +46,7 @@ msgstr "" ...@@ -46,7 +46,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
#, fuzzy #, fuzzy
#| msgid "Important note for NIS/YP users!" #| msgid "Important note for NIS/YP users!"
msgid "Important note for NIS/YP users" msgid "Important note for NIS/YP users"
...@@ -54,7 +54,7 @@ msgstr "NIS/YP kullanıcıları için önemli not!" ...@@ -54,7 +54,7 @@ msgstr "NIS/YP kullanıcıları için önemli not!"
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"Using MariaDB under NIS/YP requires a mysql user account to be added on the " "Using MariaDB under NIS/YP requires a mysql user account to be added on the "
"local system with:" "local system with:"
...@@ -62,7 +62,7 @@ msgstr "" ...@@ -62,7 +62,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../mariadb-server-10.0.templates:3001 #: ../mariadb-galera-server-10.0.templates:3001
msgid "" msgid ""
"You should also check the permissions and ownership of the /var/lib/mysql " "You should also check the permissions and ownership of the /var/lib/mysql "
"directory:" "directory:"
...@@ -70,13 +70,13 @@ msgstr "" ...@@ -70,13 +70,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "Remove all MariaDB databases?" msgid "Remove all MariaDB databases?"
msgstr "" msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"The /var/lib/mysql directory which contains the MariaDB databases is about " "The /var/lib/mysql directory which contains the MariaDB databases is about "
"to be removed." "to be removed."
...@@ -84,7 +84,7 @@ msgstr "" ...@@ -84,7 +84,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:4001 #: ../mariadb-galera-server-10.0.templates:4001
msgid "" msgid ""
"If you're removing the MariaDB package in order to later install a more " "If you're removing the MariaDB package in order to later install a more "
"recent version or if a different mariadb-server package is already using it, " "recent version or if a different mariadb-server package is already using it, "
...@@ -93,7 +93,7 @@ msgstr "" ...@@ -93,7 +93,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
#, fuzzy #, fuzzy
#| msgid "Should MySQL start on boot?" #| msgid "Should MySQL start on boot?"
msgid "Start the MariaDB server on boot?" msgid "Start the MariaDB server on boot?"
...@@ -101,7 +101,7 @@ msgstr "MariaDB açılış sırasında başlatılsın mı?" ...@@ -101,7 +101,7 @@ msgstr "MariaDB açılış sırasında başlatılsın mı?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../mariadb-server-10.0.templates:5001 #: ../mariadb-galera-server-10.0.templates:5001
#, fuzzy #, fuzzy
msgid "" msgid ""
"The MariaDB server can be launched automatically at boot time or manually " "The MariaDB server can be launched automatically at boot time or manually "
...@@ -113,13 +113,13 @@ msgstr "" ...@@ -113,13 +113,13 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "New password for the MariaDB \"root\" user:" msgid "New password for the MariaDB \"root\" user:"
msgstr "" msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "" msgid ""
"While not mandatory, it is highly recommended that you set a password for " "While not mandatory, it is highly recommended that you set a password for "
"the MariaDB administrative \"root\" user." "the MariaDB administrative \"root\" user."
...@@ -127,25 +127,25 @@ msgstr "" ...@@ -127,25 +127,25 @@ msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:6001 #: ../mariadb-galera-server-10.0.templates:6001
msgid "If this field is left blank, the password will not be changed." msgid "If this field is left blank, the password will not be changed."
msgstr "" msgstr ""
#. Type: password #. Type: password
#. Description #. Description
#: ../mariadb-server-10.0.templates:7001 #: ../mariadb-galera-server-10.0.templates:7001
msgid "Repeat password for the MariaDB \"root\" user:" msgid "Repeat password for the MariaDB \"root\" user:"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "Unable to set password for the MariaDB \"root\" user" msgid "Unable to set password for the MariaDB \"root\" user"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "" msgid ""
"An error occurred while setting the password for the MariaDB administrative " "An error occurred while setting the password for the MariaDB administrative "
"user. This may have happened because the account already has a password, or " "user. This may have happened because the account already has a password, or "
...@@ -154,13 +154,13 @@ msgstr "" ...@@ -154,13 +154,13 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "You should check the account's password after the package installation." msgid "You should check the account's password after the package installation."
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:8001 #: ../mariadb-galera-server-10.0.templates:8001
msgid "" msgid ""
"Please read the /usr/share/doc/mariadb-server-10.0/README.Debian file for " "Please read the /usr/share/doc/mariadb-server-10.0/README.Debian file for "
"more information." "more information."
...@@ -168,25 +168,25 @@ msgstr "" ...@@ -168,25 +168,25 @@ msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "Password input error" msgid "Password input error"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:9001 #: ../mariadb-galera-server-10.0.templates:9001
msgid "The two passwords you entered were not the same. Please try again." msgid "The two passwords you entered were not the same. Please try again."
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "NDB Cluster seems to be in use" msgid "NDB Cluster seems to be in use"
msgstr "" msgstr ""
#. Type: error #. Type: error
#. Description #. Description
#: ../mariadb-server-10.0.templates:10001 #: ../mariadb-galera-server-10.0.templates:10001
msgid "" msgid ""
"MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new " "MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new "
"mysql-cluster package and remove all lines starting with \"ndb\" from all " "mysql-cluster package and remove all lines starting with \"ndb\" from all "
......
...@@ -20,6 +20,15 @@ ...@@ -20,6 +20,15 @@
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif
#ifdef WITH_WSREP
#include <my_sys.h>
typedef int (* wsrep_thd_is_brute_force_fun)(void *);
typedef int (* wsrep_abort_thd_fun)(void *, void *, my_bool);
typedef int (* wsrep_on_fun)(void *);
void wsrep_thr_lock_init(
wsrep_thd_is_brute_force_fun bf_fun, wsrep_abort_thd_fun abort_fun,
my_bool debug, my_bool convert_LOCK_to_trx, wsrep_on_fun on_fun);
#endif
#include <my_pthread.h> #include <my_pthread.h>
#include <my_list.h> #include <my_list.h>
...@@ -95,6 +104,10 @@ typedef struct st_thr_lock_info ...@@ -95,6 +104,10 @@ typedef struct st_thr_lock_info
{ {
pthread_t thread; pthread_t thread;
my_thread_id thread_id; my_thread_id thread_id;
#ifdef WITH_WSREP
void *mysql_thd; // THD pointer
my_bool in_lock_tables; // true, if inside locking session
#endif
} THR_LOCK_INFO; } THR_LOCK_INFO;
......
...@@ -1573,50 +1573,10 @@ id select_type table type possible_keys key key_len ref rows Extra ...@@ -1573,50 +1573,10 @@ id select_type table type possible_keys key key_len ref rows Extra
explain select count(*) from information_schema.views; explain select count(*) from information_schema.views;
id select_type table type possible_keys key key_len ref rows Extra id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE views ALL NULL NULL NULL NULL NULL Open_frm_only; Scanned all databases 1 SIMPLE views ALL NULL NULL NULL NULL NULL Open_frm_only; Scanned all databases
set global init_connect="drop table if exists t1;drop table if exists t1;\ set global init_connect=repeat("drop table if exists t1;", 100);
drop table if exists t1;drop table if exists t1;\ select length(@@global.init_connect), length(variable_value) from information_schema.global_variables where variable_name='init_connect';
drop table if exists t1;drop table if exists t1;\ length(@@global.init_connect) length(variable_value)
drop table if exists t1;drop table if exists t1;\ 2400 2048
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;";
select * from information_schema.global_variables where variable_name='init_connect';
VARIABLE_NAME VARIABLE_VALUE
INIT_CONNECT drop table if exists t1;drop table if exists t1;
drop table if exists t1;drop table if exists t1;
drop table if exists t1;drop table if exists t1;
drop table if exists t1;drop table if exists t1;
drop table if exists t1;drop table if exists t1;
drop table if exists t1;drop table if exists t1;
drop table if exists t1;drop table if exists t1;
drop table if exists t1;drop table if exists t1;
drop table if exists t1;drop table if exists t1;
drop table if exists t1;drop table if exists t1;
drop table if exists t1;drop table if exists t1;
drop table if exists t1;drop table if exists t1;
drop table if exists t1;drop table if exists t1;
drop table if exists t1;drop table if exists t1;
drop table if exists t1;drop table if exists t1;
drop table if exists t1;drop table if exists t1;
drop table if exists t1;drop table if exists t1;
drop table if exists t1;drop table if exists t1;
drop table if exists t1;drop table if exists t1;
drop table if exists t1;drop table if exists t1;
drop table if exists t1;drop table if exists
Warnings: Warnings:
Warning 1265 Data truncated for column 'VARIABLE_VALUE' at row 1 Warning 1265 Data truncated for column 'VARIABLE_VALUE' at row 1
set global init_connect=""; set global init_connect="";
......
...@@ -983,6 +983,75 @@ The following options may be given as the first argument: ...@@ -983,6 +983,75 @@ The following options may be given as the first argument:
-V, --version Output version information and exit. -V, --version Output version information and exit.
--wait-timeout=# The number of seconds the server waits for activity on a --wait-timeout=# The number of seconds the server waits for activity on a
connection before closing it connection before closing it
--wsrep-OSU-method[=name]
Method for Online Schema Upgrade
--wsrep-auto-increment-control
To automatically control the assignment of autoincrement
variables
(Defaults to on; use --skip-wsrep-auto-increment-control to disable.)
--wsrep-causal-reads
Enable "strictly synchronous" semantics for read
operations
--wsrep-certify-nonPK
Certify tables with no primary key
(Defaults to on; use --skip-wsrep-certify-nonPK to disable.)
--wsrep-cluster-address=name
Address to initially connect to cluster
--wsrep-cluster-name=name
Name for the cluster
--wsrep-convert-LOCK-to-trx
To convert locking sessions into transactions
--wsrep-data-home-dir=name
home directory for wsrep provider
--wsrep-dbug-option=name
DBUG options to provider library
--wsrep-debug To enable debug level logging
--wsrep-drupal-282555-workaround
To use a workaround forbad autoincrement value
--wsrep-forced-binlog-format=name
binlog format to take effect over user's choice
--wsrep-log-conflicts
To log multi-master conflicts
--wsrep-max-ws-rows=#
Max number of rows in write set
--wsrep-max-ws-size=#
Max write set size (bytes)
--wsrep-mysql-replication-bundle=#
mysql replication group commit
--wsrep-node-address=name
Node address
--wsrep-node-incoming-address=name
Client connection address
--wsrep-node-name=name
Node name
--wsrep-notify-cmd=name
--wsrep-on To enable wsrep replication
(Defaults to on; use --skip-wsrep-on to disable.)
--wsrep-provider=name
Path to replication provider library
--wsrep-provider-options=name
provider specific options
--wsrep-recover Recover database state after crash and exit
--wsrep-replicate-myisam
To enable myisam replication
--wsrep-retry-autocommit=#
Max number of times to retry a failed autocommit
statement
--wsrep-slave-threads=#
Number of slave appliers to launch
--wsrep-sst-auth=name
Authentication for SST connection
--wsrep-sst-donor=name
preferred donor node for the SST
--wsrep-sst-donor-rejects-queries
Reject client queries when donating state snapshot
transfer
--wsrep-sst-method=name
State snapshot transfer method
--wsrep-sst-receive-address=name
Address where node is waiting for SST contact
--wsrep-start-position=name
global transaction position to start from
Variables (--variable-name=value) Variables (--variable-name=value)
allow-suspicious-udfs FALSE allow-suspicious-udfs FALSE
...@@ -1268,6 +1337,38 @@ use-stat-tables NEVER ...@@ -1268,6 +1337,38 @@ use-stat-tables NEVER
userstat FALSE userstat FALSE
verbose TRUE verbose TRUE
wait-timeout 28800 wait-timeout 28800
wsrep-OSU-method TOI
wsrep-auto-increment-control TRUE
wsrep-causal-reads FALSE
wsrep-certify-nonPK TRUE
wsrep-cluster-address
wsrep-cluster-name my_wsrep_cluster
wsrep-convert-LOCK-to-trx FALSE
wsrep-data-home-dir
wsrep-dbug-option
wsrep-debug FALSE
wsrep-drupal-282555-workaround FALSE
wsrep-forced-binlog-format NONE
wsrep-log-conflicts FALSE
wsrep-max-ws-rows 131072
wsrep-max-ws-size 1073741824
wsrep-mysql-replication-bundle 0
wsrep-node-address
wsrep-node-incoming-address AUTO
wsrep-notify-cmd
wsrep-on FALSE
wsrep-provider none
wsrep-provider-options
wsrep-recover FALSE
wsrep-replicate-myisam FALSE
wsrep-retry-autocommit 1
wsrep-slave-threads 1
wsrep-sst-auth (No default value)
wsrep-sst-donor
wsrep-sst-donor-rejects-queries FALSE
wsrep-sst-method mysqldump
wsrep-sst-receive-address AUTO
wsrep-start-position 00000000-0000-0000-0000-000000000000:-1
To see what values a running MySQL server is using, type To see what values a running MySQL server is using, type
'mysqladmin variables' instead of 'mysqld --verbose --help'. 'mysqladmin variables' instead of 'mysqld --verbose --help'.
...@@ -101,19 +101,19 @@ drop table t1; ...@@ -101,19 +101,19 @@ drop table t1;
show variables like "wait_timeout%"; show variables like "wait_timeout%";
Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
def information_schema VARIABLES VARIABLES VARIABLE_NAME Variable_name 253 64 12 N 1 0 8 def information_schema VARIABLES VARIABLES VARIABLE_NAME Variable_name 253 64 12 N 1 0 8
def information_schema VARIABLES VARIABLES VARIABLE_VALUE Value 253 1024 5 Y 0 0 8 def information_schema VARIABLES VARIABLES VARIABLE_VALUE Value 253 2048 5 Y 0 0 8
Variable_name Value Variable_name Value
wait_timeout 28800 wait_timeout 28800
show variables like "WAIT_timeout%"; show variables like "WAIT_timeout%";
Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
def information_schema VARIABLES VARIABLES VARIABLE_NAME Variable_name 253 64 12 N 1 0 8 def information_schema VARIABLES VARIABLES VARIABLE_NAME Variable_name 253 64 12 N 1 0 8
def information_schema VARIABLES VARIABLES VARIABLE_VALUE Value 253 1024 5 Y 0 0 8 def information_schema VARIABLES VARIABLES VARIABLE_VALUE Value 253 2048 5 Y 0 0 8
Variable_name Value Variable_name Value
wait_timeout 28800 wait_timeout 28800
show variables like "this_doesn't_exists%"; show variables like "this_doesn't_exists%";
Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
def information_schema VARIABLES VARIABLES VARIABLE_NAME Variable_name 253 64 0 N 1 0 8 def information_schema VARIABLES VARIABLES VARIABLE_NAME Variable_name 253 64 0 N 1 0 8
def information_schema VARIABLES VARIABLES VARIABLE_VALUE Value 253 1024 0 Y 0 0 8 def information_schema VARIABLES VARIABLES VARIABLE_VALUE Value 253 2048 0 Y 0 0 8
Variable_name Value Variable_name Value
show table status from test like "this_doesn't_exists%"; show table status from test like "this_doesn't_exists%";
Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
......
...@@ -147,9 +147,9 @@ def information_schema FILES UPDATE_COUNT 13 NULL YES bigint NULL NULL 19 0 NULL ...@@ -147,9 +147,9 @@ def information_schema FILES UPDATE_COUNT 13 NULL YES bigint NULL NULL 19 0 NULL
def information_schema FILES UPDATE_TIME 34 NULL YES datetime NULL NULL NULL NULL 0 NULL NULL datetime select def information_schema FILES UPDATE_TIME 34 NULL YES datetime NULL NULL NULL NULL 0 NULL NULL datetime select
def information_schema FILES VERSION 25 NULL YES bigint NULL NULL 20 0 NULL NULL NULL bigint(21) unsigned select def information_schema FILES VERSION 25 NULL YES bigint NULL NULL 20 0 NULL NULL NULL bigint(21) unsigned select
def information_schema GLOBAL_STATUS VARIABLE_NAME 1 NO varchar 64 192 NULL NULL NULL utf8 utf8_general_ci varchar(64) select def information_schema GLOBAL_STATUS VARIABLE_NAME 1 NO varchar 64 192 NULL NULL NULL utf8 utf8_general_ci varchar(64) select
def information_schema GLOBAL_STATUS VARIABLE_VALUE 2 NULL YES varchar 1024 3072 NULL NULL NULL utf8 utf8_general_ci varchar(1024) select def information_schema GLOBAL_STATUS VARIABLE_VALUE 2 NULL YES varchar 2048 6144 NULL NULL NULL utf8 utf8_general_ci varchar(2048) select
def information_schema GLOBAL_VARIABLES VARIABLE_NAME 1 NO varchar 64 192 NULL NULL NULL utf8 utf8_general_ci varchar(64) select def information_schema GLOBAL_VARIABLES VARIABLE_NAME 1 NO varchar 64 192 NULL NULL NULL utf8 utf8_general_ci varchar(64) select
def information_schema GLOBAL_VARIABLES VARIABLE_VALUE 2 NULL YES varchar 1024 3072 NULL NULL NULL utf8 utf8_general_ci varchar(1024) select def information_schema GLOBAL_VARIABLES VARIABLE_VALUE 2 NULL YES varchar 2048 6144 NULL NULL NULL utf8 utf8_general_ci varchar(2048) select
def information_schema INDEX_STATISTICS INDEX_NAME 3 NO varchar 192 576 NULL NULL NULL utf8 utf8_general_ci varchar(192) select def information_schema INDEX_STATISTICS INDEX_NAME 3 NO varchar 192 576 NULL NULL NULL utf8 utf8_general_ci varchar(192) select
def information_schema INDEX_STATISTICS ROWS_READ 4 0 NO bigint NULL NULL 19 0 NULL NULL NULL bigint(21) select def information_schema INDEX_STATISTICS ROWS_READ 4 0 NO bigint NULL NULL 19 0 NULL NULL NULL bigint(21) select
def information_schema INDEX_STATISTICS TABLE_NAME 2 NO varchar 192 576 NULL NULL NULL utf8 utf8_general_ci varchar(192) select def information_schema INDEX_STATISTICS TABLE_NAME 2 NO varchar 192 576 NULL NULL NULL utf8 utf8_general_ci varchar(192) select
...@@ -299,9 +299,9 @@ def information_schema SCHEMA_PRIVILEGES PRIVILEGE_TYPE 4 NO varchar 64 192 NUL ...@@ -299,9 +299,9 @@ def information_schema SCHEMA_PRIVILEGES PRIVILEGE_TYPE 4 NO varchar 64 192 NUL
def information_schema SCHEMA_PRIVILEGES TABLE_CATALOG 2 NO varchar 512 1536 NULL NULL NULL utf8 utf8_general_ci varchar(512) select def information_schema SCHEMA_PRIVILEGES TABLE_CATALOG 2 NO varchar 512 1536 NULL NULL NULL utf8 utf8_general_ci varchar(512) select
def information_schema SCHEMA_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL NULL utf8 utf8_general_ci varchar(64) select def information_schema SCHEMA_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL NULL utf8 utf8_general_ci varchar(64) select
def information_schema SESSION_STATUS VARIABLE_NAME 1 NO varchar 64 192 NULL NULL NULL utf8 utf8_general_ci varchar(64) select def information_schema SESSION_STATUS VARIABLE_NAME 1 NO varchar 64 192 NULL NULL NULL utf8 utf8_general_ci varchar(64) select
def information_schema SESSION_STATUS VARIABLE_VALUE 2 NULL YES varchar 1024 3072 NULL NULL NULL utf8 utf8_general_ci varchar(1024) select def information_schema SESSION_STATUS VARIABLE_VALUE 2 NULL YES varchar 2048 6144 NULL NULL NULL utf8 utf8_general_ci varchar(2048) select
def information_schema SESSION_VARIABLES VARIABLE_NAME 1 NO varchar 64 192 NULL NULL NULL utf8 utf8_general_ci varchar(64) select def information_schema SESSION_VARIABLES VARIABLE_NAME 1 NO varchar 64 192 NULL NULL NULL utf8 utf8_general_ci varchar(64) select
def information_schema SESSION_VARIABLES VARIABLE_VALUE 2 NULL YES varchar 1024 3072 NULL NULL NULL utf8 utf8_general_ci varchar(1024) select def information_schema SESSION_VARIABLES VARIABLE_VALUE 2 NULL YES varchar 2048 6144 NULL NULL NULL utf8 utf8_general_ci varchar(2048) select
def information_schema STATISTICS CARDINALITY 10 NULL YES bigint NULL NULL 19 0 NULL NULL NULL bigint(21) select def information_schema STATISTICS CARDINALITY 10 NULL YES bigint NULL NULL 19 0 NULL NULL NULL bigint(21) select
def information_schema STATISTICS COLLATION 9 NULL YES varchar 1 3 NULL NULL NULL utf8 utf8_general_ci varchar(1) select def information_schema STATISTICS COLLATION 9 NULL YES varchar 1 3 NULL NULL NULL utf8 utf8_general_ci varchar(1) select
def information_schema STATISTICS COLUMN_NAME 8 NO varchar 64 192 NULL NULL NULL utf8 utf8_general_ci varchar(64) select def information_schema STATISTICS COLUMN_NAME 8 NO varchar 64 192 NULL NULL NULL utf8 utf8_general_ci varchar(64) select
...@@ -630,9 +630,9 @@ NULL information_schema FILES CHECKSUM bigint NULL NULL NULL NULL bigint(21) uns ...@@ -630,9 +630,9 @@ NULL information_schema FILES CHECKSUM bigint NULL NULL NULL NULL bigint(21) uns
3.0000 information_schema FILES STATUS varchar 20 60 utf8 utf8_general_ci varchar(20) 3.0000 information_schema FILES STATUS varchar 20 60 utf8 utf8_general_ci varchar(20)
3.0000 information_schema FILES EXTRA varchar 255 765 utf8 utf8_general_ci varchar(255) 3.0000 information_schema FILES EXTRA varchar 255 765 utf8 utf8_general_ci varchar(255)
3.0000 information_schema GLOBAL_STATUS VARIABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64) 3.0000 information_schema GLOBAL_STATUS VARIABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
3.0000 information_schema GLOBAL_STATUS VARIABLE_VALUE varchar 1024 3072 utf8 utf8_general_ci varchar(1024) 3.0000 information_schema GLOBAL_STATUS VARIABLE_VALUE varchar 2048 6144 utf8 utf8_general_ci varchar(2048)
3.0000 information_schema GLOBAL_VARIABLES VARIABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64) 3.0000 information_schema GLOBAL_VARIABLES VARIABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
3.0000 information_schema GLOBAL_VARIABLES VARIABLE_VALUE varchar 1024 3072 utf8 utf8_general_ci varchar(1024) 3.0000 information_schema GLOBAL_VARIABLES VARIABLE_VALUE varchar 2048 6144 utf8 utf8_general_ci varchar(2048)
3.0000 information_schema INDEX_STATISTICS TABLE_SCHEMA varchar 192 576 utf8 utf8_general_ci varchar(192) 3.0000 information_schema INDEX_STATISTICS TABLE_SCHEMA varchar 192 576 utf8 utf8_general_ci varchar(192)
3.0000 information_schema INDEX_STATISTICS TABLE_NAME varchar 192 576 utf8 utf8_general_ci varchar(192) 3.0000 information_schema INDEX_STATISTICS TABLE_NAME varchar 192 576 utf8 utf8_general_ci varchar(192)
3.0000 information_schema INDEX_STATISTICS INDEX_NAME varchar 192 576 utf8 utf8_general_ci varchar(192) 3.0000 information_schema INDEX_STATISTICS INDEX_NAME varchar 192 576 utf8 utf8_general_ci varchar(192)
...@@ -782,9 +782,9 @@ NULL information_schema ROUTINES LAST_ALTERED datetime NULL NULL NULL NULL datet ...@@ -782,9 +782,9 @@ NULL information_schema ROUTINES LAST_ALTERED datetime NULL NULL NULL NULL datet
3.0000 information_schema SCHEMA_PRIVILEGES PRIVILEGE_TYPE varchar 64 192 utf8 utf8_general_ci varchar(64) 3.0000 information_schema SCHEMA_PRIVILEGES PRIVILEGE_TYPE varchar 64 192 utf8 utf8_general_ci varchar(64)
3.0000 information_schema SCHEMA_PRIVILEGES IS_GRANTABLE varchar 3 9 utf8 utf8_general_ci varchar(3) 3.0000 information_schema SCHEMA_PRIVILEGES IS_GRANTABLE varchar 3 9 utf8 utf8_general_ci varchar(3)
3.0000 information_schema SESSION_STATUS VARIABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64) 3.0000 information_schema SESSION_STATUS VARIABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
3.0000 information_schema SESSION_STATUS VARIABLE_VALUE varchar 1024 3072 utf8 utf8_general_ci varchar(1024) 3.0000 information_schema SESSION_STATUS VARIABLE_VALUE varchar 2048 6144 utf8 utf8_general_ci varchar(2048)
3.0000 information_schema SESSION_VARIABLES VARIABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64) 3.0000 information_schema SESSION_VARIABLES VARIABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
3.0000 information_schema SESSION_VARIABLES VARIABLE_VALUE varchar 1024 3072 utf8 utf8_general_ci varchar(1024) 3.0000 information_schema SESSION_VARIABLES VARIABLE_VALUE varchar 2048 6144 utf8 utf8_general_ci varchar(2048)
3.0000 information_schema STATISTICS TABLE_CATALOG varchar 512 1536 utf8 utf8_general_ci varchar(512) 3.0000 information_schema STATISTICS TABLE_CATALOG varchar 512 1536 utf8 utf8_general_ci varchar(512)
3.0000 information_schema STATISTICS TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64) 3.0000 information_schema STATISTICS TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
3.0000 information_schema STATISTICS TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64) 3.0000 information_schema STATISTICS TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
......
...@@ -201,6 +201,7 @@ SHOW VARIABLES LIKE "%auto_inc%"; ...@@ -201,6 +201,7 @@ SHOW VARIABLES LIKE "%auto_inc%";
Variable_name Value Variable_name Value
auto_increment_increment 100 auto_increment_increment 100
auto_increment_offset 10 auto_increment_offset 10
wsrep_auto_increment_control ON
DROP TABLE IF EXISTS t1; DROP TABLE IF EXISTS t1;
Warnings: Warnings:
Note 1051 Unknown table 't1' Note 1051 Unknown table 't1'
...@@ -234,6 +235,7 @@ SHOW VARIABLES LIKE "%auto_inc%"; ...@@ -234,6 +235,7 @@ SHOW VARIABLES LIKE "%auto_inc%";
Variable_name Value Variable_name Value
auto_increment_increment 1 auto_increment_increment 1
auto_increment_offset 1 auto_increment_offset 1
wsrep_auto_increment_control ON
DROP TABLE IF EXISTS t1; DROP TABLE IF EXISTS t1;
Warnings: Warnings:
Note 1051 Unknown table 't1' Note 1051 Unknown table 't1'
...@@ -273,6 +275,7 @@ SHOW VARIABLES LIKE "%auto_inc%"; ...@@ -273,6 +275,7 @@ SHOW VARIABLES LIKE "%auto_inc%";
Variable_name Value Variable_name Value
auto_increment_increment 1 auto_increment_increment 1
auto_increment_offset 1 auto_increment_offset 1
wsrep_auto_increment_control ON
DROP TABLE IF EXISTS t1; DROP TABLE IF EXISTS t1;
Warnings: Warnings:
Note 1051 Unknown table 't1' Note 1051 Unknown table 't1'
...@@ -286,6 +289,7 @@ SHOW VARIABLES LIKE "%auto_inc%"; ...@@ -286,6 +289,7 @@ SHOW VARIABLES LIKE "%auto_inc%";
Variable_name Value Variable_name Value
auto_increment_increment 100 auto_increment_increment 100
auto_increment_offset 10 auto_increment_offset 10
wsrep_auto_increment_control ON
INSERT INTO t1 VALUES (-2), (NULL),(2),(NULL); INSERT INTO t1 VALUES (-2), (NULL),(2),(NULL);
INSERT INTO t1 VALUES (250),(NULL); INSERT INTO t1 VALUES (250),(NULL);
SELECT * FROM t1; SELECT * FROM t1;
...@@ -319,6 +323,7 @@ SHOW VARIABLES LIKE "%auto_inc%"; ...@@ -319,6 +323,7 @@ SHOW VARIABLES LIKE "%auto_inc%";
Variable_name Value Variable_name Value
auto_increment_increment 1 auto_increment_increment 1
auto_increment_offset 1 auto_increment_offset 1
wsrep_auto_increment_control ON
DROP TABLE IF EXISTS t1; DROP TABLE IF EXISTS t1;
Warnings: Warnings:
Note 1051 Unknown table 't1' Note 1051 Unknown table 't1'
...@@ -334,6 +339,7 @@ SHOW VARIABLES LIKE "%auto_inc%"; ...@@ -334,6 +339,7 @@ SHOW VARIABLES LIKE "%auto_inc%";
Variable_name Value Variable_name Value
auto_increment_increment 100 auto_increment_increment 100
auto_increment_offset 10 auto_increment_offset 10
wsrep_auto_increment_control ON
INSERT INTO t1 VALUES (-2); INSERT INTO t1 VALUES (-2);
Warnings: Warnings:
Warning 1264 Out of range value for column 'c1' at row 1 Warning 1264 Out of range value for column 'c1' at row 1
...@@ -374,6 +380,7 @@ SHOW VARIABLES LIKE "%auto_inc%"; ...@@ -374,6 +380,7 @@ SHOW VARIABLES LIKE "%auto_inc%";
Variable_name Value Variable_name Value
auto_increment_increment 1 auto_increment_increment 1
auto_increment_offset 1 auto_increment_offset 1
wsrep_auto_increment_control ON
DROP TABLE IF EXISTS t1; DROP TABLE IF EXISTS t1;
Warnings: Warnings:
Note 1051 Unknown table 't1' Note 1051 Unknown table 't1'
...@@ -389,6 +396,7 @@ SHOW VARIABLES LIKE "%auto_inc%"; ...@@ -389,6 +396,7 @@ SHOW VARIABLES LIKE "%auto_inc%";
Variable_name Value Variable_name Value
auto_increment_increment 100 auto_increment_increment 100
auto_increment_offset 10 auto_increment_offset 10
wsrep_auto_increment_control ON
INSERT INTO t1 VALUES (-2),(NULL),(2),(NULL); INSERT INTO t1 VALUES (-2),(NULL),(2),(NULL);
Warnings: Warnings:
Warning 1264 Out of range value for column 'c1' at row 1 Warning 1264 Out of range value for column 'c1' at row 1
...@@ -423,6 +431,7 @@ SHOW VARIABLES LIKE "%auto_inc%"; ...@@ -423,6 +431,7 @@ SHOW VARIABLES LIKE "%auto_inc%";
Variable_name Value Variable_name Value
auto_increment_increment 1 auto_increment_increment 1
auto_increment_offset 1 auto_increment_offset 1
wsrep_auto_increment_control ON
DROP TABLE IF EXISTS t1; DROP TABLE IF EXISTS t1;
Warnings: Warnings:
Note 1051 Unknown table 't1' Note 1051 Unknown table 't1'
...@@ -438,6 +447,7 @@ SHOW VARIABLES LIKE "%auto_inc%"; ...@@ -438,6 +447,7 @@ SHOW VARIABLES LIKE "%auto_inc%";
Variable_name Value Variable_name Value
auto_increment_increment 2 auto_increment_increment 2
auto_increment_offset 10 auto_increment_offset 10
wsrep_auto_increment_control ON
INSERT INTO t1 VALUES (NULL),(NULL),(NULL),(NULL),(NULL),(NULL); INSERT INTO t1 VALUES (NULL),(NULL),(NULL),(NULL),(NULL),(NULL);
SELECT * FROM t1; SELECT * FROM t1;
c1 c1
...@@ -456,6 +466,7 @@ SHOW VARIABLES LIKE "%auto_inc%"; ...@@ -456,6 +466,7 @@ SHOW VARIABLES LIKE "%auto_inc%";
Variable_name Value Variable_name Value
auto_increment_increment 1 auto_increment_increment 1
auto_increment_offset 1 auto_increment_offset 1
wsrep_auto_increment_control ON
DROP TABLE IF EXISTS t1; DROP TABLE IF EXISTS t1;
Warnings: Warnings:
Note 1051 Unknown table 't1' Note 1051 Unknown table 't1'
...@@ -471,6 +482,7 @@ SHOW VARIABLES LIKE "%auto_inc%"; ...@@ -471,6 +482,7 @@ SHOW VARIABLES LIKE "%auto_inc%";
Variable_name Value Variable_name Value
auto_increment_increment 2 auto_increment_increment 2
auto_increment_offset 10 auto_increment_offset 10
wsrep_auto_increment_control ON
INSERT INTO t1 VALUES (NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL); INSERT INTO t1 VALUES (NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL);
ERROR HY000: Failed to read auto-increment value from storage engine ERROR HY000: Failed to read auto-increment value from storage engine
SELECT * FROM t1; SELECT * FROM t1;
...@@ -484,6 +496,7 @@ SHOW VARIABLES LIKE "%auto_inc%"; ...@@ -484,6 +496,7 @@ SHOW VARIABLES LIKE "%auto_inc%";
Variable_name Value Variable_name Value
auto_increment_increment 1 auto_increment_increment 1
auto_increment_offset 1 auto_increment_offset 1
wsrep_auto_increment_control ON
DROP TABLE IF EXISTS t1; DROP TABLE IF EXISTS t1;
Warnings: Warnings:
Note 1051 Unknown table 't1' Note 1051 Unknown table 't1'
...@@ -499,6 +512,7 @@ SHOW VARIABLES LIKE "%auto_inc%"; ...@@ -499,6 +512,7 @@ SHOW VARIABLES LIKE "%auto_inc%";
Variable_name Value Variable_name Value
auto_increment_increment 5 auto_increment_increment 5
auto_increment_offset 7 auto_increment_offset 7
wsrep_auto_increment_control ON
INSERT INTO t1 VALUES (NULL),(NULL), (NULL); INSERT INTO t1 VALUES (NULL),(NULL), (NULL);
ERROR HY000: Failed to read auto-increment value from storage engine ERROR HY000: Failed to read auto-increment value from storage engine
SELECT * FROM t1; SELECT * FROM t1;
...@@ -512,6 +526,7 @@ SHOW VARIABLES LIKE "%auto_inc%"; ...@@ -512,6 +526,7 @@ SHOW VARIABLES LIKE "%auto_inc%";
Variable_name Value Variable_name Value
auto_increment_increment 1 auto_increment_increment 1
auto_increment_offset 1 auto_increment_offset 1
wsrep_auto_increment_control ON
DROP TABLE IF EXISTS t1; DROP TABLE IF EXISTS t1;
Warnings: Warnings:
Note 1051 Unknown table 't1' Note 1051 Unknown table 't1'
...@@ -531,6 +546,7 @@ SHOW VARIABLES LIKE "%auto_inc%"; ...@@ -531,6 +546,7 @@ SHOW VARIABLES LIKE "%auto_inc%";
Variable_name Value Variable_name Value
auto_increment_increment 3 auto_increment_increment 3
auto_increment_offset 3 auto_increment_offset 3
wsrep_auto_increment_control ON
INSERT INTO t1 VALUES (NULL),(NULL), (NULL); INSERT INTO t1 VALUES (NULL),(NULL), (NULL);
SELECT * FROM t1; SELECT * FROM t1;
c1 c1
...@@ -548,6 +564,7 @@ SHOW VARIABLES LIKE "%auto_inc%"; ...@@ -548,6 +564,7 @@ SHOW VARIABLES LIKE "%auto_inc%";
Variable_name Value Variable_name Value
auto_increment_increment 1 auto_increment_increment 1
auto_increment_offset 1 auto_increment_offset 1
wsrep_auto_increment_control ON
DROP TABLE IF EXISTS t1; DROP TABLE IF EXISTS t1;
Warnings: Warnings:
Note 1051 Unknown table 't1' Note 1051 Unknown table 't1'
...@@ -566,6 +583,7 @@ SHOW VARIABLES LIKE "%auto_inc%"; ...@@ -566,6 +583,7 @@ SHOW VARIABLES LIKE "%auto_inc%";
Variable_name Value Variable_name Value
auto_increment_increment 65535 auto_increment_increment 65535
auto_increment_offset 65535 auto_increment_offset 65535
wsrep_auto_increment_control ON
INSERT INTO t1 VALUES (NULL),(NULL); INSERT INTO t1 VALUES (NULL),(NULL);
ERROR 22003: Out of range value for column 'c1' at row 1 ERROR 22003: Out of range value for column 'c1' at row 1
SELECT * FROM t1; SELECT * FROM t1;
...@@ -579,6 +597,7 @@ SHOW VARIABLES LIKE "%auto_inc%"; ...@@ -579,6 +597,7 @@ SHOW VARIABLES LIKE "%auto_inc%";
Variable_name Value Variable_name Value
auto_increment_increment 1 auto_increment_increment 1
auto_increment_offset 1 auto_increment_offset 1
wsrep_auto_increment_control ON
CREATE TABLE t1 (c1 DOUBLE NOT NULL AUTO_INCREMENT, c2 INT, PRIMARY KEY (c1)) ENGINE=InnoDB; CREATE TABLE t1 (c1 DOUBLE NOT NULL AUTO_INCREMENT, c2 INT, PRIMARY KEY (c1)) ENGINE=InnoDB;
INSERT INTO t1 VALUES(NULL, 1); INSERT INTO t1 VALUES(NULL, 1);
INSERT INTO t1 VALUES(NULL, 2); INSERT INTO t1 VALUES(NULL, 2);
...@@ -866,6 +885,7 @@ SHOW VARIABLES LIKE "%auto_inc%"; ...@@ -866,6 +885,7 @@ SHOW VARIABLES LIKE "%auto_inc%";
Variable_name Value Variable_name Value
auto_increment_increment 1 auto_increment_increment 1
auto_increment_offset 1 auto_increment_offset 1
wsrep_auto_increment_control ON
CREATE TABLE t1 (c1 TINYINT PRIMARY KEY AUTO_INCREMENT, c2 VARCHAR(10)) ENGINE=InnoDB; CREATE TABLE t1 (c1 TINYINT PRIMARY KEY AUTO_INCREMENT, c2 VARCHAR(10)) ENGINE=InnoDB;
INSERT INTO t1 VALUES (1, NULL); INSERT INTO t1 VALUES (1, NULL);
INSERT INTO t1 VALUES (-1, 'innodb'); INSERT INTO t1 VALUES (-1, 'innodb');
...@@ -1256,6 +1276,7 @@ SHOW VARIABLES LIKE "%auto_inc%"; ...@@ -1256,6 +1276,7 @@ SHOW VARIABLES LIKE "%auto_inc%";
Variable_name Value Variable_name Value
auto_increment_increment 1 auto_increment_increment 1
auto_increment_offset 256 auto_increment_offset 256
wsrep_auto_increment_control ON
CREATE TABLE t1 (c1 TINYINT PRIMARY KEY AUTO_INCREMENT, c2 VARCHAR(10)) ENGINE=InnoDB; CREATE TABLE t1 (c1 TINYINT PRIMARY KEY AUTO_INCREMENT, c2 VARCHAR(10)) ENGINE=InnoDB;
INSERT INTO t1 VALUES (1, NULL); INSERT INTO t1 VALUES (1, NULL);
SHOW CREATE TABLE t1; SHOW CREATE TABLE t1;
...@@ -1274,6 +1295,7 @@ SHOW VARIABLES LIKE "%auto_inc%"; ...@@ -1274,6 +1295,7 @@ SHOW VARIABLES LIKE "%auto_inc%";
Variable_name Value Variable_name Value
auto_increment_increment 1 auto_increment_increment 1
auto_increment_offset 1 auto_increment_offset 1
wsrep_auto_increment_control ON
CREATE TABLE t1 (c1 INT UNSIGNED PRIMARY KEY AUTO_INCREMENT, c2 VARCHAR(10)) ENGINE=InnoDB; CREATE TABLE t1 (c1 INT UNSIGNED PRIMARY KEY AUTO_INCREMENT, c2 VARCHAR(10)) ENGINE=InnoDB;
INSERT INTO t1 VALUES (2147483648, 'a'); INSERT INTO t1 VALUES (2147483648, 'a');
SHOW CREATE TABLE t1; SHOW CREATE TABLE t1;
......
...@@ -3,7 +3,7 @@ Warnings: ...@@ -3,7 +3,7 @@ Warnings:
Note 1051 Unknown table 't1' Note 1051 Unknown table 't1'
select @@version_comment limit 1 ; select @@version_comment limit 1 ;
@@version_comment @@version_comment
Source distribution Source distribution, wsrep_<version>
SELECT COUNT(*) FROM `information_schema`.`INNODB_SYS_INDEXES` ; SELECT COUNT(*) FROM `information_schema`.`INNODB_SYS_INDEXES` ;
CREATE TABLE test.t1 ( `a` SERIAL NOT NULL , `b` VARCHAR( 255 ) NOT NULL , INDEX ( `b` ) ) ENGINE = InnoDB ; CREATE TABLE test.t1 ( `a` SERIAL NOT NULL , `b` VARCHAR( 255 ) NOT NULL , INDEX ( `b` ) ) ENGINE = InnoDB ;
SHOW TABLE STATUS FROM `information_schema` LIKE 'INNODB\_SYS\_INDEXES%' ; SHOW TABLE STATUS FROM `information_schema` LIKE 'INNODB\_SYS\_INDEXES%' ;
......
...@@ -5,6 +5,7 @@ drop table if exists t1; ...@@ -5,6 +5,7 @@ drop table if exists t1;
# #
# test for bug LP#875797 "Using 'innodb_sys_indexes' causes core dump" # test for bug LP#875797 "Using 'innodb_sys_indexes' causes core dump"
# #
--replace_regex /wsrep_[0-9\.Xr]+/wsrep_<version>/
select @@version_comment limit 1 ; select @@version_comment limit 1 ;
--disable_result_log --disable_result_log
SELECT COUNT(*) FROM `information_schema`.`INNODB_SYS_INDEXES` ; SELECT COUNT(*) FROM `information_schema`.`INNODB_SYS_INDEXES` ;
...@@ -19,3 +20,4 @@ SELECT COUNT(*) FROM `information_schema`.`INNODB_SYS_INDEXES` ; ...@@ -19,3 +20,4 @@ SELECT COUNT(*) FROM `information_schema`.`INNODB_SYS_INDEXES` ;
drop table test.t1; drop table test.t1;
SHOW TABLE STATUS FROM `information_schema` LIKE 'INNODB\_SYS\_INDEXES%' ; SHOW TABLE STATUS FROM `information_schema` LIKE 'INNODB\_SYS\_INDEXES%' ;
--enable_result_log --enable_result_log
...@@ -10,5 +10,39 @@ there should be *no* long test name listed below: ...@@ -10,5 +10,39 @@ there should be *no* long test name listed below:
select distinct variable_name as `there should be *no* variables listed below:` from t2 select distinct variable_name as `there should be *no* variables listed below:` from t2
left join t1 on variable_name=test_name where test_name is null; left join t1 on variable_name=test_name where test_name is null;
there should be *no* variables listed below: there should be *no* variables listed below:
innodb_disallow_writes
wsrep_auto_increment_control
wsrep_causal_reads
wsrep_certify_nonpk
wsrep_cluster_address
wsrep_cluster_name
wsrep_convert_lock_to_trx
wsrep_data_home_dir
wsrep_dbug_option
wsrep_debug
wsrep_drupal_282555_workaround
wsrep_forced_binlog_format
wsrep_log_conflicts
wsrep_max_ws_rows
wsrep_max_ws_size
wsrep_mysql_replication_bundle
wsrep_node_address
wsrep_node_incoming_address
wsrep_node_name
wsrep_notify_cmd
wsrep_on
wsrep_osu_method
wsrep_provider
wsrep_provider_options
wsrep_recover
wsrep_replicate_myisam
wsrep_retry_autocommit
wsrep_slave_threads
wsrep_sst_auth
wsrep_sst_donor
wsrep_sst_donor_rejects_queries
wsrep_sst_method
wsrep_sst_receive_address
wsrep_start_position
drop table t1; drop table t1;
drop table t2; drop table t2;
...@@ -1336,28 +1336,8 @@ explain select count(*) from information_schema.views; ...@@ -1336,28 +1336,8 @@ explain select count(*) from information_schema.views;
# #
# Bug#39955 SELECT on INFORMATION_SCHEMA.GLOBAL_VARIABLES takes too long # Bug#39955 SELECT on INFORMATION_SCHEMA.GLOBAL_VARIABLES takes too long
# #
set global init_connect="drop table if exists t1;drop table if exists t1;\ set global init_connect=repeat("drop table if exists t1;", 100);
drop table if exists t1;drop table if exists t1;\ select length(@@global.init_connect), length(variable_value) from information_schema.global_variables where variable_name='init_connect';
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;\
drop table if exists t1;drop table if exists t1;";
select * from information_schema.global_variables where variable_name='init_connect';
set global init_connect=""; set global init_connect="";
# #
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
# force symbolic-links=0 (valgrind build has a different default) # force symbolic-links=0 (valgrind build has a different default)
# #
exec $MYSQLD_BOOTSTRAP_CMD --symbolic-links=0 --lower-case-table-names=1 --help --verbose > $MYSQL_TMP_DIR/mysqld--help.txt 2>&1; exec $MYSQLD_BOOTSTRAP_CMD --symbolic-links=0 --lower-case-table-names=1 --help --verbose > $MYSQL_TMP_DIR/mysqld--help.txt;
# The inline perl code below will copy $MYSQL_TMP_DIR/mysqld--help.txt # The inline perl code below will copy $MYSQL_TMP_DIR/mysqld--help.txt
# to output, but filter away some variable stuff (e.g. paths). # to output, but filter away some variable stuff (e.g. paths).
......
...@@ -87,6 +87,12 @@ static char my_defaults_extra_file_buffer[FN_REFLEN]; ...@@ -87,6 +87,12 @@ static char my_defaults_extra_file_buffer[FN_REFLEN];
static my_bool defaults_already_read= FALSE; static my_bool defaults_already_read= FALSE;
#ifdef WITH_WSREP
/* The only purpose of this global array is to hold full name of my.cnf
* which seems to be otherwise unavailable */
char wsrep_defaults_file[FN_REFLEN + 10]={0,};
#endif /* WITH_WREP */
/* Which directories are searched for options (and in which order) */ /* Which directories are searched for options (and in which order) */
#define MAX_DEFAULT_DIRS 6 #define MAX_DEFAULT_DIRS 6
...@@ -803,6 +809,12 @@ static int search_default_file_with_ext(Process_option_func opt_handler, ...@@ -803,6 +809,12 @@ static int search_default_file_with_ext(Process_option_func opt_handler,
if (!(fp= mysql_file_fopen(key_file_cnf, name, O_RDONLY, MYF(0)))) if (!(fp= mysql_file_fopen(key_file_cnf, name, O_RDONLY, MYF(0))))
return 1; /* Ignore wrong files */ return 1; /* Ignore wrong files */
#ifdef WITH_WSREP
/* make sure we do this only once - for top-level file */
if ('\0' == wsrep_defaults_file[0])
strncpy(wsrep_defaults_file, name, sizeof(wsrep_defaults_file) - 1);
#endif /* WITH_WSREP */
while (mysql_file_fgets(buff, sizeof(buff) - 1, fp)) while (mysql_file_fgets(buff, sizeof(buff) - 1, fp))
{ {
line++; line++;
......
...@@ -94,7 +94,24 @@ be any number of TL_WRITE_CONCURRENT_INSERT locks aktive at the same time. ...@@ -94,7 +94,24 @@ be any number of TL_WRITE_CONCURRENT_INSERT locks aktive at the same time.
my_bool thr_lock_inited=0; my_bool thr_lock_inited=0;
ulong locks_immediate = 0L, locks_waited = 0L; ulong locks_immediate = 0L, locks_waited = 0L;
enum thr_lock_type thr_upgraded_concurrent_insert_lock = TL_WRITE; enum thr_lock_type thr_upgraded_concurrent_insert_lock = TL_WRITE;
#ifdef WITH_WSREP
static wsrep_thd_is_brute_force_fun wsrep_thd_is_brute_force= NULL;
static wsrep_abort_thd_fun wsrep_abort_thd= NULL;
static my_bool wsrep_debug;
static my_bool wsrep_convert_LOCK_to_trx;
static wsrep_on_fun wsrep_on = NULL;
void wsrep_thr_lock_init(
wsrep_thd_is_brute_force_fun bf_fun, wsrep_abort_thd_fun abort_fun,
my_bool debug, my_bool convert_LOCK_to_trx, wsrep_on_fun on_fun
) {
wsrep_thd_is_brute_force = bf_fun;
wsrep_abort_thd = abort_fun;
wsrep_debug = debug;
wsrep_convert_LOCK_to_trx= convert_LOCK_to_trx;
wsrep_on = on_fun;
}
#endif
/* The following constants are only for debug output */ /* The following constants are only for debug output */
#define MAX_THREADS 1000 #define MAX_THREADS 1000
#define MAX_LOCKS 1000 #define MAX_LOCKS 1000
...@@ -1156,6 +1173,108 @@ static void sort_locks(THR_LOCK_DATA **data,uint count) ...@@ -1156,6 +1173,108 @@ static void sort_locks(THR_LOCK_DATA **data,uint count)
} }
} }
#ifdef WITH_WSREP
/*
* If brute force applier would need to wait for a thr lock,
* it needs to make sure that it will get the lock without (too much)
* delay.
* We identify here the owners of blocking locks and ask them to
* abort. We then put our lock request in the first place in the
* wait queue. When lock holders abort (one by one) the lock release
* algorithm should grant the lock to us. We rely on this and proceed
* to wait_for_locks().
* wsrep_break_locks() should be called in all the cases, where lock
* wait would happen.
*
* TODO: current implementation might not cover all possible lock wait
* situations. This needs an review still.
* TODO: lock release, might favor some other lock (instead our bf).
* This needs an condition to check for bf locks first.
* TODO: we still have a debug fprintf, this should be removed
*/
static inline my_bool
wsrep_break_lock(
THR_LOCK_DATA *data, struct st_lock_list *lock_queue1,
struct st_lock_list *lock_queue2, struct st_lock_list *wait_queue)
{
if (wsrep_on(data->owner->mysql_thd) &&
wsrep_thd_is_brute_force &&
wsrep_thd_is_brute_force(data->owner->mysql_thd))
{
THR_LOCK_DATA *holder;
/* if locking session conversion to transaction has been enabled,
we know that this conflicting lock must be read lock and furthermore,
lock holder is read-only. It is safe to wait for him.
*/
#ifdef TODO
if (wsrep_convert_LOCK_to_trx &&
(THD*)(data->owner->mysql_thd)->in_lock_tables)
{
if (wsrep_debug)
fprintf(stderr,"WSREP wsrep_break_lock read lock untouched\n");
return FALSE;
}
#endif
if (wsrep_debug)
fprintf(stderr,"WSREP wsrep_break_lock aborting locks\n");
/* aborting lock holder(s) here */
for (holder=(lock_queue1) ? lock_queue1->data : NULL;
holder;
holder=holder->next)
{
if (!wsrep_thd_is_brute_force(holder->owner->mysql_thd))
{
wsrep_abort_thd(data->owner->mysql_thd,
holder->owner->mysql_thd, FALSE);
}
else
{
if (wsrep_debug)
fprintf(stderr,"WSREP wsrep_break_lock skipping BF lock conflict\n");
return FALSE;
}
}
for (holder=(lock_queue2) ? lock_queue2->data : NULL;
holder;
holder=holder->next)
{
if (!wsrep_thd_is_brute_force(holder->owner->mysql_thd))
{
wsrep_abort_thd(data->owner->mysql_thd,
holder->owner->mysql_thd, FALSE);
}
else
{
if (wsrep_debug)
fprintf(stderr,"WSREP wsrep_break_lock skipping BF lock conflict\n");
return FALSE;
}
}
/* Add our lock to the head of the wait queue */
if (*(wait_queue->last)==wait_queue->data)
{
wait_queue->last=&data->next;
assert(wait_queue->data==0);
}
else
{
assert(wait_queue->data!=0);
wait_queue->data->prev=&data->next;
}
data->next=wait_queue->data;
data->prev=&wait_queue->data;
wait_queue->data=data;
data->cond=get_cond();
statistic_increment(locks_immediate,&THR_LOCK_lock);
return TRUE;
}
return FALSE;
}
#endif
enum enum_thr_lock_result enum enum_thr_lock_result
thr_multi_lock(THR_LOCK_DATA **data, uint count, THR_LOCK_INFO *owner, thr_multi_lock(THR_LOCK_DATA **data, uint count, THR_LOCK_INFO *owner,
......
...@@ -313,6 +313,9 @@ IF(WIN32) ...@@ -313,6 +313,9 @@ IF(WIN32)
INSTALL_SCRIPT(${CMAKE_CURRENT_BINARY_DIR}/${file}.pl COMPONENT Server_Scripts) INSTALL_SCRIPT(${CMAKE_CURRENT_BINARY_DIR}/${file}.pl COMPONENT Server_Scripts)
ENDFOREACH() ENDFOREACH()
ELSE() ELSE()
IF(WITH_WSREP)
SET(WSREP_BINARIES wsrep_sst_common wsrep_sst_mysqldump wsrep_sst_rsync wsrep_sst_xtrabackup)
ENDIF()
# On Unix, most of the files end up in the bin directory # On Unix, most of the files end up in the bin directory
SET(BIN_SCRIPTS SET(BIN_SCRIPTS
msql2mysql msql2mysql
...@@ -329,6 +332,7 @@ ELSE() ...@@ -329,6 +332,7 @@ ELSE()
mysqldumpslow mysqldumpslow
mysqld_multi mysqld_multi
mysqld_safe mysqld_safe
${WSREP_BINARIES}
) )
FOREACH(file ${BIN_SCRIPTS}) FOREACH(file ${BIN_SCRIPTS})
IF(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${file}.sh) IF(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${file}.sh)
......
This diff is collapsed.
...@@ -147,7 +147,7 @@ log_notice () { ...@@ -147,7 +147,7 @@ log_notice () {
} }
eval_log_error () { eval_log_error () {
cmd="$1" local cmd="$1"
case $logging in case $logging in
file) cmd="$cmd >> "`shell_quote_string "$err_log"`" 2>&1" ;; file) cmd="$cmd >> "`shell_quote_string "$err_log"`" 2>&1" ;;
syslog) syslog)
...@@ -183,6 +183,73 @@ shell_quote_string() { ...@@ -183,6 +183,73 @@ shell_quote_string() {
echo "$1" | sed -e 's,\([^a-zA-Z0-9/_.=-]\),\\\1,g' echo "$1" | sed -e 's,\([^a-zA-Z0-9/_.=-]\),\\\1,g'
} }
wsrep_pick_url() {
[ $# -eq 0 ] && return 0
log_error "WSREP: 'wsrep_urls' is DEPRECATED! Use wsrep_cluster_address to specify multiple addresses instead."
if ! which nc >/dev/null; then
log_error "ERROR: nc tool not found in PATH! Make sure you have it installed."
return 1
fi
local url
# Assuming URL in the form scheme://host:port
# If host and port are not NULL, the liveness of URL is assumed to be tested
# If port part is absent, the url is returned literally and unconditionally
# If every URL has port but none is reachable, nothing is returned
for url in `echo $@ | sed s/,/\ /g` 0; do
local host=`echo $url | cut -d \: -f 2 | sed s/^\\\/\\\///`
local port=`echo $url | cut -d \: -f 3`
[ -z "$port" ] && break
nc -z "$host" $port >/dev/null && break
done
if [ "$url" == "0" ]; then
log_error "ERROR: none of the URLs in '$@' is reachable."
return 1
fi
echo $url
}
# Run mysqld with --wsrep-recover and parse recovered position from log.
# Position will be stored in wsrep_start_position_opt global.
wsrep_start_position_opt=""
wsrep_recover_position() {
local mysqld_cmd="$@"
local wr_logfile=$(mktemp)
local euid=$(id -u)
local ret=0
[ "$euid" = "0" ] && chown $user $wr_logfile
chmod 600 $wr_logfile
log_notice "WSREP: Running position recovery with --log_error=$wr_logfile"
eval_log_error $mysqld_cmd --log_error=$wr_logfile --wsrep-recover
local rp="$(grep 'WSREP: Recovered position:' $wr_logfile)"
if [ -z "$rp" ]; then
local skipped="$(grep WSREP $wr_logfile | grep 'skipping position recovery')"
if [ -z "$skipped" ]; then
log_error "WSREP: Failed to recover position: " `cat $wr_logfile`;
ret=1
else
log_notice "WSREP: Position recovery skipped"
fi
else
local start_pos="$(echo $rp | sed 's/.*WSREP\:\ Recovered\ position://' \
| sed 's/^[ \t]*//')"
log_notice "WSREP: Recovered position $start_pos"
wsrep_start_position_opt="--wsrep_start_position=$start_pos"
fi
rm $wr_logfile
return $ret
}
parse_arguments() { parse_arguments() {
# We only need to pass arguments through to the server if we don't # We only need to pass arguments through to the server if we don't
# handle them here. So, we collect unrecognized options (passed on # handle them here. So, we collect unrecognized options (passed on
...@@ -244,7 +311,13 @@ parse_arguments() { ...@@ -244,7 +311,13 @@ parse_arguments() {
--skip-syslog) want_syslog=0 ;; --skip-syslog) want_syslog=0 ;;
--syslog-tag=*) syslog_tag="$val" ;; --syslog-tag=*) syslog_tag="$val" ;;
--timezone=*) TZ="$val"; export TZ; ;; --timezone=*) TZ="$val"; export TZ; ;;
--wsrep[-_]urls=*) wsrep_urls="$val"; ;;
--wsrep[-_]provider=*)
if test -n "$val" && test "$val" != "none"
then
wsrep_restart=1
fi
;;
--help) usage ;; --help) usage ;;
*) *)
...@@ -788,7 +861,8 @@ do ...@@ -788,7 +861,8 @@ do
done done
cmd="$cmd $args" cmd="$cmd $args"
# Avoid 'nohup: ignoring input' warning # Avoid 'nohup: ignoring input' warning
test -n "$NOHUP_NICENESS" && cmd="$cmd < /dev/null" nohup_redir=""
test -n "$NOHUP_NICENESS" && nohup_redir=" < /dev/null"
log_notice "Starting $MYSQLD daemon with databases from $DATADIR" log_notice "Starting $MYSQLD daemon with databases from $DATADIR"
...@@ -799,13 +873,31 @@ max_fast_restarts=5 ...@@ -799,13 +873,31 @@ max_fast_restarts=5
# flag whether a usable sleep command exists # flag whether a usable sleep command exists
have_sleep=1 have_sleep=1
# maximum number of wsrep restarts
max_wsrep_restarts=0
# maximum number of wsrep restarts
max_wsrep_restarts=0
while true while true
do do
rm -f "$pid_file" # Some extra safety rm -f "$pid_file" # Some extra safety
start_time=`date +%M%S` start_time=`date +%M%S`
eval_log_error "$cmd" # this sets wsrep_start_position_opt
wsrep_recover_position "$cmd"
[ $? -ne 0 ] && exit 1 #
[ -n "$wsrep_urls" ] && url=`wsrep_pick_url $wsrep_urls` # check connect address
if [ -z "$url" ]
then
eval_log_error "$cmd $wsrep_start_position_opt $nohup_redir"
else
eval_log_error "$cmd $wsrep_start_position_opt --wsrep_cluster_address=$url $nohup_redir"
fi
if [ $want_syslog -eq 0 -a ! -f "$err_log" ]; then if [ $want_syslog -eq 0 -a ! -f "$err_log" ]; then
touch "$err_log" # hypothetical: log was renamed but not touch "$err_log" # hypothetical: log was renamed but not
...@@ -875,6 +967,20 @@ do ...@@ -875,6 +967,20 @@ do
I=`expr $I + 1` I=`expr $I + 1`
done done
fi fi
if [ -n "$wsrep_restart" ]
then
if [ $wsrep_restart -le $max_wsrep_restarts ]
then
wsrep_restart=`expr $wsrep_restart + 1`
log_notice "WSREP: sleeping 15 seconds before restart"
sleep 15
else
log_notice "WSREP: not restarting wsrep node automatically"
break
fi
fi
log_notice "mysqld restarted" log_notice "mysqld restarted"
if test -n "$CRASH_SCRIPT" if test -n "$CRASH_SCRIPT"
then then
......
This diff is collapsed.
...@@ -1156,7 +1156,19 @@ Events::load_events_from_db(THD *thd) ...@@ -1156,7 +1156,19 @@ Events::load_events_from_db(THD *thd)
close_mysql_tables(thd); close_mysql_tables(thd);
DBUG_RETURN(ret); DBUG_RETURN(ret);
} }
#ifdef WITH_WSREP
int wsrep_create_event_query(THD *thd, uchar** buf, uint* buf_len)
{
String log_query;
if (create_query_string(thd, &log_query))
{
WSREP_WARN("events create string failed: %s", thd->query());
return 1;
}
return wsrep_to_buf_helper(thd, log_query.ptr(), log_query.length(), buf, buf_len);
}
#endif /* WITH_WSREP */
/** /**
@} (End of group Event_Scheduler) @} (End of group Event_Scheduler)
*/ */
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
...@@ -504,6 +504,9 @@ class MDL_ticket : public MDL_wait_for_subgraph ...@@ -504,6 +504,9 @@ class MDL_ticket : public MDL_wait_for_subgraph
MDL_ticket *next_in_lock; MDL_ticket *next_in_lock;
MDL_ticket **prev_in_lock; MDL_ticket **prev_in_lock;
public: public:
#ifdef WITH_WSREP
void wsrep_report(bool debug);
#endif /* WITH_WSREP */
bool has_pending_conflicting_lock() const; bool has_pending_conflicting_lock() const;
MDL_context *get_ctx() const { return m_ctx; } MDL_context *get_ctx() const { return m_ctx; }
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment