mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 02:05:57 +01:00
Update debian packaging to work in 10.3
* Rename all files to use 10.3 in the filename * Adjust rules to delete extra lines from control file * Adjust control file to have correct Replaces/Breaks list for each package * Add libcurl3-dev as build dependency for mariadb server in debian
This commit is contained in:
parent
3d004de31d
commit
75b8fe4f18
53 changed files with 593 additions and 551 deletions
10
debian/autobake-deb.sh
vendored
10
debian/autobake-deb.sh
vendored
|
@ -24,8 +24,8 @@ then
|
|||
sed -i -e '/Add support for verbose builds/,+2d' debian/rules
|
||||
|
||||
# Don't include test suite package on Travis-CI to make the build time shorter
|
||||
sed '/Package: mariadb-test-data/,+26d' -i debian/control
|
||||
sed '/Package: mariadb-test/,+34d' -i debian/control
|
||||
sed '/Package: mariadb-test-data/,+28d' -i debian/control
|
||||
sed '/Package: mariadb-test/,+36d' -i debian/control
|
||||
fi
|
||||
|
||||
|
||||
|
@ -67,9 +67,9 @@ then
|
|||
sed 's/ --with systemd//' -i debian/rules
|
||||
sed '/systemd/d' -i debian/rules
|
||||
sed '/\.service/d' -i debian/rules
|
||||
sed '/galera_new_cluster/d' -i debian/mariadb-server-10.2.install
|
||||
sed '/galera_recovery/d' -i debian/mariadb-server-10.2.install
|
||||
sed '/mariadb-service-convert/d' -i debian/mariadb-server-10.2.install
|
||||
sed '/galera_new_cluster/d' -i debian/mariadb-server-10.3.install
|
||||
sed '/galera_recovery/d' -i debian/mariadb-server-10.3.install
|
||||
sed '/mariadb-service-convert/d' -i debian/mariadb-server-10.3.install
|
||||
fi
|
||||
|
||||
# Convert gcc version to numberical value. Format is Mmmpp where M is Major
|
||||
|
|
6
debian/changelog
vendored
6
debian/changelog
vendored
|
@ -1,3 +1,9 @@
|
|||
mariadb-10.3 (10.3.0) unstable; urgency=low
|
||||
|
||||
* Initial release.
|
||||
|
||||
-- Vicențiu Ciorbaru <vicentiu@mariadb.org> Wed, 5 Apr 2017 21:18:02 +0200
|
||||
|
||||
mariadb-10.2 (10.2.0) unstable; urgency=low
|
||||
|
||||
* Initial release.
|
||||
|
|
126
debian/control
vendored
126
debian/control
vendored
|
@ -1,4 +1,4 @@
|
|||
Source: mariadb-10.2
|
||||
Source: mariadb-10.3
|
||||
Section: database
|
||||
Priority: optional
|
||||
Maintainer: MariaDB Developers <maria-developers@lists.launchpad.net>
|
||||
|
@ -16,6 +16,7 @@ Build-Depends: bison,
|
|||
libjemalloc-dev (>= 3.0.0~) [linux-any],
|
||||
libjudy-dev,
|
||||
libkrb5-dev,
|
||||
libcurl3-dev,
|
||||
libncurses5-dev (>= 5.0-6~),
|
||||
libnuma-dev,
|
||||
libpam0g-dev,
|
||||
|
@ -171,7 +172,7 @@ Description: MariaDB database common files (e.g. /etc/mysql/conf.d/mariadb.cnf)
|
|||
This package includes files needed by all versions of the client library
|
||||
(e.g. /etc/mysql/conf.d/mariadb.cnf).
|
||||
|
||||
Package: mariadb-client-core-10.2
|
||||
Package: mariadb-client-core-10.3
|
||||
Architecture: any
|
||||
Depends: libmariadb3 (>= ${source:Version}),
|
||||
mariadb-common (>= ${source:Version}),
|
||||
|
@ -191,8 +192,8 @@ Conflicts: mariadb-client-10.0,
|
|||
mariadb-client-core-5.5,
|
||||
mysql-client (<< 5.0.51),
|
||||
mysql-client-5.0,
|
||||
mysql-client-5.1 (<< ${source:Version}),
|
||||
mysql-client-5.5 (<< ${source:Version}),
|
||||
mysql-client-5.1,
|
||||
mysql-client-5.5,
|
||||
mysql-client-core-5.1,
|
||||
mysql-client-core-5.5,
|
||||
mysql-client-core-5.6,
|
||||
|
@ -234,11 +235,11 @@ Description: MariaDB database core client binaries
|
|||
.
|
||||
This package includes the core client files, as used by Akonadi.
|
||||
|
||||
Package: mariadb-client-10.2
|
||||
Package: mariadb-client-10.3
|
||||
Architecture: any
|
||||
Depends: debianutils (>=1.6),
|
||||
libmariadb3 (>= ${source:Version}),
|
||||
mariadb-client-core-10.2 (>= ${source:Version}),
|
||||
mariadb-client-core-10.3 (>= ${source:Version}),
|
||||
mariadb-common,
|
||||
${misc:Depends},
|
||||
${perl:Depends},
|
||||
|
@ -289,7 +290,7 @@ Description: MariaDB database client binaries
|
|||
This package includes the client binaries and the additional tools
|
||||
innotop and mysqlreport.
|
||||
|
||||
Package: mariadb-server-core-10.2
|
||||
Package: mariadb-server-core-10.3
|
||||
Architecture: any
|
||||
Depends: libmariadb3 (>= ${binary:Version}),
|
||||
mariadb-common (>= ${source:Version}),
|
||||
|
@ -310,14 +311,17 @@ Conflicts: mariadb-server-core-10.0,
|
|||
virtual-mysql-server-core
|
||||
Breaks: mariadb-client-10.0,
|
||||
mariadb-client-10.1,
|
||||
mariadb-client-10.2 (<< ${source:Version}),
|
||||
mariadb-server-10.2 (<< ${source:Version})
|
||||
mariadb-client-10.2,
|
||||
mariadb-client-10.3 (<< ${source:Version}),
|
||||
mariadb-server-10.3 (<< ${source:Version})
|
||||
Replaces: mariadb-client-10.0,
|
||||
mariadb-client-10.1,
|
||||
mariadb-client-10.2 (<< ${source:Version}),
|
||||
mariadb-server-10.2 (<< ${source:Version}),
|
||||
mariadb-client-10.2,
|
||||
mariadb-client-10.3 (<< ${source:Version}),
|
||||
mariadb-server-10.3 (<< ${source:Version}),
|
||||
mariadb-server-core-10.0,
|
||||
mariadb-server-core-10.1,
|
||||
mariadb-server-core-10.2,
|
||||
mariadb-server-core-5.1,
|
||||
mariadb-server-core-5.2,
|
||||
mariadb-server-core-5.3,
|
||||
|
@ -344,7 +348,7 @@ Description: MariaDB database core server files
|
|||
.
|
||||
This package includes the core server files, as used by Akonadi.
|
||||
|
||||
Package: mariadb-server-10.2
|
||||
Package: mariadb-server-10.3
|
||||
Architecture: any
|
||||
Suggests: mailx, mariadb-test, netcat-openbsd, tinyca
|
||||
Recommends: libhtml-template-perl
|
||||
|
@ -358,8 +362,8 @@ Depends: bsdutils,
|
|||
libdbi-perl,
|
||||
lsb-base (>= 3.0-10),
|
||||
lsof,
|
||||
mariadb-client-10.2 (>= ${source:Version}),
|
||||
mariadb-server-core-10.2 (>= ${binary:Version}),
|
||||
mariadb-client-10.3 (>= ${source:Version}),
|
||||
mariadb-server-core-10.3 (>= ${binary:Version}),
|
||||
passwd,
|
||||
perl (>= 5.6),
|
||||
psmisc,
|
||||
|
@ -370,12 +374,14 @@ Depends: bsdutils,
|
|||
Conflicts: mariadb-server (<< ${source:Version}),
|
||||
mariadb-server-10.0,
|
||||
mariadb-server-10.1,
|
||||
mariadb-server-10.2,
|
||||
mariadb-server-5.1,
|
||||
mariadb-server-5.2,
|
||||
mariadb-server-5.3,
|
||||
mariadb-server-5.5,
|
||||
mariadb-tokudb-engine-10.0,
|
||||
mariadb-tokudb-engine-10.1,
|
||||
mariadb-tokudb-engine-10.2,
|
||||
mariadb-tokudb-engine-5.5,
|
||||
mysql-server (<< ${source:Version}),
|
||||
mysql-server-4.1,
|
||||
|
@ -390,12 +396,14 @@ Replaces: libmariadbclient-dev (<< 5.5.0),
|
|||
mariadb-server (<< ${source:Version}),
|
||||
mariadb-server-10.0,
|
||||
mariadb-server-10.1,
|
||||
mariadb-server-10.2,
|
||||
mariadb-server-5.1,
|
||||
mariadb-server-5.2,
|
||||
mariadb-server-5.3,
|
||||
mariadb-server-5.5,
|
||||
mariadb-tokudb-engine-10.0,
|
||||
mariadb-tokudb-engine-10.1,
|
||||
mariadb-tokudb-engine-10.2,
|
||||
mariadb-tokudb-engine-5.5,
|
||||
mysql-server (<< ${source:Version}),
|
||||
mysql-server-4.1,
|
||||
|
@ -416,10 +424,10 @@ Description: MariaDB database server binaries
|
|||
|
||||
Package: mariadb-server
|
||||
Architecture: all
|
||||
Depends: mariadb-server-10.2 (>= ${source:Version}), ${misc:Depends}
|
||||
Depends: mariadb-server-10.3 (>= ${source:Version}), ${misc:Depends}
|
||||
Description: MariaDB database server (metapackage depending on the latest version)
|
||||
This is an empty package that depends on the current "best" version of
|
||||
mariadb-server (currently mariadb-server-10.2), as determined by the MariaDB
|
||||
mariadb-server (currently mariadb-server-10.3), as determined by the MariaDB
|
||||
maintainers. Install this package if in doubt about which MariaDB
|
||||
version you need. That will install the version recommended by the
|
||||
package maintainers.
|
||||
|
@ -431,22 +439,26 @@ Description: MariaDB database server (metapackage depending on the latest versio
|
|||
|
||||
Package: mariadb-client
|
||||
Architecture: all
|
||||
Depends: mariadb-client-10.2 (>= ${source:Version}), ${misc:Depends}
|
||||
Depends: mariadb-client-10.3 (>= ${source:Version}), ${misc:Depends}
|
||||
Description: MariaDB database client (metapackage depending on the latest version)
|
||||
This is an empty package that depends on the current "best" version of
|
||||
mariadb-client (currently mariadb-client-10.2), as determined by the MariaDB
|
||||
mariadb-client (currently mariadb-client-10.3), as determined by the MariaDB
|
||||
maintainers. Install this package if in doubt about which MariaDB version
|
||||
you want, as this is the one considered to be in the best shape.
|
||||
|
||||
Package: mariadb-plugin-connect
|
||||
Architecture: any
|
||||
Depends: libxml2,
|
||||
mariadb-server-10.2,
|
||||
mariadb-server-10.3,
|
||||
unixodbc,
|
||||
${misc:Depends},
|
||||
${shlibs:Depends}
|
||||
Breaks: mariadb-connect-engine-10.1, mariadb-connect-engine-10.2
|
||||
Replaces: mariadb-connect-engine-10.1, mariadb-connect-engine-10.2
|
||||
Breaks: mariadb-connect-engine-10.1,
|
||||
mariadb-connect-engine-10.2,
|
||||
mariadb-connect-engine-10.3
|
||||
Replaces: mariadb-connect-engine-10.1,
|
||||
mariadb-connect-engine-10.2,
|
||||
mariadb-connect-engine-10.3
|
||||
Description: Connect storage engine for MariaDB
|
||||
Connect engine supports a number of file formats (dbf, xml, txt, bin, etc),
|
||||
connections to ODBC tables and remote MySQL tables, as well as a number of
|
||||
|
@ -463,9 +475,13 @@ Description: RocksDB storage engine for MariaDB
|
|||
|
||||
Package: mariadb-plugin-oqgraph
|
||||
Architecture: any
|
||||
Depends: libjudydebian1, mariadb-server-10.2, ${misc:Depends}, ${shlibs:Depends}
|
||||
Breaks: mariadb-oqgraph-engine-10.1, mariadb-oqgraph-engine-10.2
|
||||
Replaces: mariadb-oqgraph-engine-10.1, mariadb-oqgraph-engine-10.2
|
||||
Depends: libjudydebian1, mariadb-server-10.3, ${misc:Depends}, ${shlibs:Depends}
|
||||
Breaks: mariadb-oqgraph-engine-10.1,
|
||||
mariadb-oqgraph-engine-10.2,
|
||||
mariadb-oqgraph-engine-10.3
|
||||
Replaces: mariadb-oqgraph-engine-10.1,
|
||||
mariadb-oqgraph-engine-10.2,
|
||||
mariadb-oqgraph-engine-10.3
|
||||
Description: OQGraph storage engine for MariaDB
|
||||
The OQGraph engine is a computation engine plugin for handling hierarchies
|
||||
(trees) and graphs (friend-of-a-friend, etc) cleanly through standard SQL.
|
||||
|
@ -473,13 +489,15 @@ Description: OQGraph storage engine for MariaDB
|
|||
|
||||
Package: mariadb-plugin-tokudb
|
||||
Architecture: any
|
||||
Depends: mariadb-server-10.2, ${misc:Depends}, ${shlibs:Depends}
|
||||
Depends: mariadb-server-10.3, ${misc:Depends}, ${shlibs:Depends}
|
||||
Breaks: mariadb-server-10.0,
|
||||
mariadb-server-10.1,
|
||||
mariadb-server-10.2 (<< ${source:Version})
|
||||
mariadb-server-10.2,
|
||||
mariadb-server-10.3 (<< ${source:Version})
|
||||
Replaces: mariadb-server-10.0,
|
||||
mariadb-server-10.1,
|
||||
mariadb-server-10.2 (<< ${source:Version})
|
||||
mariadb-server-10.2,
|
||||
mariadb-server-10.3 (<< ${source:Version})
|
||||
Description: TokuDB storage engine for MariaDB
|
||||
The TokuDB storage engine is for use in high-performance and write-intensive
|
||||
environments, offering increased compression and better performance based
|
||||
|
@ -488,13 +506,15 @@ Description: TokuDB storage engine for MariaDB
|
|||
|
||||
Package: mariadb-plugin-mroonga
|
||||
Architecture: any
|
||||
Depends: mariadb-server-10.2, ${misc:Depends}, ${shlibs:Depends}
|
||||
Depends: mariadb-server-10.3, ${misc:Depends}, ${shlibs:Depends}
|
||||
Breaks: mariadb-server-10.0,
|
||||
mariadb-server-10.1,
|
||||
mariadb-server-10.2 (<< ${source:Version})
|
||||
mariadb-server-10.2,
|
||||
mariadb-server-10.3 (<< ${source:Version})
|
||||
Replaces: mariadb-server-10.0,
|
||||
mariadb-server-10.1,
|
||||
mariadb-server-10.2 (<< ${source:Version})
|
||||
mariadb-server-10.2,
|
||||
mariadb-server-10.3 (<< ${source:Version})
|
||||
Description: Mroonga storage engine for MariaDB
|
||||
Mroonga (formerly named Groonga Storage Engine) is a storage engine that
|
||||
provides fast CJK-ready full text searching using column store.
|
||||
|
@ -502,13 +522,15 @@ Description: Mroonga storage engine for MariaDB
|
|||
|
||||
Package: mariadb-plugin-spider
|
||||
Architecture: any
|
||||
Depends: mariadb-server-10.2, ${misc:Depends}, ${shlibs:Depends}
|
||||
Depends: mariadb-server-10.3, ${misc:Depends}, ${shlibs:Depends}
|
||||
Breaks: mariadb-server-10.0,
|
||||
mariadb-server-10.1,
|
||||
mariadb-server-10.2 (<< ${source:Version})
|
||||
mariadb-server-10.2,
|
||||
mariadb-server-10.3 (<< ${source:Version})
|
||||
Replaces: mariadb-server-10.0,
|
||||
mariadb-server-10.1,
|
||||
mariadb-server-10.2 (<< ${source:Version})
|
||||
mariadb-server-10.2,
|
||||
mariadb-server-10.3 (<< ${source:Version})
|
||||
Description: Spider storage engine for MariaDB
|
||||
The Spider storage engine with built-in sharding features. It supports
|
||||
partitioning and xa transactions, and allows tables of different MariaDB
|
||||
|
@ -517,13 +539,15 @@ Description: Spider storage engine for MariaDB
|
|||
|
||||
Package: mariadb-plugin-cassandra
|
||||
Architecture: any
|
||||
Depends: mariadb-server-10.2, ${misc:Depends}, ${shlibs:Depends}
|
||||
Depends: mariadb-server-10.3, ${misc:Depends}, ${shlibs:Depends}
|
||||
Breaks: mariadb-server-10.0,
|
||||
mariadb-server-10.1,
|
||||
mariadb-server-10.2 (<< ${source:Version})
|
||||
mariadb-server-10.2,
|
||||
mariadb-server-10.3 (<< ${source:Version})
|
||||
Replaces: mariadb-server-10.0,
|
||||
mariadb-server-10.1,
|
||||
mariadb-server-10.2 (<< ${source:Version})
|
||||
mariadb-server-10.2,
|
||||
mariadb-server-10.3 (<< ${source:Version})
|
||||
Description: Cassandra storage engine for MariaDB
|
||||
The Cassandra Storage Engine allows access to data in a Cassandra cluster from
|
||||
MariaDB, combining the best of SQL and no-SQL worlds. Cassandra SE (storage
|
||||
|
@ -535,27 +559,35 @@ Description: Cassandra storage engine for MariaDB
|
|||
Package: mariadb-plugin-gssapi-server
|
||||
Architecture: any
|
||||
Depends: libgssapi-krb5-2,
|
||||
mariadb-server-10.2,
|
||||
mariadb-server-10.3,
|
||||
${misc:Depends},
|
||||
${shlibs:Depends}
|
||||
Breaks: mariadb-gssapi-server-10.1, mariadb-gssapi-server-10.2
|
||||
Replaces: mariadb-gssapi-server-10.1, mariadb-gssapi-server-10.2
|
||||
Breaks: mariadb-gssapi-server-10.1,
|
||||
mariadb-gssapi-server-10.2,
|
||||
mariadb-gssapi-server-10.3
|
||||
Replaces: mariadb-gssapi-server-10.1,
|
||||
mariadb-gssapi-server-10.2,
|
||||
mariadb-gssapi-server-10.3
|
||||
Description: GSSAPI authentication plugin for MariaDB server
|
||||
|
||||
Package: mariadb-plugin-gssapi-client
|
||||
Architecture: any
|
||||
Depends: libgssapi-krb5-2,
|
||||
mariadb-client-10.2,
|
||||
mariadb-client-10.3,
|
||||
${misc:Depends},
|
||||
${shlibs:Depends}
|
||||
Breaks: mariadb-gssapi-client-10.1, mariadb-gssapi-client-10.2
|
||||
Replaces: mariadb-gssapi-client-10.1, mariadb-gssapi-client-10.2
|
||||
Breaks: mariadb-gssapi-client-10.1,
|
||||
mariadb-gssapi-client-10.2,
|
||||
mariadb-gssapi-client-10.3
|
||||
Replaces: mariadb-gssapi-client-10.1,
|
||||
mariadb-gssapi-client-10.2,
|
||||
mariadb-gssapi-client-10.3
|
||||
Description: GSSAPI authentication plugin for MariaDB client
|
||||
|
||||
Package: mariadb-plugin-cracklib-password-check
|
||||
Architecture: any
|
||||
Depends: libcrack2 (>= 2.9.0),
|
||||
mariadb-server-10.2,
|
||||
mariadb-server-10.3,
|
||||
${misc:Depends},
|
||||
${shlibs:Depends}
|
||||
Description: CrackLib Password Validation Plugin for MariaDB
|
||||
|
@ -564,14 +596,15 @@ Description: CrackLib Password Validation Plugin for MariaDB
|
|||
|
||||
Package: mariadb-test
|
||||
Architecture: any
|
||||
Depends: mariadb-client-10.2 (= ${binary:Version}),
|
||||
mariadb-server-10.2 (= ${binary:Version}),
|
||||
Depends: mariadb-client-10.3 (= ${binary:Version}),
|
||||
mariadb-server-10.3 (= ${binary:Version}),
|
||||
mariadb-test-data (= ${source:Version}),
|
||||
${misc:Depends},
|
||||
${shlibs:Depends}
|
||||
Breaks: mariadb-server-5.5,
|
||||
mariadb-test-10.0,
|
||||
mariadb-test-10.1,
|
||||
mariadb-test-10.2,
|
||||
mariadb-test-5.5,
|
||||
mysql-testsuite,
|
||||
mysql-testsuite-5.5,
|
||||
|
@ -581,6 +614,7 @@ Breaks: mariadb-server-5.5,
|
|||
Replaces: mariadb-server-5.5,
|
||||
mariadb-test-10.0,
|
||||
mariadb-test-10.1,
|
||||
mariadb-test-10.2,
|
||||
mariadb-test-5.5,
|
||||
mysql-testsuite,
|
||||
mysql-testsuite-5.5,
|
||||
|
@ -602,6 +636,7 @@ Architecture: all
|
|||
Depends: ${misc:Depends}
|
||||
Breaks: mariadb-test-10.0,
|
||||
mariadb-test-10.1,
|
||||
mariadb-test-10.2,
|
||||
mariadb-test-5.5,
|
||||
mariadb-test-data-10.0,
|
||||
mysql-testsuite,
|
||||
|
@ -610,6 +645,7 @@ Breaks: mariadb-test-10.0,
|
|||
mysql-testsuite-5.7
|
||||
Replaces: mariadb-test-10.0,
|
||||
mariadb-test-10.1,
|
||||
mariadb-test-10.2,
|
||||
mariadb-test-5.5,
|
||||
mariadb-test-data-10.0,
|
||||
mysql-testsuite,
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
# According to /usr/share/menu/ policy 1.4, not /usr/share/doc/debian-policy/
|
||||
?package(mariadb-client-10.2):needs="text" section="Applications/Data Management"\
|
||||
?package(mariadb-client-10.3):needs="text" section="Applications/Data Management"\
|
||||
title="Innotop" command="/usr/bin/innotop"
|
2
debian/mariadb-plugin-tokudb.install
vendored
2
debian/mariadb-plugin-tokudb.install
vendored
|
@ -1,4 +1,4 @@
|
|||
etc/mysql/conf.d/tokudb.cnf etc/mysql/mariadb.conf.d
|
||||
usr/bin/tokuftdump
|
||||
usr/lib/mysql/plugin/ha_tokudb.so
|
||||
usr/share/doc/mariadb-server-10.2/README.md usr/share/doc/mariadb-plugin-tokudb/README.md
|
||||
usr/share/doc/mariadb-server-10.3/README.md usr/share/doc/mariadb-plugin-tokudb/README.md
|
||||
|
|
|
@ -58,8 +58,8 @@ usr/lib/mysql/plugin/simple_password_check.so
|
|||
usr/lib/mysql/plugin/sql_errlog.so
|
||||
usr/lib/mysql/plugin/user_variables.so
|
||||
usr/lib/mysql/plugin/wsrep_info.so
|
||||
usr/share/apport/package-hooks/source_mariadb-10.2.py
|
||||
usr/share/doc/mariadb-server-10.2/mysqld.sym.gz
|
||||
usr/share/apport/package-hooks/source_mariadb-10.3.py
|
||||
usr/share/doc/mariadb-server-10.3/mysqld.sym.gz
|
||||
usr/share/mysql/errmsg-utf8.txt
|
||||
usr/share/mysql/fill_help_tables.sql
|
||||
usr/share/mysql/maria_add_gis_sp_bootstrap.sql
|
|
@ -158,7 +158,7 @@ case "${1:-''}" in
|
|||
|
||||
if ! mysqld_status check_dead warn; then
|
||||
log_end_msg 1
|
||||
log_failure_msg "Please stop MariaDB manually and read /usr/share/doc/mariadb-server-10.2/README.Debian.gz!"
|
||||
log_failure_msg "Please stop MariaDB manually and read /usr/share/doc/mariadb-server-10.3/README.Debian.gz!"
|
||||
exit -1
|
||||
else
|
||||
log_end_msg 0
|
|
@ -132,7 +132,7 @@ EOF
|
|||
# Clean up old flags before setting new one
|
||||
rm -f $mysql_datadir/debian-*.flag
|
||||
# Flag data dir to avoid downgrades
|
||||
touch $mysql_datadir/debian-10.2.flag
|
||||
touch $mysql_datadir/debian-10.3.flag
|
||||
|
||||
# initiate databases. Output is not allowed by debconf :-(
|
||||
# This will fail if we are upgrading an existing database; in this case
|
|
@ -49,9 +49,9 @@ if [ "$1" = "purge" -a ! \( -x /usr/sbin/mysqld -o -L /usr/sbin/mysqld \) ]; the
|
|||
rm -f /var/log/mysql.{log,err}{,.0,.[1234567].gz}
|
||||
rm -rf /var/log/mysql
|
||||
|
||||
db_input high mariadb-server-10.2/postrm_remove_databases || true
|
||||
db_input high mariadb-server-10.3/postrm_remove_databases || true
|
||||
db_go || true
|
||||
db_get mariadb-server-10.2/postrm_remove_databases || true
|
||||
db_get mariadb-server-10.3/postrm_remove_databases || true
|
||||
if [ "$RET" = "true" ]; then
|
||||
# never remove the debian.cnf when the databases are still existing
|
||||
# else we ran into big trouble on the next install!
|
|
@ -49,7 +49,7 @@ stop_server() {
|
|||
|
||||
################################ main() ##########################
|
||||
|
||||
this_version=10.2
|
||||
this_version=10.3
|
||||
max_upgradeable_version=5.7
|
||||
|
||||
# Check if a flag file is found that indicates a previous MariaDB or MySQL
|
||||
|
@ -113,7 +113,7 @@ fi
|
|||
# Instead simply move the old datadir and create a new for this_version.
|
||||
if [ ! -z "$downgrade_detected" ]
|
||||
then
|
||||
db_input critical mariadb-server-10.2/old_data_directory_saved || true
|
||||
db_input critical mariadb-server-10.3/old_data_directory_saved || true
|
||||
db_go
|
||||
echo "The file $mysql_datadir/debian-$found_version.flag indicates a" 1>&2
|
||||
echo "version that cannot automatically be upgraded. Therefore the" 1>&2
|
|
@ -1,4 +1,4 @@
|
|||
'''apport package hook for mariadb-10.2
|
||||
'''apport package hook for mariadb-10.3
|
||||
|
||||
(c) 2009 Canonical Ltd.
|
||||
Author: Mathias Gug <mathias.gug@canonical.com>
|
||||
|
@ -20,7 +20,7 @@ def _add_my_conf_files(report, filename):
|
|||
continue
|
||||
|
||||
def add_info(report):
|
||||
attach_conffiles(report, 'mariadb-server-10.2', conffiles=None)
|
||||
attach_conffiles(report, 'mariadb-server-10.3', conffiles=None)
|
||||
key = 'Logs' + path_to_key('/var/log/daemon.log')
|
||||
report[key] = ""
|
||||
for line in read_file('/var/log/daemon.log').split('\n'):
|
|
@ -7,7 +7,7 @@
|
|||
# Even minor modifications require translation updates and such
|
||||
# changes should be coordinated with translators and reviewers.
|
||||
|
||||
Template: mariadb-server-10.2/old_data_directory_saved
|
||||
Template: mariadb-server-10.3/old_data_directory_saved
|
||||
Type: note
|
||||
_Description: The old data directory will be saved at new location
|
||||
A file named /var/lib/mysql/debian-*.flag exists on this system.
|
||||
|
@ -19,7 +19,7 @@ _Description: The old data directory will be saved at new location
|
|||
.
|
||||
Please manually export/import your data (e.g. with mysqldump) if needed.
|
||||
|
||||
Template: mariadb-server-10.2/nis_warning
|
||||
Template: mariadb-server-10.3/nis_warning
|
||||
Type: note
|
||||
#flag:translate!:3,5
|
||||
_Description: Important note for NIS/YP users
|
||||
|
@ -33,7 +33,7 @@ _Description: Important note for NIS/YP users
|
|||
.
|
||||
/var/lib/mysql: drwxr-xr-x mysql mysql
|
||||
|
||||
Template: mariadb-server-10.2/postrm_remove_databases
|
||||
Template: mariadb-server-10.3/postrm_remove_databases
|
||||
Type: boolean
|
||||
Default: false
|
||||
_Description: Remove all MariaDB databases?
|
||||
|
@ -66,7 +66,7 @@ _Description: Unable to set password for the MariaDB "root" user
|
|||
.
|
||||
You should check the account's password after the package installation.
|
||||
.
|
||||
Please read the /usr/share/doc/mariadb-server-10.2/README.Debian file
|
||||
Please read the /usr/share/doc/mariadb-server-10.3/README.Debian file
|
||||
for more information.
|
||||
|
||||
Template: mysql-server/password_mismatch
|
2
debian/po/POTFILES.in
vendored
2
debian/po/POTFILES.in
vendored
|
@ -1 +1 @@
|
|||
[type: gettext/rfc822deb] mariadb-server-10.2.templates
|
||||
[type: gettext/rfc822deb] mariadb-server-10.3.templates
|
||||
|
|
46
debian/po/ar.po
vendored
46
debian/po/ar.po
vendored
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: templates\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.2@packages.debian.org\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.3@packages.debian.org\n"
|
||||
"POT-Creation-Date: 2016-10-08 01:26+0300\n"
|
||||
"PO-Revision-Date: 2007-05-01 13:04+0300\n"
|
||||
"Last-Translator: Ossama M. Khayat <okhayat@yahoo.com>\n"
|
||||
|
@ -27,13 +27,13 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid "The old data directory will be saved at new location"
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"A file named /var/lib/mysql/debian-*.flag exists on this system. The number "
|
||||
"indicates a database binary format version that cannot automatically be "
|
||||
|
@ -42,7 +42,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Therefore the previous data directory will be renamed to /var/lib/mysql-* "
|
||||
"and a new data directory will be initialized at /var/lib/mysql."
|
||||
|
@ -50,20 +50,20 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Please manually export/import your data (e.g. with mysqldump) if needed."
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid "Important note for NIS/YP users"
|
||||
msgstr "ملاحظة هامة لمستخدمي NIS/YP"
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"Using MariaDB under NIS/YP requires a mysql user account to be added on the "
|
||||
"local system with:"
|
||||
|
@ -71,7 +71,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "You should also check the permissions and the owner of the /var/lib/mysql "
|
||||
|
@ -83,13 +83,13 @@ msgstr "عليك أيضاً أن تقوم بالتأكد من صلاحيات م
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid "Remove all MariaDB databases?"
|
||||
msgstr "إزالة جميع قواعد بيانات MariaDB؟"
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"The /var/lib/mysql directory which contains the MariaDB databases is about "
|
||||
"to be removed."
|
||||
|
@ -97,7 +97,7 @@ msgstr "الدليل /var/lib/mysql الذي يحتوي قواعد بيانات
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"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, "
|
||||
|
@ -108,13 +108,13 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid "New password for the MariaDB \"root\" user:"
|
||||
msgstr "كلمة المرور الجديدة لمستخد \"root\" الخاص بـMariaDB:"
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid ""
|
||||
"While not mandatory, it is highly recommended that you set a password for "
|
||||
"the MariaDB administrative \"root\" user."
|
||||
|
@ -124,7 +124,7 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
#, fuzzy
|
||||
#| 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."
|
||||
|
@ -132,7 +132,7 @@ msgstr "إن ترك الحقل فارغاً، فلن يتم تغيير كلمة
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:6001
|
||||
#: ../mariadb-server-10.3.templates:6001
|
||||
#, fuzzy
|
||||
#| msgid "New password for the MariaDB \"root\" user:"
|
||||
msgid "Repeat password for the MariaDB \"root\" user:"
|
||||
|
@ -140,13 +140,13 @@ msgstr "كلمة المرور الجديدة لمستخد \"root\" الخاص ب
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "Unable to set password for the MariaDB \"root\" user"
|
||||
msgstr "تعذر تعيين كلمة مرور للمستخدم \"root\" الخاص بـMariaDB."
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid ""
|
||||
"An error occurred while setting the password for the MariaDB administrative "
|
||||
"user. This may have happened because the account already has a password, or "
|
||||
|
@ -158,7 +158,7 @@ msgstr ""
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "You should check the account's password after tha package installation."
|
||||
|
@ -167,27 +167,27 @@ msgstr "يجب عليك التحقق من كلمة مرور الحساب عقب
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Please read the /usr/share/doc/mysql-server-5.1/README.Debian file for "
|
||||
#| "more information."
|
||||
msgid ""
|
||||
"Please read the /usr/share/doc/mariadb-server-10.2/README.Debian file for "
|
||||
"Please read the /usr/share/doc/mariadb-server-10.3/README.Debian file for "
|
||||
"more information."
|
||||
msgstr ""
|
||||
"الرجاء قراءة الملف /usr/share/doc/mariadb-server-10.2/README.Debian للمزيد "
|
||||
"الرجاء قراءة الملف /usr/share/doc/mariadb-server-10.3/README.Debian للمزيد "
|
||||
"من المعلومات."
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "Password input error"
|
||||
msgstr ""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "The two passwords you entered were not the same. Please try again."
|
||||
msgstr ""
|
||||
|
||||
|
|
48
debian/po/ca.po
vendored
48
debian/po/ca.po
vendored
|
@ -5,7 +5,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: mysql-dfsg-4.1\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.2@packages.debian.org\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.3@packages.debian.org\n"
|
||||
"POT-Creation-Date: 2016-10-08 01:26+0300\n"
|
||||
"PO-Revision-Date: 2004-01-31 19:20GMT\n"
|
||||
"Last-Translator: Aleix Badia i Bosch <abadia@ica.es>\n"
|
||||
|
@ -17,13 +17,13 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid "The old data directory will be saved at new location"
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"A file named /var/lib/mysql/debian-*.flag exists on this system. The number "
|
||||
"indicates a database binary format version that cannot automatically be "
|
||||
|
@ -32,7 +32,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Therefore the previous data directory will be renamed to /var/lib/mysql-* "
|
||||
"and a new data directory will be initialized at /var/lib/mysql."
|
||||
|
@ -40,14 +40,14 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Please manually export/import your data (e.g. with mysqldump) if needed."
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
#, fuzzy
|
||||
#| msgid "Important note for NIS/YP users!"
|
||||
msgid "Important note for NIS/YP users"
|
||||
|
@ -55,7 +55,7 @@ msgstr "Nota important pels usuaris de NIS/YP"
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"Using MariaDB under NIS/YP requires a mysql user account to be added on the "
|
||||
"local system with:"
|
||||
|
@ -63,7 +63,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"You should also check the permissions and ownership of the /var/lib/mysql "
|
||||
"directory:"
|
||||
|
@ -71,13 +71,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid "Remove all MariaDB databases?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"The /var/lib/mysql directory which contains the MariaDB databases is about "
|
||||
"to be removed."
|
||||
|
@ -85,7 +85,7 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"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, "
|
||||
|
@ -94,13 +94,13 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid "New password for the MariaDB \"root\" user:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid ""
|
||||
"While not mandatory, it is highly recommended that you set a password for "
|
||||
"the MariaDB administrative \"root\" user."
|
||||
|
@ -108,25 +108,25 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid "If this field is left blank, the password will not be changed."
|
||||
msgstr ""
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:6001
|
||||
#: ../mariadb-server-10.3.templates:6001
|
||||
msgid "Repeat password for the MariaDB \"root\" user:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "Unable to set password for the MariaDB \"root\" user"
|
||||
msgstr ""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid ""
|
||||
"An error occurred while setting the password for the MariaDB administrative "
|
||||
"user. This may have happened because the account already has a password, or "
|
||||
|
@ -135,27 +135,27 @@ msgstr ""
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "You should check the account's password after the package installation."
|
||||
msgstr ""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid ""
|
||||
"Please read the /usr/share/doc/mariadb-server-10.2/README.Debian file for "
|
||||
"Please read the /usr/share/doc/mariadb-server-10.3/README.Debian file for "
|
||||
"more information."
|
||||
msgstr ""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "Password input error"
|
||||
msgstr ""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "The two passwords you entered were not the same. Please try again."
|
||||
msgstr ""
|
||||
|
||||
|
@ -203,13 +203,13 @@ msgstr ""
|
|||
#~ msgid ""
|
||||
#~ "MySQL will only install if you have a non-numeric hostname that is "
|
||||
#~ "resolvable via the /etc/hosts file. E.g. if the \"hostname\" command "
|
||||
#~ "returns \"myhostname\" then there must be a line like \"10.2.0.1 "
|
||||
#~ "returns \"myhostname\" then there must be a line like \"10.3.0.1 "
|
||||
#~ "myhostname\"."
|
||||
#~ msgstr ""
|
||||
#~ "El MySQL només s'instal·la en cas de tenir un nom d'ordinador central que "
|
||||
#~ "no sigui numèric i que es pugui resoldre a través del fitxer /etc/hosts. "
|
||||
#~ "Ex. si l'ordre \"hostname\" retorna \"myhostname\", llavors hi ha d'haver "
|
||||
#~ "una línia com la següent \"10.2.0.1 myhostname\"."
|
||||
#~ "una línia com la següent \"10.3.0.1 myhostname\"."
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid ""
|
||||
|
|
50
debian/po/cs.po
vendored
50
debian/po/cs.po
vendored
|
@ -14,7 +14,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: mysql-dfsg-5.1\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.2@packages.debian.org\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.3@packages.debian.org\n"
|
||||
"POT-Creation-Date: 2016-10-08 01:26+0300\n"
|
||||
"PO-Revision-Date: 2007-05-01 13:01+0200\n"
|
||||
"Last-Translator: Miroslav Kure <kurem@debian.cz>\n"
|
||||
|
@ -26,13 +26,13 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid "The old data directory will be saved at new location"
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"A file named /var/lib/mysql/debian-*.flag exists on this system. The number "
|
||||
"indicates a database binary format version that cannot automatically be "
|
||||
|
@ -41,7 +41,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Therefore the previous data directory will be renamed to /var/lib/mysql-* "
|
||||
"and a new data directory will be initialized at /var/lib/mysql."
|
||||
|
@ -49,20 +49,20 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Please manually export/import your data (e.g. with mysqldump) if needed."
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid "Important note for NIS/YP users"
|
||||
msgstr "Důležitá poznámka pro uživatele NIS/YP"
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"Using MariaDB under NIS/YP requires a mysql user account to be added on the "
|
||||
"local system with:"
|
||||
|
@ -70,7 +70,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "You should also check the permissions and the owner of the /var/lib/mysql "
|
||||
|
@ -83,13 +83,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid "Remove all MariaDB databases?"
|
||||
msgstr "Odstranit všechny MariaDB databáze?"
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"The /var/lib/mysql directory which contains the MariaDB databases is about "
|
||||
"to be removed."
|
||||
|
@ -99,7 +99,7 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"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, "
|
||||
|
@ -111,13 +111,13 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid "New password for the MariaDB \"root\" user:"
|
||||
msgstr "Nové heslo MariaDB uživatele \"root\":"
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid ""
|
||||
"While not mandatory, it is highly recommended that you set a password for "
|
||||
"the MariaDB administrative \"root\" user."
|
||||
|
@ -127,7 +127,7 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
#, fuzzy
|
||||
#| 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."
|
||||
|
@ -135,7 +135,7 @@ msgstr "Ponecháte-li pole prázdné, heslo se nezmění."
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:6001
|
||||
#: ../mariadb-server-10.3.templates:6001
|
||||
#, fuzzy
|
||||
#| msgid "New password for the MySQL \"root\" user:"
|
||||
msgid "Repeat password for the MariaDB \"root\" user:"
|
||||
|
@ -143,13 +143,13 @@ msgstr "Nové heslo MariaDB uživatele \"root\":"
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "Unable to set password for the MariaDB \"root\" user"
|
||||
msgstr "Nelze nastavit heslo MariaDB uživatele \"root\""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid ""
|
||||
"An error occurred while setting the password for the MariaDB administrative "
|
||||
"user. This may have happened because the account already has a password, or "
|
||||
|
@ -161,7 +161,7 @@ msgstr ""
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "You should check the account's password after tha package installation."
|
||||
|
@ -170,26 +170,26 @@ msgstr "Po instalaci balíku byste měli heslo ověřit."
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Please read the /usr/share/doc/mysql-server-5.1/README.Debian file for "
|
||||
#| "more information."
|
||||
msgid ""
|
||||
"Please read the /usr/share/doc/mariadb-server-10.2/README.Debian file for "
|
||||
"Please read the /usr/share/doc/mariadb-server-10.3/README.Debian file for "
|
||||
"more information."
|
||||
msgstr ""
|
||||
"Více informací naleznete v /usr/share/doc/mariadb-server-10.2/README.Debian."
|
||||
"Více informací naleznete v /usr/share/doc/mariadb-server-10.3/README.Debian."
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "Password input error"
|
||||
msgstr ""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "The two passwords you entered were not the same. Please try again."
|
||||
msgstr ""
|
||||
|
||||
|
@ -310,13 +310,13 @@ msgstr ""
|
|||
#~ msgid ""
|
||||
#~ "MySQL will only install if you have a non-numeric hostname that is "
|
||||
#~ "resolvable via the /etc/hosts file. E.g. if the \"hostname\" command "
|
||||
#~ "returns \"myhostname\" then there must be a line like \"10.2.0.1 "
|
||||
#~ "returns \"myhostname\" then there must be a line like \"10.3.0.1 "
|
||||
#~ "myhostname\"."
|
||||
#~ msgstr ""
|
||||
#~ "MySQL se nainstaluje pouze v případě, že používáte nenumerické jméno "
|
||||
#~ "počítače, které se dá přeložit přes soubor /etc/hosts. Např. když příkaz "
|
||||
#~ "\"hostname\" vrátí \"diamond\", tak v /etc/hosts musí existovat obdobný "
|
||||
#~ "řádek jako \"10.2.0.1 diamond\"."
|
||||
#~ "řádek jako \"10.3.0.1 diamond\"."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "A new mysql user \"debian-sys-maint\" will be created. This mysql account "
|
||||
|
|
50
debian/po/da.po
vendored
50
debian/po/da.po
vendored
|
@ -14,7 +14,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: mysql-dfsg-4.1\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.2@packages.debian.org\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.3@packages.debian.org\n"
|
||||
"POT-Creation-Date: 2016-10-08 01:26+0300\n"
|
||||
"PO-Revision-Date: 2007-05-30 22:41+0200\n"
|
||||
"Last-Translator: Claus Hindsgaul <claus.hindsgaul@gmail.com>\n"
|
||||
|
@ -27,13 +27,13 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid "The old data directory will be saved at new location"
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"A file named /var/lib/mysql/debian-*.flag exists on this system. The number "
|
||||
"indicates a database binary format version that cannot automatically be "
|
||||
|
@ -42,7 +42,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Therefore the previous data directory will be renamed to /var/lib/mysql-* "
|
||||
"and a new data directory will be initialized at /var/lib/mysql."
|
||||
|
@ -50,20 +50,20 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Please manually export/import your data (e.g. with mysqldump) if needed."
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid "Important note for NIS/YP users"
|
||||
msgstr "Vigtig oplysning til NIS/YP-brugere"
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"Using MariaDB under NIS/YP requires a mysql user account to be added on the "
|
||||
"local system with:"
|
||||
|
@ -71,7 +71,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "You should also check the permissions and the owner of the /var/lib/mysql "
|
||||
|
@ -84,13 +84,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid "Remove all MariaDB databases?"
|
||||
msgstr "Fjern alle MariaDB-databaser?"
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"The /var/lib/mysql directory which contains the MariaDB databases is about "
|
||||
"to be removed."
|
||||
|
@ -100,7 +100,7 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"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, "
|
||||
|
@ -112,13 +112,13 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid "New password for the MariaDB \"root\" user:"
|
||||
msgstr "Ny adgangskode for MariaDB's \"root\"-bruger:"
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid ""
|
||||
"While not mandatory, it is highly recommended that you set a password for "
|
||||
"the MariaDB administrative \"root\" user."
|
||||
|
@ -128,7 +128,7 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
#, fuzzy
|
||||
#| 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."
|
||||
|
@ -136,7 +136,7 @@ msgstr "Hvis du lader dette felt st
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:6001
|
||||
#: ../mariadb-server-10.3.templates:6001
|
||||
#, fuzzy
|
||||
#| msgid "New password for the MySQL \"root\" user:"
|
||||
msgid "Repeat password for the MariaDB \"root\" user:"
|
||||
|
@ -144,13 +144,13 @@ msgstr "Ny adgangskode for MariaDB's \"root\"-bruger:"
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "Unable to set password for the MariaDB \"root\" user"
|
||||
msgstr "Kunne ikke sætte adgangskoden for MariaDB's \"root\"-bruger"
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid ""
|
||||
"An error occurred while setting the password for the MariaDB administrative "
|
||||
"user. This may have happened because the account already has a password, or "
|
||||
|
@ -163,33 +163,33 @@ msgstr ""
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "You should check the account's password after the package installation."
|
||||
msgstr "Du bør tjekke kontoens adgangskode efter pakkeinstallationen."
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Please read the /usr/share/doc/mysql-server-5.1/README.Debian file for "
|
||||
#| "more information."
|
||||
msgid ""
|
||||
"Please read the /usr/share/doc/mariadb-server-10.2/README.Debian file for "
|
||||
"Please read the /usr/share/doc/mariadb-server-10.3/README.Debian file for "
|
||||
"more information."
|
||||
msgstr ""
|
||||
"Se filen /usr/share/doc/mariadb-server-10.2/README.Debian for yderligere "
|
||||
"Se filen /usr/share/doc/mariadb-server-10.3/README.Debian for yderligere "
|
||||
"oplysninger."
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "Password input error"
|
||||
msgstr ""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "The two passwords you entered were not the same. Please try again."
|
||||
msgstr ""
|
||||
|
||||
|
@ -336,12 +336,12 @@ msgstr ""
|
|||
#~ msgid ""
|
||||
#~ "MySQL will only install if you have a non-numeric hostname that is "
|
||||
#~ "resolvable via the /etc/hosts file. E.g. if the \"hostname\" command "
|
||||
#~ "returns \"myhostname\" then there must be a line like \"10.2.0.1 "
|
||||
#~ "returns \"myhostname\" then there must be a line like \"10.3.0.1 "
|
||||
#~ "myhostname\"."
|
||||
#~ msgstr ""
|
||||
#~ "MySQL vil kun blive installeret, hvis du har et ikke-numerisk værtsnavn, "
|
||||
#~ "som kan slås op i filen /ets/hosts. Hvis f.eks. kommandoen \"hostname\" "
|
||||
#~ "svarer med \"mitvaertsnavn\", skal du have en linje a'la \"10.2.0.1 "
|
||||
#~ "svarer med \"mitvaertsnavn\", skal du have en linje a'la \"10.3.0.1 "
|
||||
#~ "mitvaertsnavn\" i /etc/hosts."
|
||||
|
||||
#~ msgid ""
|
||||
|
|
44
debian/po/de.po
vendored
44
debian/po/de.po
vendored
|
@ -15,7 +15,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: mysql-dfsg-5.1_5.1.37-1_de\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.2@packages.debian.org\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.3@packages.debian.org\n"
|
||||
"POT-Creation-Date: 2016-10-08 01:26+0300\n"
|
||||
"PO-Revision-Date: 2009-08-27 22:41+0200\n"
|
||||
"Last-Translator: Thomas Mueller <thomas.mueller@tmit.eu>\n"
|
||||
|
@ -29,13 +29,13 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid "The old data directory will be saved at new location"
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"A file named /var/lib/mysql/debian-*.flag exists on this system. The number "
|
||||
"indicates a database binary format version that cannot automatically be "
|
||||
|
@ -44,7 +44,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Therefore the previous data directory will be renamed to /var/lib/mysql-* "
|
||||
"and a new data directory will be initialized at /var/lib/mysql."
|
||||
|
@ -52,20 +52,20 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Please manually export/import your data (e.g. with mysqldump) if needed."
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid "Important note for NIS/YP users"
|
||||
msgstr "Wichtige Anmerkung für NIS/YP-Benutzer!"
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"Using MariaDB under NIS/YP requires a mysql user account to be added on the "
|
||||
"local system with:"
|
||||
|
@ -75,7 +75,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"You should also check the permissions and ownership of the /var/lib/mysql "
|
||||
"directory:"
|
||||
|
@ -85,13 +85,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid "Remove all MariaDB databases?"
|
||||
msgstr "Alle MariaDB-Datenbanken entfernen?"
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"The /var/lib/mysql directory which contains the MariaDB databases is about "
|
||||
"to be removed."
|
||||
|
@ -101,7 +101,7 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"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, "
|
||||
|
@ -113,13 +113,13 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid "New password for the MariaDB \"root\" user:"
|
||||
msgstr "Neues Passwort für den MariaDB »root«-Benutzer:"
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid ""
|
||||
"While not mandatory, it is highly recommended that you set a password for "
|
||||
"the MariaDB administrative \"root\" user."
|
||||
|
@ -129,25 +129,25 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
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."
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:6001
|
||||
#: ../mariadb-server-10.3.templates:6001
|
||||
msgid "Repeat password for the MariaDB \"root\" user:"
|
||||
msgstr "Wiederholen Sie das Passwort für den MariaDB-»root«-Benutzer:"
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "Unable to set password for the MariaDB \"root\" user"
|
||||
msgstr "Konnte für den MariaDB-»root«-Benutzer kein Passwort setzen"
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid ""
|
||||
"An error occurred while setting the password for the MariaDB administrative "
|
||||
"user. This may have happened because the account already has a password, or "
|
||||
|
@ -160,7 +160,7 @@ msgstr ""
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "You should check the account's password after the package installation."
|
||||
msgstr ""
|
||||
"Sie sollten das Passwort des administrativen Benutzers nach der "
|
||||
|
@ -168,13 +168,13 @@ msgstr ""
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Please read the /usr/share/doc/mariadb-server-5.1/README.Debian file for "
|
||||
#| "more information."
|
||||
msgid ""
|
||||
"Please read the /usr/share/doc/mariadb-server-10.2/README.Debian file for "
|
||||
"Please read the /usr/share/doc/mariadb-server-10.3/README.Debian file for "
|
||||
"more information."
|
||||
msgstr ""
|
||||
"Für weitere Informationen lesen Sie /usr/share/doc/mariadb-server-5.1/README."
|
||||
|
@ -182,13 +182,13 @@ msgstr ""
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "Password input error"
|
||||
msgstr "Passwort-Eingabefehler"
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "The two passwords you entered were not the same. Please try again."
|
||||
msgstr ""
|
||||
"Die beiden von Ihnen eingegebenen Passwörter sind nicht identisch. Bitte "
|
||||
|
|
50
debian/po/es.po
vendored
50
debian/po/es.po
vendored
|
@ -40,7 +40,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: mysql-dfsg-5.1_5.0.24-3\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.2@packages.debian.org\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.3@packages.debian.org\n"
|
||||
"POT-Creation-Date: 2016-10-08 01:26+0300\n"
|
||||
"PO-Revision-Date: 2007-05-28 22:21+0200\n"
|
||||
"Last-Translator: Javier Fernández-Sanguino <jfs@debian.org>\n"
|
||||
|
@ -52,13 +52,13 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid "The old data directory will be saved at new location"
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"A file named /var/lib/mysql/debian-*.flag exists on this system. The number "
|
||||
"indicates a database binary format version that cannot automatically be "
|
||||
|
@ -67,7 +67,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Therefore the previous data directory will be renamed to /var/lib/mysql-* "
|
||||
"and a new data directory will be initialized at /var/lib/mysql."
|
||||
|
@ -75,20 +75,20 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Please manually export/import your data (e.g. with mysqldump) if needed."
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid "Important note for NIS/YP users"
|
||||
msgstr "Nota importante para los usuarios de NIS/YP"
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"Using MariaDB under NIS/YP requires a mysql user account to be added on the "
|
||||
"local system with:"
|
||||
|
@ -96,7 +96,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "You should also check the permissions and the owner of the /var/lib/mysql "
|
||||
|
@ -110,13 +110,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid "Remove all MariaDB databases?"
|
||||
msgstr "¿Desea eliminar todas las bases de datos MariaDB?"
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"The /var/lib/mysql directory which contains the MariaDB databases is about "
|
||||
"to be removed."
|
||||
|
@ -126,7 +126,7 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"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, "
|
||||
|
@ -138,13 +138,13 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid "New password for the MariaDB \"root\" user:"
|
||||
msgstr "Nueva contraseña para el usuario «root» de MariaDB:"
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid ""
|
||||
"While not mandatory, it is highly recommended that you set a password for "
|
||||
"the MariaDB administrative \"root\" user."
|
||||
|
@ -154,7 +154,7 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
#, fuzzy
|
||||
#| 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."
|
||||
|
@ -162,7 +162,7 @@ msgstr "No se modificará la contraseña si deja el espacio en blanco."
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:6001
|
||||
#: ../mariadb-server-10.3.templates:6001
|
||||
#, fuzzy
|
||||
#| msgid "New password for the MySQL \"root\" user:"
|
||||
msgid "Repeat password for the MariaDB \"root\" user:"
|
||||
|
@ -170,13 +170,13 @@ msgstr "Nueva contraseña para el usuario «root» de MariaDB:"
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "Unable to set password for the MariaDB \"root\" user"
|
||||
msgstr "No se pudo fijar la contraseña para el usuario «root» de MariaDB"
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid ""
|
||||
"An error occurred while setting the password for the MariaDB administrative "
|
||||
"user. This may have happened because the account already has a password, or "
|
||||
|
@ -189,7 +189,7 @@ msgstr ""
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "You should check the account's password after the package installation."
|
||||
msgstr ""
|
||||
"Debería comprobar la contraseña de la cuenta después de la instalación del "
|
||||
|
@ -197,27 +197,27 @@ msgstr ""
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Please read the /usr/share/doc/mysql-server-5.1/README.Debian file for "
|
||||
#| "more information."
|
||||
msgid ""
|
||||
"Please read the /usr/share/doc/mariadb-server-10.2/README.Debian file for "
|
||||
"Please read the /usr/share/doc/mariadb-server-10.3/README.Debian file for "
|
||||
"more information."
|
||||
msgstr ""
|
||||
"Consulte /usr/share/doc/mariadb-server-10.2/README.Debian para más "
|
||||
"Consulte /usr/share/doc/mariadb-server-10.3/README.Debian para más "
|
||||
"información."
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "Password input error"
|
||||
msgstr ""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "The two passwords you entered were not the same. Please try again."
|
||||
msgstr ""
|
||||
|
||||
|
@ -354,13 +354,13 @@ msgstr ""
|
|||
#~ msgid ""
|
||||
#~ "MySQL will only install if you have a non-numeric hostname that is "
|
||||
#~ "resolvable via the /etc/hosts file. E.g. if the \"hostname\" command "
|
||||
#~ "returns \"myhostname\" then there must be a line like \"10.2.0.1 "
|
||||
#~ "returns \"myhostname\" then there must be a line like \"10.3.0.1 "
|
||||
#~ "myhostname\"."
|
||||
#~ msgstr ""
|
||||
#~ "Sólo se instalará MySQL si tiene un nombre de equipo que no sea una "
|
||||
#~ "dirección IP y pueda resolverse a través del archivo /etc/hosts. Por "
|
||||
#~ "ejemplo, si la orden «hostname» devuelve «MiNombreEquipo» entonces deberá "
|
||||
#~ "existir una línea «10.2.0.1 MiNombreEquipo» en dicho archivo."
|
||||
#~ "existir una línea «10.3.0.1 MiNombreEquipo» en dicho archivo."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "A new mysql user \"debian-sys-maint\" will be created. This mysql account "
|
||||
|
|
48
debian/po/eu.po
vendored
48
debian/po/eu.po
vendored
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: eu\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.2@packages.debian.org\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.3@packages.debian.org\n"
|
||||
"POT-Creation-Date: 2016-10-08 01:26+0300\n"
|
||||
"PO-Revision-Date: 2009-07-29 11:59+0200\n"
|
||||
"Last-Translator: Piarres Beobide <pi@beobide.net>\n"
|
||||
|
@ -20,13 +20,13 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid "The old data directory will be saved at new location"
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"A file named /var/lib/mysql/debian-*.flag exists on this system. The number "
|
||||
"indicates a database binary format version that cannot automatically be "
|
||||
|
@ -35,7 +35,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Therefore the previous data directory will be renamed to /var/lib/mysql-* "
|
||||
"and a new data directory will be initialized at /var/lib/mysql."
|
||||
|
@ -43,20 +43,20 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Please manually export/import your data (e.g. with mysqldump) if needed."
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid "Important note for NIS/YP users"
|
||||
msgstr "NIS/YP erabiltzaileentzat ohar garrantzitsua"
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"Using MariaDB under NIS/YP requires a mysql user account to be added on the "
|
||||
"local system with:"
|
||||
|
@ -64,7 +64,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "You should also check the permissions and the owner of the /var/lib/mysql "
|
||||
|
@ -78,13 +78,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid "Remove all MariaDB databases?"
|
||||
msgstr "Ezabatu MariaDB datubase guztiak?"
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"The /var/lib/mysql directory which contains the MariaDB databases is about "
|
||||
"to be removed."
|
||||
|
@ -93,7 +93,7 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"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, "
|
||||
|
@ -105,13 +105,13 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid "New password for the MariaDB \"root\" user:"
|
||||
msgstr "MariaDB \"root\" erabiltzailearen pasahitz berria:"
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid ""
|
||||
"While not mandatory, it is highly recommended that you set a password for "
|
||||
"the MariaDB administrative \"root\" user."
|
||||
|
@ -121,7 +121,7 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
#, fuzzy
|
||||
#| 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."
|
||||
|
@ -129,19 +129,19 @@ msgstr "Eremua hau zurian utziaz gero ez da pasahitza aldatuko."
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:6001
|
||||
#: ../mariadb-server-10.3.templates:6001
|
||||
msgid "Repeat password for the MariaDB \"root\" user:"
|
||||
msgstr "Errepikatu MariaDB \"root\" erabiltzailearen pasahitza:"
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "Unable to set password for the MariaDB \"root\" user"
|
||||
msgstr "Ezin da MariaDB \"root\" erabiltzailearen pasahitza ezarri"
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid ""
|
||||
"An error occurred while setting the password for the MariaDB administrative "
|
||||
"user. This may have happened because the account already has a password, or "
|
||||
|
@ -153,34 +153,34 @@ msgstr ""
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "You should check the account's password after the package installation."
|
||||
msgstr ""
|
||||
"Kontuaren pasahitza egiaztatu beharko zenuke paketea instalatu aurretik."
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Please read the /usr/share/doc/mariadb-server-10.2/README.Debian file for "
|
||||
#| "Please read the /usr/share/doc/mariadb-server-10.3/README.Debian file for "
|
||||
#| "more information."
|
||||
msgid ""
|
||||
"Please read the /usr/share/doc/mariadb-server-10.2/README.Debian file for "
|
||||
"Please read the /usr/share/doc/mariadb-server-10.3/README.Debian file for "
|
||||
"more information."
|
||||
msgstr ""
|
||||
"Mesedez irakurri /usr/share/doc/mariadb-server-10.2/README.Debian fitxategia "
|
||||
"Mesedez irakurri /usr/share/doc/mariadb-server-10.3/README.Debian fitxategia "
|
||||
"xehetasun gehiagorako."
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "Password input error"
|
||||
msgstr "Pasahitz sarrera errorea"
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "The two passwords you entered were not the same. Please try again."
|
||||
msgstr "Idatzi dituzun bi pasahitzak ez dira berdina. Mesedez saiatu berriz."
|
||||
|
||||
|
|
48
debian/po/fr.po
vendored
48
debian/po/fr.po
vendored
|
@ -7,7 +7,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: fr\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.2@packages.debian.org\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.3@packages.debian.org\n"
|
||||
"POT-Creation-Date: 2016-10-08 01:26+0300\n"
|
||||
"PO-Revision-Date: 2009-08-08 14:56+0200\n"
|
||||
"Last-Translator: Christian Perrier <bubulle@debian.org>\n"
|
||||
|
@ -22,13 +22,13 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid "The old data directory will be saved at new location"
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"A file named /var/lib/mysql/debian-*.flag exists on this system. The number "
|
||||
"indicates a database binary format version that cannot automatically be "
|
||||
|
@ -37,7 +37,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Therefore the previous data directory will be renamed to /var/lib/mysql-* "
|
||||
"and a new data directory will be initialized at /var/lib/mysql."
|
||||
|
@ -45,20 +45,20 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Please manually export/import your data (e.g. with mysqldump) if needed."
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid "Important note for NIS/YP users"
|
||||
msgstr "Note importante pour les utilisateurs NIS/YP"
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"Using MariaDB under NIS/YP requires a mysql user account to be added on the "
|
||||
"local system with:"
|
||||
|
@ -68,7 +68,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"You should also check the permissions and ownership of the /var/lib/mysql "
|
||||
"directory:"
|
||||
|
@ -78,13 +78,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid "Remove all MariaDB databases?"
|
||||
msgstr "Faut-il supprimer toutes les bases de données MariaDB ?"
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"The /var/lib/mysql directory which contains the MariaDB databases is about "
|
||||
"to be removed."
|
||||
|
@ -94,7 +94,7 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"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, "
|
||||
|
@ -105,13 +105,13 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid "New password for the MariaDB \"root\" user:"
|
||||
msgstr "Nouveau mot de passe du superutilisateur de MariaDB :"
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid ""
|
||||
"While not mandatory, it is highly recommended that you set a password for "
|
||||
"the MariaDB administrative \"root\" user."
|
||||
|
@ -121,26 +121,26 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
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é."
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:6001
|
||||
#: ../mariadb-server-10.3.templates:6001
|
||||
msgid "Repeat password for the MariaDB \"root\" user:"
|
||||
msgstr "Confirmation du mot de passe du superutilisateur de MariaDB :"
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "Unable to set password for the MariaDB \"root\" user"
|
||||
msgstr ""
|
||||
"Impossible de changer le mot de passe de l'utilisateur « root » de MariaDB"
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid ""
|
||||
"An error occurred while setting the password for the MariaDB administrative "
|
||||
"user. This may have happened because the account already has a password, or "
|
||||
|
@ -152,7 +152,7 @@ msgstr ""
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "You should check the account's password after the package installation."
|
||||
msgstr ""
|
||||
"Vous devriez vérifier le mot de passe de ce compte après l'installation du "
|
||||
|
@ -160,27 +160,27 @@ msgstr ""
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Please read the /usr/share/doc/mariadb-server-10.2/README.Debian file for "
|
||||
#| "Please read the /usr/share/doc/mariadb-server-10.3/README.Debian file for "
|
||||
#| "more information."
|
||||
msgid ""
|
||||
"Please read the /usr/share/doc/mariadb-server-10.2/README.Debian file for "
|
||||
"Please read the /usr/share/doc/mariadb-server-10.3/README.Debian file for "
|
||||
"more information."
|
||||
msgstr ""
|
||||
"Veuillez consulter le fichier /usr/share/doc/mysql-server-10.2/README.Debian "
|
||||
"Veuillez consulter le fichier /usr/share/doc/mysql-server-10.3/README.Debian "
|
||||
"pour plus d'informations."
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "Password input error"
|
||||
msgstr "Erreur de saisie du mot de passe"
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "The two passwords you entered were not the same. Please try again."
|
||||
msgstr ""
|
||||
"Le mot de passe et sa confirmation ne sont pas identiques. Veuillez "
|
||||
|
|
46
debian/po/gl.po
vendored
46
debian/po/gl.po
vendored
|
@ -5,7 +5,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: mysql-dfsg-5.1\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.2@packages.debian.org\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.3@packages.debian.org\n"
|
||||
"POT-Creation-Date: 2016-10-08 01:26+0300\n"
|
||||
"PO-Revision-Date: 2007-04-20 09:44+0200\n"
|
||||
"Last-Translator: Jacobo Tarrio <jtarrio@debian.org>\n"
|
||||
|
@ -17,13 +17,13 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid "The old data directory will be saved at new location"
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"A file named /var/lib/mysql/debian-*.flag exists on this system. The number "
|
||||
"indicates a database binary format version that cannot automatically be "
|
||||
|
@ -32,7 +32,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Therefore the previous data directory will be renamed to /var/lib/mysql-* "
|
||||
"and a new data directory will be initialized at /var/lib/mysql."
|
||||
|
@ -40,20 +40,20 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Please manually export/import your data (e.g. with mysqldump) if needed."
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid "Important note for NIS/YP users"
|
||||
msgstr "Nota importante para os usuarios de NIS/YP"
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"Using MariaDB under NIS/YP requires a mysql user account to be added on the "
|
||||
"local system with:"
|
||||
|
@ -61,7 +61,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "You should also check the permissions and the owner of the /var/lib/mysql "
|
||||
|
@ -75,13 +75,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid "Remove all MariaDB databases?"
|
||||
msgstr "¿Eliminar tódalas bases de datos de MariaDB?"
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"The /var/lib/mysql directory which contains the MariaDB databases is about "
|
||||
"to be removed."
|
||||
|
@ -91,7 +91,7 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"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, "
|
||||
|
@ -103,13 +103,13 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid "New password for the MariaDB \"root\" user:"
|
||||
msgstr "Novo contrasinal para o usuario \"root\" de MariaDB:"
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid ""
|
||||
"While not mandatory, it is highly recommended that you set a password for "
|
||||
"the MariaDB administrative \"root\" user."
|
||||
|
@ -119,7 +119,7 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
#, fuzzy
|
||||
#| 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."
|
||||
|
@ -127,7 +127,7 @@ msgstr "Se deixa o campo en branco, non se ha cambiar o contrasinal."
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:6001
|
||||
#: ../mariadb-server-10.3.templates:6001
|
||||
#, fuzzy
|
||||
#| msgid "New password for the MySQL \"root\" user:"
|
||||
msgid "Repeat password for the MariaDB \"root\" user:"
|
||||
|
@ -135,13 +135,13 @@ msgstr "Novo contrasinal para o usuario \"root\" de MariaDB:"
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "Unable to set password for the MariaDB \"root\" user"
|
||||
msgstr "Non se puido establecer o contrasinal do usuario \"root\" de MariaDB"
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid ""
|
||||
"An error occurred while setting the password for the MariaDB administrative "
|
||||
"user. This may have happened because the account already has a password, or "
|
||||
|
@ -153,7 +153,7 @@ msgstr ""
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "You should check the account's password after tha package installation."
|
||||
|
@ -162,27 +162,27 @@ msgstr "Debería comprobar o contrasinal da conta trala instalación do paquete.
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Please read the /usr/share/doc/mysql-server-5.1/README.Debian file for "
|
||||
#| "more information."
|
||||
msgid ""
|
||||
"Please read the /usr/share/doc/mariadb-server-10.2/README.Debian file for "
|
||||
"Please read the /usr/share/doc/mariadb-server-10.3/README.Debian file for "
|
||||
"more information."
|
||||
msgstr ""
|
||||
"Consulte o ficheiro /usr/share/doc/mariadb-server-10.2/README.Debian para "
|
||||
"Consulte o ficheiro /usr/share/doc/mariadb-server-10.3/README.Debian para "
|
||||
"máis información."
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "Password input error"
|
||||
msgstr ""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "The two passwords you entered were not the same. Please try again."
|
||||
msgstr ""
|
||||
|
||||
|
|
48
debian/po/it.po
vendored
48
debian/po/it.po
vendored
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: mysql-dfsg-5.1 5.1.37 italian debconf templates\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.2@packages.debian.org\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.3@packages.debian.org\n"
|
||||
"POT-Creation-Date: 2016-10-08 01:26+0300\n"
|
||||
"PO-Revision-Date: 2009-08-08 11:03+0200\n"
|
||||
"Last-Translator: Luca Monducci <luca.mo@tiscali.it>\n"
|
||||
|
@ -18,13 +18,13 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid "The old data directory will be saved at new location"
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"A file named /var/lib/mysql/debian-*.flag exists on this system. The number "
|
||||
"indicates a database binary format version that cannot automatically be "
|
||||
|
@ -33,7 +33,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Therefore the previous data directory will be renamed to /var/lib/mysql-* "
|
||||
"and a new data directory will be initialized at /var/lib/mysql."
|
||||
|
@ -41,20 +41,20 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Please manually export/import your data (e.g. with mysqldump) if needed."
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid "Important note for NIS/YP users"
|
||||
msgstr "Nota importante per gli utenti NIS/YP"
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"Using MariaDB under NIS/YP requires a mysql user account to be added on the "
|
||||
"local system with:"
|
||||
|
@ -64,7 +64,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"You should also check the permissions and ownership of the /var/lib/mysql "
|
||||
"directory:"
|
||||
|
@ -74,13 +74,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid "Remove all MariaDB databases?"
|
||||
msgstr "Eliminare tutti i database MariaDB?"
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"The /var/lib/mysql directory which contains the MariaDB databases is about "
|
||||
"to be removed."
|
||||
|
@ -90,7 +90,7 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"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, "
|
||||
|
@ -102,13 +102,13 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid "New password for the MariaDB \"root\" user:"
|
||||
msgstr "Nuova password per l'utente «root» di MariaDB:"
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid ""
|
||||
"While not mandatory, it is highly recommended that you set a password for "
|
||||
"the MariaDB administrative \"root\" user."
|
||||
|
@ -118,25 +118,25 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid "If this field is left blank, the password will not be changed."
|
||||
msgstr "Se questo campo è lasciato vuoto, la password non viene cambiata."
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:6001
|
||||
#: ../mariadb-server-10.3.templates:6001
|
||||
msgid "Repeat password for the MariaDB \"root\" user:"
|
||||
msgstr "Ripetere la password per l'utente «root» di MariaDB:"
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "Unable to set password for the MariaDB \"root\" user"
|
||||
msgstr "Impossibile impostare la password per l'utente «root» di MariaDB"
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid ""
|
||||
"An error occurred while setting the password for the MariaDB administrative "
|
||||
"user. This may have happened because the account already has a password, or "
|
||||
|
@ -149,34 +149,34 @@ msgstr ""
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "You should check the account's password after the package installation."
|
||||
msgstr ""
|
||||
"Al termine dell'installazione si deve verificare la password dell'account."
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Please read the /usr/share/doc/mariadb-server-10.2/README.Debian file for "
|
||||
#| "Please read the /usr/share/doc/mariadb-server-10.3/README.Debian file for "
|
||||
#| "more information."
|
||||
msgid ""
|
||||
"Please read the /usr/share/doc/mariadb-server-10.2/README.Debian file for "
|
||||
"Please read the /usr/share/doc/mariadb-server-10.3/README.Debian file for "
|
||||
"more information."
|
||||
msgstr ""
|
||||
"Per maggiori informazioni si consulti il file /usr/share/doc/mariadb-"
|
||||
"server-10.2/README.Debian."
|
||||
"server-10.3/README.Debian."
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "Password input error"
|
||||
msgstr "Errore di inserimento della password"
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "The two passwords you entered were not the same. Please try again."
|
||||
msgstr "Le due password inserite sono diverse. Riprovare."
|
||||
|
||||
|
|
48
debian/po/ja.po
vendored
48
debian/po/ja.po
vendored
|
@ -15,7 +15,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: mysql-dfsg-5.1 5.1.37-1\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.2@packages.debian.org\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.3@packages.debian.org\n"
|
||||
"POT-Creation-Date: 2016-10-08 01:26+0300\n"
|
||||
"PO-Revision-Date: 2009-09-01 08:25+0900\n"
|
||||
"Last-Translator: Hideki Yamane (Debian-JP) <henrich@debian.or.jp>\n"
|
||||
|
@ -27,13 +27,13 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid "The old data directory will be saved at new location"
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"A file named /var/lib/mysql/debian-*.flag exists on this system. The number "
|
||||
"indicates a database binary format version that cannot automatically be "
|
||||
|
@ -42,7 +42,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Therefore the previous data directory will be renamed to /var/lib/mysql-* "
|
||||
"and a new data directory will be initialized at /var/lib/mysql."
|
||||
|
@ -50,20 +50,20 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Please manually export/import your data (e.g. with mysqldump) if needed."
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid "Important note for NIS/YP users"
|
||||
msgstr "NIS/YP ユーザへの重要な注意"
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"Using MariaDB under NIS/YP requires a mysql user account to be added on the "
|
||||
"local system with:"
|
||||
|
@ -73,7 +73,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"You should also check the permissions and ownership of the /var/lib/mysql "
|
||||
"directory:"
|
||||
|
@ -81,13 +81,13 @@ msgstr "/var/lib/mysql の所有者権限をチェックする必要もありま
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid "Remove all MariaDB databases?"
|
||||
msgstr "すべての MariaDB データベースを削除しますか?"
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"The /var/lib/mysql directory which contains the MariaDB databases is about "
|
||||
"to be removed."
|
||||
|
@ -97,7 +97,7 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"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, "
|
||||
|
@ -109,13 +109,13 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid "New password for the MariaDB \"root\" user:"
|
||||
msgstr "MariaDB の \"root\" ユーザに対する新しいパスワード:"
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid ""
|
||||
"While not mandatory, it is highly recommended that you set a password for "
|
||||
"the MariaDB administrative \"root\" user."
|
||||
|
@ -125,25 +125,25 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid "If this field is left blank, the password will not be changed."
|
||||
msgstr "この値を空のままにしておいた場合は、パスワードは変更されません。"
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:6001
|
||||
#: ../mariadb-server-10.3.templates:6001
|
||||
msgid "Repeat password for the MariaDB \"root\" user:"
|
||||
msgstr "MariaDB の \"root\" ユーザに対する新しいパスワード:"
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "Unable to set password for the MariaDB \"root\" user"
|
||||
msgstr "MariaDB の \"root\" ユーザのパスワードを設定できません"
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid ""
|
||||
"An error occurred while setting the password for the MariaDB administrative "
|
||||
"user. This may have happened because the account already has a password, or "
|
||||
|
@ -155,33 +155,33 @@ msgstr ""
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "You should check the account's password after the package installation."
|
||||
msgstr ""
|
||||
"パッケージのインストール後、アカウントのパスワードを確認する必要があります。"
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Please read the /usr/share/doc/mariadb-server-10.2/README.Debian file for "
|
||||
#| "Please read the /usr/share/doc/mariadb-server-10.3/README.Debian file for "
|
||||
#| "more information."
|
||||
msgid ""
|
||||
"Please read the /usr/share/doc/mariadb-server-10.2/README.Debian file for "
|
||||
"Please read the /usr/share/doc/mariadb-server-10.3/README.Debian file for "
|
||||
"more information."
|
||||
msgstr ""
|
||||
"詳細は /usr/share/doc/mariadb-server-10.2/README.Debian を参照してください。"
|
||||
"詳細は /usr/share/doc/mariadb-server-10.3/README.Debian を参照してください。"
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "Password input error"
|
||||
msgstr "パスワード入力エラー"
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "The two passwords you entered were not the same. Please try again."
|
||||
msgstr "入力された二つのパスワードが一致しません。再入力してください。"
|
||||
|
||||
|
|
44
debian/po/nb.po
vendored
44
debian/po/nb.po
vendored
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: mysql_nb\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.2@packages.debian.org\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.3@packages.debian.org\n"
|
||||
"POT-Creation-Date: 2016-10-08 01:26+0300\n"
|
||||
"PO-Revision-Date: 2007-02-18 12:13+0100\n"
|
||||
"Last-Translator: Bjørn Steensrud <bjornst@powertech.no>\n"
|
||||
|
@ -19,13 +19,13 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid "The old data directory will be saved at new location"
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"A file named /var/lib/mysql/debian-*.flag exists on this system. The number "
|
||||
"indicates a database binary format version that cannot automatically be "
|
||||
|
@ -34,7 +34,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Therefore the previous data directory will be renamed to /var/lib/mysql-* "
|
||||
"and a new data directory will be initialized at /var/lib/mysql."
|
||||
|
@ -42,14 +42,14 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Please manually export/import your data (e.g. with mysqldump) if needed."
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
#, fuzzy
|
||||
#| msgid "Important note for NIS/YP users!"
|
||||
msgid "Important note for NIS/YP users"
|
||||
|
@ -57,7 +57,7 @@ msgstr "Viktig merknad for NIS/YP-brukere!"
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"Using MariaDB under NIS/YP requires a mysql user account to be added on the "
|
||||
"local system with:"
|
||||
|
@ -65,7 +65,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"You should also check the permissions and ownership of the /var/lib/mysql "
|
||||
"directory:"
|
||||
|
@ -73,13 +73,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid "Remove all MariaDB databases?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"The /var/lib/mysql directory which contains the MariaDB databases is about "
|
||||
"to be removed."
|
||||
|
@ -87,7 +87,7 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "The script is about to remove the data directory /var/lib/mysql. If it is "
|
||||
|
@ -104,7 +104,7 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
#, fuzzy
|
||||
#| msgid "New password for MySQL \"root\" user:"
|
||||
msgid "New password for the MariaDB \"root\" user:"
|
||||
|
@ -112,7 +112,7 @@ msgstr "Nytt passord for MariaDBs «root»-bruker:"
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "It is highly recommended that you set a password for the MySQL "
|
||||
|
@ -126,13 +126,13 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid "If this field is left blank, the password will not be changed."
|
||||
msgstr ""
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:6001
|
||||
#: ../mariadb-server-10.3.templates:6001
|
||||
#, fuzzy
|
||||
#| msgid "New password for MySQL \"root\" user:"
|
||||
msgid "Repeat password for the MariaDB \"root\" user:"
|
||||
|
@ -140,7 +140,7 @@ msgstr "Nytt passord for MariaDBs «root»-bruker:"
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
#, fuzzy
|
||||
#| msgid "Unable to set password for MySQL \"root\" user"
|
||||
msgid "Unable to set password for the MariaDB \"root\" user"
|
||||
|
@ -148,7 +148,7 @@ msgstr "Klarer ikke angi passord for MariaDBs «root»-bruker"
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "It seems an error occurred while setting the password for the MySQL "
|
||||
|
@ -167,27 +167,27 @@ msgstr ""
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "You should check the account's password after the package installation."
|
||||
msgstr ""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid ""
|
||||
"Please read the /usr/share/doc/mariadb-server-10.2/README.Debian file for "
|
||||
"Please read the /usr/share/doc/mariadb-server-10.3/README.Debian file for "
|
||||
"more information."
|
||||
msgstr ""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "Password input error"
|
||||
msgstr ""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "The two passwords you entered were not the same. Please try again."
|
||||
msgstr ""
|
||||
|
||||
|
|
46
debian/po/nl.po
vendored
46
debian/po/nl.po
vendored
|
@ -6,9 +6,9 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: mysql-dfsg-5.1 5.0.30-1\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.2@packages.debian.org\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.3@packages.debian.org\n"
|
||||
"POT-Creation-Date: 2016-10-08 01:26+0300\n"
|
||||
"PO-Revision-Date: 2006-02-19 10:20+0100\n"
|
||||
"PO-Revision-Date: 2006-02-19 10.30+0100\n"
|
||||
"Last-Translator: Thijs Kinkhorst <thijs@debian.org>\n"
|
||||
"Language-Team: Debian-Dutch <debian-l10n-dutch@lists.debian.org>\n"
|
||||
"Language: \n"
|
||||
|
@ -18,13 +18,13 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid "The old data directory will be saved at new location"
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"A file named /var/lib/mysql/debian-*.flag exists on this system. The number "
|
||||
"indicates a database binary format version that cannot automatically be "
|
||||
|
@ -33,7 +33,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Therefore the previous data directory will be renamed to /var/lib/mysql-* "
|
||||
"and a new data directory will be initialized at /var/lib/mysql."
|
||||
|
@ -41,14 +41,14 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Please manually export/import your data (e.g. with mysqldump) if needed."
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
#, fuzzy
|
||||
#| msgid "Important note for NIS/YP users!"
|
||||
msgid "Important note for NIS/YP users"
|
||||
|
@ -56,7 +56,7 @@ msgstr "Belangrijke opmerking voor gebruikers van NIS/YP!"
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"Using MariaDB under NIS/YP requires a mysql user account to be added on the "
|
||||
"local system with:"
|
||||
|
@ -64,7 +64,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"You should also check the permissions and ownership of the /var/lib/mysql "
|
||||
"directory:"
|
||||
|
@ -72,13 +72,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid "Remove all MariaDB databases?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"The /var/lib/mysql directory which contains the MariaDB databases is about "
|
||||
"to be removed."
|
||||
|
@ -86,7 +86,7 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "The script is about to remove the data directory /var/lib/mysql. If it is "
|
||||
|
@ -104,7 +104,7 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
#, fuzzy
|
||||
#| msgid "New password for MySQL \"root\" user:"
|
||||
msgid "New password for the MariaDB \"root\" user:"
|
||||
|
@ -112,7 +112,7 @@ msgstr "Nieuw wachtwoord voor de MariaDB \"root\"-gebruiker:"
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "It is highly recommended that you set a password for the MySQL "
|
||||
|
@ -126,13 +126,13 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid "If this field is left blank, the password will not be changed."
|
||||
msgstr ""
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:6001
|
||||
#: ../mariadb-server-10.3.templates:6001
|
||||
#, fuzzy
|
||||
#| msgid "New password for MySQL \"root\" user:"
|
||||
msgid "Repeat password for the MariaDB \"root\" user:"
|
||||
|
@ -140,7 +140,7 @@ msgstr "Nieuw wachtwoord voor de MariaDB \"root\"-gebruiker:"
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
#, fuzzy
|
||||
#| msgid "Unable to set password for MySQL \"root\" user"
|
||||
msgid "Unable to set password for the MariaDB \"root\" user"
|
||||
|
@ -148,7 +148,7 @@ msgstr "Kan het wachtwoord voor de MariaDB \"root\"-gebruiker niet instellen"
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "It seems an error occurred while setting the password for the MySQL "
|
||||
|
@ -167,27 +167,27 @@ msgstr ""
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "You should check the account's password after the package installation."
|
||||
msgstr ""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid ""
|
||||
"Please read the /usr/share/doc/mariadb-server-10.2/README.Debian file for "
|
||||
"Please read the /usr/share/doc/mariadb-server-10.3/README.Debian file for "
|
||||
"more information."
|
||||
msgstr ""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "Password input error"
|
||||
msgstr ""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "The two passwords you entered were not the same. Please try again."
|
||||
msgstr ""
|
||||
|
||||
|
|
46
debian/po/pt.po
vendored
46
debian/po/pt.po
vendored
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: mysql-dfsg-5.1\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.2@packages.debian.org\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.3@packages.debian.org\n"
|
||||
"POT-Creation-Date: 2016-10-08 01:26+0300\n"
|
||||
"PO-Revision-Date: 2007-05-05 21:01+0100\n"
|
||||
"Last-Translator: Miguel Figueiredo <elmig@debianpt.org>\n"
|
||||
|
@ -18,13 +18,13 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid "The old data directory will be saved at new location"
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"A file named /var/lib/mysql/debian-*.flag exists on this system. The number "
|
||||
"indicates a database binary format version that cannot automatically be "
|
||||
|
@ -33,7 +33,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Therefore the previous data directory will be renamed to /var/lib/mysql-* "
|
||||
"and a new data directory will be initialized at /var/lib/mysql."
|
||||
|
@ -41,20 +41,20 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Please manually export/import your data (e.g. with mysqldump) if needed."
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid "Important note for NIS/YP users"
|
||||
msgstr "Nota importante para utilizadores de NIS/YP"
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"Using MariaDB under NIS/YP requires a mysql user account to be added on the "
|
||||
"local system with:"
|
||||
|
@ -62,7 +62,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "You should also check the permissions and the owner of the /var/lib/mysql "
|
||||
|
@ -75,13 +75,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid "Remove all MariaDB databases?"
|
||||
msgstr "Remover todas as bases de dados MariaDB?"
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"The /var/lib/mysql directory which contains the MariaDB databases is about "
|
||||
"to be removed."
|
||||
|
@ -91,7 +91,7 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"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, "
|
||||
|
@ -103,13 +103,13 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid "New password for the MariaDB \"root\" user:"
|
||||
msgstr "Nova palavra-passe para o utilizador \"root\" do MariaDB:"
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid ""
|
||||
"While not mandatory, it is highly recommended that you set a password for "
|
||||
"the MariaDB administrative \"root\" user."
|
||||
|
@ -119,7 +119,7 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
#, fuzzy
|
||||
#| 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."
|
||||
|
@ -128,7 +128,7 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:6001
|
||||
#: ../mariadb-server-10.3.templates:6001
|
||||
#, fuzzy
|
||||
#| msgid "New password for the MySQL \"root\" user:"
|
||||
msgid "Repeat password for the MariaDB \"root\" user:"
|
||||
|
@ -136,7 +136,7 @@ msgstr "Nova palavra-passe para o utilizador \"root\" do MariaDB:"
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "Unable to set password for the MariaDB \"root\" user"
|
||||
msgstr ""
|
||||
"Não foi possível definir a palavra-passe para o utilizador \"root\" do "
|
||||
|
@ -144,7 +144,7 @@ msgstr ""
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid ""
|
||||
"An error occurred while setting the password for the MariaDB administrative "
|
||||
"user. This may have happened because the account already has a password, or "
|
||||
|
@ -157,7 +157,7 @@ msgstr ""
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "You should check the account's password after tha package installation."
|
||||
|
@ -167,27 +167,27 @@ msgstr ""
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Please read the /usr/share/doc/mysql-server-5.1/README.Debian file for "
|
||||
#| "more information."
|
||||
msgid ""
|
||||
"Please read the /usr/share/doc/mariadb-server-10.2/README.Debian file for "
|
||||
"Please read the /usr/share/doc/mariadb-server-10.3/README.Debian file for "
|
||||
"more information."
|
||||
msgstr ""
|
||||
"Para mais informação por favor leia o ficheiro /usr/share/doc/mariadb-"
|
||||
"server-10.2/README.Debian."
|
||||
"server-10.3/README.Debian."
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "Password input error"
|
||||
msgstr ""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "The two passwords you entered were not the same. Please try again."
|
||||
msgstr ""
|
||||
|
||||
|
|
50
debian/po/pt_BR.po
vendored
50
debian/po/pt_BR.po
vendored
|
@ -8,7 +8,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: mysql-dfsg-5.1\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.2@packages.debian.org\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.3@packages.debian.org\n"
|
||||
"POT-Creation-Date: 2016-10-08 01:26+0300\n"
|
||||
"PO-Revision-Date: 2007-04-21 15:59-0300\n"
|
||||
"Last-Translator: André Luís Lopes <andrelop@debian.org>\n"
|
||||
|
@ -21,13 +21,13 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid "The old data directory will be saved at new location"
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"A file named /var/lib/mysql/debian-*.flag exists on this system. The number "
|
||||
"indicates a database binary format version that cannot automatically be "
|
||||
|
@ -36,7 +36,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Therefore the previous data directory will be renamed to /var/lib/mysql-* "
|
||||
"and a new data directory will be initialized at /var/lib/mysql."
|
||||
|
@ -44,20 +44,20 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Please manually export/import your data (e.g. with mysqldump) if needed."
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid "Important note for NIS/YP users"
|
||||
msgstr "Aviso importante para usuários NIS/YP"
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"Using MariaDB under NIS/YP requires a mysql user account to be added on the "
|
||||
"local system with:"
|
||||
|
@ -65,7 +65,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "You should also check the permissions and the owner of the /var/lib/mysql "
|
||||
|
@ -78,13 +78,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid "Remove all MariaDB databases?"
|
||||
msgstr "Remover todas as bases de dados do MariaDB?"
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"The /var/lib/mysql directory which contains the MariaDB databases is about "
|
||||
"to be removed."
|
||||
|
@ -94,7 +94,7 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"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, "
|
||||
|
@ -106,13 +106,13 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid "New password for the MariaDB \"root\" user:"
|
||||
msgstr "Nova senha para o usuário \"root\" do MariaDB:"
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid ""
|
||||
"While not mandatory, it is highly recommended that you set a password for "
|
||||
"the MariaDB administrative \"root\" user."
|
||||
|
@ -122,7 +122,7 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
#, fuzzy
|
||||
#| 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."
|
||||
|
@ -130,7 +130,7 @@ msgstr "Caso este campo seja deixado em branco, a senha não sera mudada."
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:6001
|
||||
#: ../mariadb-server-10.3.templates:6001
|
||||
#, fuzzy
|
||||
#| msgid "New password for the MySQL \"root\" user:"
|
||||
msgid "Repeat password for the MariaDB \"root\" user:"
|
||||
|
@ -138,13 +138,13 @@ msgstr "Nova senha para o usuário \"root\" do MariaDB:"
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "Unable to set password for the MariaDB \"root\" user"
|
||||
msgstr "Impossível definir senha para o usuário \"root\" do MariaDB"
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid ""
|
||||
"An error occurred while setting the password for the MariaDB administrative "
|
||||
"user. This may have happened because the account already has a password, or "
|
||||
|
@ -157,7 +157,7 @@ msgstr ""
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "You should check the account's password after tha package installation."
|
||||
|
@ -166,27 +166,27 @@ msgstr "Você deverá checar a senha dessa conta após a instalação deste paco
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Please read the /usr/share/doc/mysql-server-5.1/README.Debian file for "
|
||||
#| "more information."
|
||||
msgid ""
|
||||
"Please read the /usr/share/doc/mariadb-server-10.2/README.Debian file for "
|
||||
"Please read the /usr/share/doc/mariadb-server-10.3/README.Debian file for "
|
||||
"more information."
|
||||
msgstr ""
|
||||
"Por favor, leia o arquivo /usr/share/doc/mariadb-server-10.2/README.Debian "
|
||||
"Por favor, leia o arquivo /usr/share/doc/mariadb-server-10.3/README.Debian "
|
||||
"para maiores informações."
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "Password input error"
|
||||
msgstr ""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "The two passwords you entered were not the same. Please try again."
|
||||
msgstr ""
|
||||
|
||||
|
@ -322,13 +322,13 @@ msgstr ""
|
|||
#~ msgid ""
|
||||
#~ "MySQL will only install if you have a non-numeric hostname that is "
|
||||
#~ "resolvable via the /etc/hosts file. E.g. if the \"hostname\" command "
|
||||
#~ "returns \"myhostname\" then there must be a line like \"10.2.0.1 "
|
||||
#~ "returns \"myhostname\" then there must be a line like \"10.3.0.1 "
|
||||
#~ "myhostname\"."
|
||||
#~ msgstr ""
|
||||
#~ "O MySQL será instalado somente caso você possua um nome de host NÃO "
|
||||
#~ "NUMÉRICO que possa ser resolvido através do arquivo /etc/hosts, ou seja, "
|
||||
#~ "caso o comando \"hostname\" retorne \"myhostname\", uma linha como "
|
||||
#~ "\"10.2.0.1 myhostname\" deverá existir no arquivo /etc/hosts."
|
||||
#~ "\"10.3.0.1 myhostname\" deverá existir no arquivo /etc/hosts."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "A new mysql user \"debian-sys-maint\" will be created. This mysql account "
|
||||
|
|
44
debian/po/ro.po
vendored
44
debian/po/ro.po
vendored
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: po-debconf://mysql-dfsg\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.2@packages.debian.org\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.3@packages.debian.org\n"
|
||||
"POT-Creation-Date: 2016-10-08 01:26+0300\n"
|
||||
"PO-Revision-Date: 2006-12-20 21:27+0200\n"
|
||||
"Last-Translator: stan ioan-eugen <stan.ieugen@gmail.com>\n"
|
||||
|
@ -19,13 +19,13 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid "The old data directory will be saved at new location"
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"A file named /var/lib/mysql/debian-*.flag exists on this system. The number "
|
||||
"indicates a database binary format version that cannot automatically be "
|
||||
|
@ -34,7 +34,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Therefore the previous data directory will be renamed to /var/lib/mysql-* "
|
||||
"and a new data directory will be initialized at /var/lib/mysql."
|
||||
|
@ -42,14 +42,14 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Please manually export/import your data (e.g. with mysqldump) if needed."
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
#, fuzzy
|
||||
#| msgid "Important note for NIS/YP users!"
|
||||
msgid "Important note for NIS/YP users"
|
||||
|
@ -57,7 +57,7 @@ msgstr "Notă importantă pentru utilizatorii NIS/YP!"
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"Using MariaDB under NIS/YP requires a mysql user account to be added on the "
|
||||
"local system with:"
|
||||
|
@ -65,7 +65,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"You should also check the permissions and ownership of the /var/lib/mysql "
|
||||
"directory:"
|
||||
|
@ -73,13 +73,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid "Remove all MariaDB databases?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"The /var/lib/mysql directory which contains the MariaDB databases is about "
|
||||
"to be removed."
|
||||
|
@ -87,7 +87,7 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "The script is about to remove the data directory /var/lib/mysql. If it is "
|
||||
|
@ -104,7 +104,7 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
#, fuzzy
|
||||
#| msgid "New password for MySQL \"root\" user:"
|
||||
msgid "New password for the MariaDB \"root\" user:"
|
||||
|
@ -112,7 +112,7 @@ msgstr "Noua parolă pentru utilizatorul „root” al MariaDB:"
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "It is highly recommended that you set a password for the MySQL "
|
||||
|
@ -126,13 +126,13 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid "If this field is left blank, the password will not be changed."
|
||||
msgstr ""
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:6001
|
||||
#: ../mariadb-server-10.3.templates:6001
|
||||
#, fuzzy
|
||||
#| msgid "New password for MySQL \"root\" user:"
|
||||
msgid "Repeat password for the MariaDB \"root\" user:"
|
||||
|
@ -140,7 +140,7 @@ msgstr "Noua parolă pentru utilizatorul „root” al MariaDB:"
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
#, fuzzy
|
||||
#| msgid "Unable to set password for MySQL \"root\" user"
|
||||
msgid "Unable to set password for the MariaDB \"root\" user"
|
||||
|
@ -148,7 +148,7 @@ msgstr "Nu s-a putut stabili parola pentru utilizatorul „root” al MariaDB"
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "It seems an error occurred while setting the password for the MySQL "
|
||||
|
@ -167,27 +167,27 @@ msgstr ""
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "You should check the account's password after the package installation."
|
||||
msgstr ""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid ""
|
||||
"Please read the /usr/share/doc/mariadb-server-10.2/README.Debian file for "
|
||||
"Please read the /usr/share/doc/mariadb-server-10.3/README.Debian file for "
|
||||
"more information."
|
||||
msgstr ""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "Password input error"
|
||||
msgstr ""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "The two passwords you entered were not the same. Please try again."
|
||||
msgstr ""
|
||||
|
||||
|
|
48
debian/po/ru.po
vendored
48
debian/po/ru.po
vendored
|
@ -17,7 +17,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: mysql-dfsg-5.1 5.1.37-1\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.2@packages.debian.org\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.3@packages.debian.org\n"
|
||||
"POT-Creation-Date: 2016-10-08 01:26+0300\n"
|
||||
"PO-Revision-Date: 2009-08-06 20:27+0400\n"
|
||||
"Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n"
|
||||
|
@ -32,13 +32,13 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid "The old data directory will be saved at new location"
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"A file named /var/lib/mysql/debian-*.flag exists on this system. The number "
|
||||
"indicates a database binary format version that cannot automatically be "
|
||||
|
@ -47,7 +47,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Therefore the previous data directory will be renamed to /var/lib/mysql-* "
|
||||
"and a new data directory will be initialized at /var/lib/mysql."
|
||||
|
@ -55,20 +55,20 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Please manually export/import your data (e.g. with mysqldump) if needed."
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid "Important note for NIS/YP users"
|
||||
msgstr "Важное замечание для пользователей NIS/YP"
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"Using MariaDB under NIS/YP requires a mysql user account to be added on the "
|
||||
"local system with:"
|
||||
|
@ -78,7 +78,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"You should also check the permissions and ownership of the /var/lib/mysql "
|
||||
"directory:"
|
||||
|
@ -86,13 +86,13 @@ msgstr "Также проверьте права доступа и владел
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid "Remove all MariaDB databases?"
|
||||
msgstr "Удалить все базы данных MariaDB?"
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"The /var/lib/mysql directory which contains the MariaDB databases is about "
|
||||
"to be removed."
|
||||
|
@ -101,7 +101,7 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"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, "
|
||||
|
@ -113,13 +113,13 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid "New password for the MariaDB \"root\" user:"
|
||||
msgstr "Новый пароль для MariaDB пользователя \"root\":"
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid ""
|
||||
"While not mandatory, it is highly recommended that you set a password for "
|
||||
"the MariaDB administrative \"root\" user."
|
||||
|
@ -129,25 +129,25 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid "If this field is left blank, the password will not be changed."
|
||||
msgstr "Если оставить поле пустым, то пароль изменён не будет."
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:6001
|
||||
#: ../mariadb-server-10.3.templates:6001
|
||||
msgid "Repeat password for the MariaDB \"root\" user:"
|
||||
msgstr "Повторите ввод пароля для MariaDB пользователя \"root\":"
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "Unable to set password for the MariaDB \"root\" user"
|
||||
msgstr "Невозможно задать пароль MariaDB пользователю \"root\""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid ""
|
||||
"An error occurred while setting the password for the MariaDB administrative "
|
||||
"user. This may have happened because the account already has a password, or "
|
||||
|
@ -159,32 +159,32 @@ msgstr ""
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "You should check the account's password after the package installation."
|
||||
msgstr "Проверьте пароль учётной записи после установки пакета."
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Please read the /usr/share/doc/mariadb-server-10.2/README.Debian file for "
|
||||
#| "Please read the /usr/share/doc/mariadb-server-10.3/README.Debian file for "
|
||||
#| "more information."
|
||||
msgid ""
|
||||
"Please read the /usr/share/doc/mariadb-server-10.2/README.Debian file for "
|
||||
"Please read the /usr/share/doc/mariadb-server-10.3/README.Debian file for "
|
||||
"more information."
|
||||
msgstr ""
|
||||
"Подробности см. в файле /usr/share/doc/mariadb-server-10.2/README.Debian."
|
||||
"Подробности см. в файле /usr/share/doc/mariadb-server-10.3/README.Debian."
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "Password input error"
|
||||
msgstr "Ошибка ввода пароля"
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "The two passwords you entered were not the same. Please try again."
|
||||
msgstr "Два введённых пароля не одинаковы. Повторите ввод."
|
||||
|
||||
|
|
48
debian/po/sv.po
vendored
48
debian/po/sv.po
vendored
|
@ -7,7 +7,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: mysql-dfsg-5.1 5.0.21-3\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.2@packages.debian.org\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.3@packages.debian.org\n"
|
||||
"POT-Creation-Date: 2016-10-08 01:26+0300\n"
|
||||
"PO-Revision-Date: 2009-09-08 21:42+0100\n"
|
||||
"Last-Translator: Martin Bagge <brother@bsnet.se>\n"
|
||||
|
@ -21,13 +21,13 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid "The old data directory will be saved at new location"
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"A file named /var/lib/mysql/debian-*.flag exists on this system. The number "
|
||||
"indicates a database binary format version that cannot automatically be "
|
||||
|
@ -36,7 +36,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Therefore the previous data directory will be renamed to /var/lib/mysql-* "
|
||||
"and a new data directory will be initialized at /var/lib/mysql."
|
||||
|
@ -44,20 +44,20 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Please manually export/import your data (e.g. with mysqldump) if needed."
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid "Important note for NIS/YP users"
|
||||
msgstr "Viktig information för NIS/YP-användare"
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"Using MariaDB under NIS/YP requires a mysql user account to be added on the "
|
||||
"local system with:"
|
||||
|
@ -67,7 +67,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"You should also check the permissions and ownership of the /var/lib/mysql "
|
||||
"directory:"
|
||||
|
@ -77,13 +77,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid "Remove all MariaDB databases?"
|
||||
msgstr "Ta bort alla MariaDB-databaser?"
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"The /var/lib/mysql directory which contains the MariaDB databases is about "
|
||||
"to be removed."
|
||||
|
@ -93,7 +93,7 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"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, "
|
||||
|
@ -105,13 +105,13 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid "New password for the MariaDB \"root\" user:"
|
||||
msgstr "Nytt lösenord för MariaDBs \"root\"-användare:"
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid ""
|
||||
"While not mandatory, it is highly recommended that you set a password for "
|
||||
"the MariaDB administrative \"root\" user."
|
||||
|
@ -121,25 +121,25 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
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."
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:6001
|
||||
#: ../mariadb-server-10.3.templates:6001
|
||||
msgid "Repeat password for the MariaDB \"root\" user:"
|
||||
msgstr "Repetera lösenordet för MariaDBs \"root\"-användare:"
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "Unable to set password for the MariaDB \"root\" user"
|
||||
msgstr "Kunde inte sätta lösenord för MariaDBs \"root\"-användare"
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid ""
|
||||
"An error occurred while setting the password for the MariaDB administrative "
|
||||
"user. This may have happened because the account already has a password, or "
|
||||
|
@ -152,33 +152,33 @@ msgstr ""
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "You should check the account's password after the package installation."
|
||||
msgstr "Du bör kontrollera kontots lösenord efter installationen av paketet."
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Please read the /usr/share/doc/mariadb-server-10.2/README.Debian file for "
|
||||
#| "Please read the /usr/share/doc/mariadb-server-10.3/README.Debian file for "
|
||||
#| "more information."
|
||||
msgid ""
|
||||
"Please read the /usr/share/doc/mariadb-server-10.2/README.Debian file for "
|
||||
"Please read the /usr/share/doc/mariadb-server-10.3/README.Debian file for "
|
||||
"more information."
|
||||
msgstr ""
|
||||
"Läs filen /usr/share/doc/mariadb-server-10.2/README.Debian för mer "
|
||||
"Läs filen /usr/share/doc/mariadb-server-10.3/README.Debian för mer "
|
||||
"information."
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "Password input error"
|
||||
msgstr "Fel vid inmatning av lösenord"
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
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."
|
||||
|
||||
|
|
46
debian/po/templates.pot
vendored
46
debian/po/templates.pot
vendored
|
@ -6,8 +6,8 @@
|
|||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: mariadb-10.2\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.2@packages.debian.org\n"
|
||||
"Project-Id-Version: mariadb-10.3\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.3@packages.debian.org\n"
|
||||
"POT-Creation-Date: 2016-10-08 01:26+0300\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
|
@ -19,13 +19,13 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid "The old data directory will be saved at new location"
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"A file named /var/lib/mysql/debian-*.flag exists on this system. The number "
|
||||
"indicates a database binary format version that cannot automatically be "
|
||||
|
@ -34,7 +34,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Therefore the previous data directory will be renamed to /var/lib/mysql-* "
|
||||
"and a new data directory will be initialized at /var/lib/mysql."
|
||||
|
@ -42,20 +42,20 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Please manually export/import your data (e.g. with mysqldump) if needed."
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid "Important note for NIS/YP users"
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"Using MariaDB under NIS/YP requires a mysql user account to be added on the "
|
||||
"local system with:"
|
||||
|
@ -63,7 +63,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"You should also check the permissions and ownership of the /var/lib/mysql "
|
||||
"directory:"
|
||||
|
@ -71,13 +71,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid "Remove all MariaDB databases?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"The /var/lib/mysql directory which contains the MariaDB databases is about "
|
||||
"to be removed."
|
||||
|
@ -85,7 +85,7 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"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, "
|
||||
|
@ -94,13 +94,13 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid "New password for the MariaDB \"root\" user:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid ""
|
||||
"While not mandatory, it is highly recommended that you set a password for "
|
||||
"the MariaDB administrative \"root\" user."
|
||||
|
@ -108,25 +108,25 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid "If this field is left blank, the password will not be changed."
|
||||
msgstr ""
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:6001
|
||||
#: ../mariadb-server-10.3.templates:6001
|
||||
msgid "Repeat password for the MariaDB \"root\" user:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "Unable to set password for the MariaDB \"root\" user"
|
||||
msgstr ""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid ""
|
||||
"An error occurred while setting the password for the MariaDB administrative "
|
||||
"user. This may have happened because the account already has a password, or "
|
||||
|
@ -135,26 +135,26 @@ msgstr ""
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "You should check the account's password after the package installation."
|
||||
msgstr ""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid ""
|
||||
"Please read the /usr/share/doc/mariadb-server-10.2/README.Debian file for "
|
||||
"Please read the /usr/share/doc/mariadb-server-10.3/README.Debian file for "
|
||||
"more information."
|
||||
msgstr ""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "Password input error"
|
||||
msgstr ""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "The two passwords you entered were not the same. Please try again."
|
||||
msgstr ""
|
||||
|
|
48
debian/po/tr.po
vendored
48
debian/po/tr.po
vendored
|
@ -5,7 +5,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: mysql-dfsg-4.1\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.2@packages.debian.org\n"
|
||||
"Report-Msgid-Bugs-To: mariadb-10.3@packages.debian.org\n"
|
||||
"POT-Creation-Date: 2016-10-08 01:26+0300\n"
|
||||
"PO-Revision-Date: 2004-06-05 08:53+0300\n"
|
||||
"Last-Translator: Gürkan Aslan <gurkan@iaslan.com>\n"
|
||||
|
@ -18,13 +18,13 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid "The old data directory will be saved at new location"
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"A file named /var/lib/mysql/debian-*.flag exists on this system. The number "
|
||||
"indicates a database binary format version that cannot automatically be "
|
||||
|
@ -33,7 +33,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Therefore the previous data directory will be renamed to /var/lib/mysql-* "
|
||||
"and a new data directory will be initialized at /var/lib/mysql."
|
||||
|
@ -41,14 +41,14 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:2001
|
||||
#: ../mariadb-server-10.3.templates:2001
|
||||
msgid ""
|
||||
"Please manually export/import your data (e.g. with mysqldump) if needed."
|
||||
msgstr ""
|
||||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
#, fuzzy
|
||||
#| msgid "Important note for NIS/YP users!"
|
||||
msgid "Important note for NIS/YP users"
|
||||
|
@ -56,7 +56,7 @@ msgstr "NIS/YP kullanıcıları için önemli not!"
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"Using MariaDB under NIS/YP requires a mysql user account to be added on the "
|
||||
"local system with:"
|
||||
|
@ -64,7 +64,7 @@ msgstr ""
|
|||
|
||||
#. Type: note
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:3001
|
||||
#: ../mariadb-server-10.3.templates:3001
|
||||
msgid ""
|
||||
"You should also check the permissions and ownership of the /var/lib/mysql "
|
||||
"directory:"
|
||||
|
@ -72,13 +72,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid "Remove all MariaDB databases?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"The /var/lib/mysql directory which contains the MariaDB databases is about "
|
||||
"to be removed."
|
||||
|
@ -86,7 +86,7 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:4001
|
||||
#: ../mariadb-server-10.3.templates:4001
|
||||
msgid ""
|
||||
"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, "
|
||||
|
@ -95,13 +95,13 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid "New password for the MariaDB \"root\" user:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid ""
|
||||
"While not mandatory, it is highly recommended that you set a password for "
|
||||
"the MariaDB administrative \"root\" user."
|
||||
|
@ -109,25 +109,25 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:5001
|
||||
#: ../mariadb-server-10.3.templates:5001
|
||||
msgid "If this field is left blank, the password will not be changed."
|
||||
msgstr ""
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:6001
|
||||
#: ../mariadb-server-10.3.templates:6001
|
||||
msgid "Repeat password for the MariaDB \"root\" user:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "Unable to set password for the MariaDB \"root\" user"
|
||||
msgstr ""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid ""
|
||||
"An error occurred while setting the password for the MariaDB administrative "
|
||||
"user. This may have happened because the account already has a password, or "
|
||||
|
@ -136,27 +136,27 @@ msgstr ""
|
|||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid "You should check the account's password after the package installation."
|
||||
msgstr ""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:7001
|
||||
#: ../mariadb-server-10.3.templates:7001
|
||||
msgid ""
|
||||
"Please read the /usr/share/doc/mariadb-server-10.2/README.Debian file for "
|
||||
"Please read the /usr/share/doc/mariadb-server-10.3/README.Debian file for "
|
||||
"more information."
|
||||
msgstr ""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "Password input error"
|
||||
msgstr ""
|
||||
|
||||
#. Type: error
|
||||
#. Description
|
||||
#: ../mariadb-server-10.2.templates:8001
|
||||
#: ../mariadb-server-10.3.templates:8001
|
||||
msgid "The two passwords you entered were not the same. Please try again."
|
||||
msgstr ""
|
||||
|
||||
|
@ -202,12 +202,12 @@ msgstr ""
|
|||
#~ msgid ""
|
||||
#~ "MySQL will only install if you have a non-numeric hostname that is "
|
||||
#~ "resolvable via the /etc/hosts file. E.g. if the \"hostname\" command "
|
||||
#~ "returns \"myhostname\" then there must be a line like \"10.2.0.1 "
|
||||
#~ "returns \"myhostname\" then there must be a line like \"10.3.0.1 "
|
||||
#~ "myhostname\"."
|
||||
#~ msgstr ""
|
||||
#~ "MySQL sadece /etc/hosts dosyası yoluyla çözülebilir NUMERİK OLMAYAN bir "
|
||||
#~ "makine adına sahipseniz kurulacaktır. Örneğin, eğer \"hostname\" komutu "
|
||||
#~ "\"makinem\" ismini döndürüyorsa, bu dosya içinde \"10.2.0.1 makinem\" "
|
||||
#~ "\"makinem\" ismini döndürüyorsa, bu dosya içinde \"10.3.0.1 makinem\" "
|
||||
#~ "gibi bir satır olmalıdır."
|
||||
|
||||
#, fuzzy
|
||||
|
|
22
debian/rules
vendored
22
debian/rules
vendored
|
@ -120,22 +120,22 @@ override_dh_auto_install:
|
|||
dh_testroot
|
||||
|
||||
# If TokuDB plugin was not built skip the package
|
||||
[ -f $(BUILDDIR)/storage/tokudb/ha_tokudb.so ] || sed -i -e "/Package: mariadb-plugin-tokudb/,+14d" debian/control
|
||||
[ -f $(BUILDDIR)/storage/tokudb/ha_tokudb.so ] || sed -i -e "/Package: mariadb-plugin-tokudb/,+16d" debian/control
|
||||
|
||||
# If Mroonga plugin was not built skip the package
|
||||
[ -f $(BUILDDIR)/storage/mroonga/ha_mroonga.so ] || sed -i -e "/Package: mariadb-plugin-mroonga/,+13d" debian/control
|
||||
[ -f $(BUILDDIR)/storage/mroonga/ha_mroonga.so ] || sed -i -e "/Package: mariadb-plugin-mroonga/,+15d" debian/control
|
||||
|
||||
# If libthrift-dev was available (manually installed, as it is
|
||||
# not in Debian) and ha_cassandra.so was thus built, create package,
|
||||
# otherwise skip it.
|
||||
[ -f $(BUILDDIR)/storage/cassandra/ha_cassandra.so ] || sed -i -e "/Package: mariadb-plugin-cassandra/,+16d" debian/control
|
||||
[ -f $(BUILDDIR)/storage/cassandra/ha_cassandra.so ] || sed -i -e "/Package: mariadb-plugin-cassandra/,+18d" debian/control
|
||||
|
||||
# If Spider plugin was not built skip the package
|
||||
[ -f $(BUILDDIR)/storage/spider/ha_spider.so ] || sed -i -e "/Package: mariadb-plugin-spider/,+14d" debian/control
|
||||
[ -f $(BUILDDIR)/storage/spider/ha_spider.so ] || sed -i -e "/Package: mariadb-plugin-spider/,+16d" debian/control
|
||||
|
||||
# Copy systemd files to a location available for dh_installinit
|
||||
cp $(BUILDDIR)/support-files/mariadb.service debian/mariadb-server-10.2.mariadb.service
|
||||
cp $(BUILDDIR)/support-files/mariadb@.service debian/mariadb-server-10.2.mariadb@.service
|
||||
cp $(BUILDDIR)/support-files/mariadb.service debian/mariadb-server-10.3.mariadb.service
|
||||
cp $(BUILDDIR)/support-files/mariadb@.service debian/mariadb-server-10.3.mariadb@.service
|
||||
|
||||
# make install
|
||||
cd $(BUILDDIR) && $(MAKE) install DESTDIR=$(TMP)
|
||||
|
@ -147,19 +147,19 @@ override_dh_auto_install:
|
|||
|
||||
# nm numeric soft is not enough, therefore extra sort in command
|
||||
# to satisfy Debian reproducible build requirements
|
||||
nm --defined-only $(BUILDDIR)/sql/mysqld | LC_ALL=C sort | gzip -n -9 > $(TMP)/usr/share/doc/mariadb-server-10.2/mysqld.sym.gz
|
||||
nm --defined-only $(BUILDDIR)/sql/mysqld | LC_ALL=C sort | gzip -n -9 > $(TMP)/usr/share/doc/mariadb-server-10.3/mysqld.sym.gz
|
||||
|
||||
# For 5.0 -> 10.2 transition
|
||||
# For 5.0 -> 10.3 transition
|
||||
d=$(TMP)/usr/share/mysql-common/internal-use-only/; \
|
||||
mkdir -p $$d; \
|
||||
cp debian/mariadb-server-10.2.mysql.init $$d/_etc_init.d_mysql; \
|
||||
cp debian/mariadb-server-10.2.mysql-server.logrotate $$d/_etc_logrotate.d_mysql-server; \
|
||||
cp debian/mariadb-server-10.3.mysql.init $$d/_etc_init.d_mysql; \
|
||||
cp debian/mariadb-server-10.3.mysql-server.logrotate $$d/_etc_logrotate.d_mysql-server; \
|
||||
cp debian/additions/debian-start $$d/_etc_mysql_debian-start;
|
||||
|
||||
# rename and install AppArmor profile
|
||||
install -D -m 644 debian/apparmor-profile $(TMP)/etc/apparmor.d/usr.sbin.mysqld
|
||||
# install Apport hook
|
||||
install -D -m 644 debian/mariadb-server-10.2.py $(TMP)/usr/share/apport/package-hooks/source_mariadb-10.2.py
|
||||
install -D -m 644 debian/mariadb-server-10.3.py $(TMP)/usr/share/apport/package-hooks/source_mariadb-10.3.py
|
||||
|
||||
# Install libmariadbclient18 compatibility links
|
||||
ln -s /usr/lib/$(DEB_HOST_MULTIARCH)/libmariadb.so.3 $(TMP)/usr/lib/$(DEB_HOST_MULTIARCH)/libmariadbclient.so.18
|
||||
|
|
Loading…
Add table
Reference in a new issue