From f1f39b8ed115c5cfbd18d3dca5fad1707beb00f2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?=
-phpMyAdmin 2.6.1-dev Documentation
+phpMyAdmin 2.6.1-rc2 Documentation
@@ -62,12 +62,24 @@
- If you want to display inline thumbnails of JPEGs with the original
- aspect ratio, you also need GD2 support in PHP.
+ PHP
+
+
However, keep in mind that the password travels in plain text, unless
you are using the HTTPS protocol.
@@ -239,14 +253,18 @@
For 'HTTP' and 'cookie' modes, phpMyAdmin needs a controluser that has
only the SELECT privilege on the mysql.user (all
columns except "Password"), mysql.db (all
columns), mysql.host (all columns) and
mysql.tables_priv (all columns except
"Grantor" & "Timestamp") tables.
You
- must specify the details for the controluser in the
- config.inc.php file under the
+ must specify the details for the controluser
+ in the config.inc.php file under the
$cfg['Servers'][$i]['controluser']&
$cfg['Servers'][$i]['controlpass'] settings.
The
following example assumes you want to use pma as the
@@ -328,6 +346,8 @@ GRANT SELECT, INSERT, UPDATE, DELETE ON <pma_db>.* TO 'pma'@'localhost';
with the same username.'config' authentication mode
@@ -495,14 +515,20 @@ GRANT SELECT, INSERT, UPDATE, DELETE ON <pma_db>.* TO 'pma'@'localhost';
$cfg['Servers'][$i]['controluser'] string
$cfg['Servers'][$i]['controlpass'] string
This special account is used for 2 distinct purposes: to make possible
- a multi-user installation (http or cookie authentication mode) and
- also for all relational features (see
- $cfg['Servers'][$i]['pmadb']).
+ all relational features
+ (see $cfg['Servers'][$i]['pmadb']) and, for a
+ MySQL server older than 4.1.2, to enable a multi-user installation
+ (http or cookie authentication mode).
When using HTTP or cookie authentication modes (or 'config'
authentication mode since phpMyAdmin 2.2.1), you need to supply the
@@ -521,7 +547,7 @@ GRANT SELECT, INSERT, UPDATE, DELETE ON <pma_db>.* TO 'pma'@'localhost';
privileges you gave to the "controluser". phpMyAdmin does not
support a direct login with the "controluser".
- In versions before 2.2.5, those were called
+ In phpMyAdmin versions before 2.2.5, those were called
"stduser/stdpass".
Determines for how large tables phpMyAdmin should get exact row count by
SELECT COUNT
. If approximate row count is smaller than this
value, SELECT COUNT
will be used, otherwise only value
- returned by SHOW TABLE STATUS
.
+ returned by SHOW TABLE STATUS
. This has currently an impact
+ only on InnoDB tables.
@@ -2955,6 +2982,16 @@ To create a new, empty mimetype please see libraries/transformations/template_ge
can use it for the Edit and Delete links.
+ phpMyAdmin uses a quick method to get the row count, and this method + only returns an approximate count in the case of InnoDB tables. See + $cfg['MaxExactCount'] for a way to modify those results, but + this could have a serious impact on performance. +
+You can either export as CSV suitable for MS Excel, which works out of the - box or you can try native experimental MS Excel exporter. For - enabling this you need to set $cfg['TempDir'] to place where web server - user can write (for example './tmp') - and install PEAR module Spreadsheet_Excel_Writer into php - include path. The installation can be done by following command: + box or you can try native experimental MS Excel exporter. This + export has several problems, most important are limitation of cell content + to 255 chars and no support for charsets, so think carefully whether you + want to enable this.. For enabling this you need to set + $cfg['TempDir'] to place where web server user can write (for example + './tmp') and install PEAR module Spreadsheet_Excel_Writer into + php include path. The installation can be done by following command:
pear -d preferred_state=beta install -a Spreadsheet_Excel_Writer @@ -4037,7 +4076,8 @@ CREDITS, in chronological order - Maxime Delorme <delorme.maxime_at_free.fr> * PDF schema output, thanks also to Olivier Plathey for the - "FPDF" library (see http://www.fpdf.org/). + "FPDF" library (see http://www.fpdf.org/) and Steven Wittens + for the "UFPDF" library (see http://www.acko.net/node/56). - Olof Edlund <olof.edlund_at_upright.se> * SQL validator server @@ -4056,6 +4096,9 @@ CREDITS, in chronological order * redesign for 2.6.0 * phpMyAdmin sailboat logo (June 2004) +- Mathias Landhäußer + * Representation at conferences + And also to the following people who have contributed minor changes, enhancements, bugfixes or support for a new language since version 2.1.0: diff --git a/README b/README index 39673aa41..c62ef9478 100755 --- a/README +++ b/README @@ -5,7 +5,7 @@ phpMyAdmin - Readme A set of PHP-scripts to manage MySQL over the web. - Version 2.6.1-dev + Version 2.6.1-rc1 ----------------- http://www.phpmyadmin.net/ @@ -16,7 +16,7 @@ phpMyAdmin - Readme Alexander M. TurekMichal Cihar Garvin Hicking - Marcel Tschopp + Michael Keck [check Documentation.txt/.html file for more details] This program is free software; you can redistribute it and/or modify diff --git a/browse_foreigners.php b/browse_foreigners.php index 5925f05ce..1b0508818 100644 --- a/browse_foreigners.php +++ b/browse_foreigners.php @@ -182,7 +182,7 @@ if (isset($disp_row) && is_array($disp_row)) { $val = key($mysql_val_relrow[$i]); $key = $mysql_val_relrow[$i][$val]; - if (strlen($val) <= $cfg['LimitChars']) { + if (PMA_strlen($val) <= $cfg['LimitChars']) { $value = htmlspecialchars($val); $vtitle = ''; } else { @@ -199,12 +199,12 @@ if (isset($disp_row) && is_array($disp_row)) { ' . "\n" . ' ' . "\n" - . ' ' . $GLOBALS['strRecords'] . ' ' . "\n" + . ' ' . $GLOBALS['strRecords'] . PMA_showHint($GLOBALS['strApproximateCount']) . ' ' . "\n" . ' ' . "\n"; if (!$alternate) { if (!($GLOBALS['cfg']['PropertiesNumColumns'] > 1)) { @@ -439,7 +439,7 @@ else { echo '' . "\n" . ' --' . "\n" . ' ' . "\n"; - if (PMA_MYSQL_INT_VERSION >= 40100) { + if (PMA_MYSQL_INT_VERSION >= 40101) { echo '' . "\n" . ' ' . $db_collation . ' ' . "\n" . ' ' . "\n"; diff --git a/footer.inc.php b/footer.inc.php index ebcc18e53..452813a92 100644 --- a/footer.inc.php +++ b/footer.inc.php @@ -39,7 +39,7 @@ if ($cfg['QueryFrame'] && $cfg['QueryFrameJS']) { } else { setTimeout("dbBoxSetup();",500); } - } + } } if (parent.frames.queryframe && parent.frames.queryframe.document && parent.frames.queryframe.document.queryframeform) { parent.frames.queryframe.document.queryframeform.db.value = ""; diff --git a/lang/afrikaans-iso-8859-1.inc.php b/lang/afrikaans-iso-8859-1.inc.php index e9731295d..7587bf8eb 100644 --- a/lang/afrikaans-iso-8859-1.inc.php +++ b/lang/afrikaans-iso-8859-1.inc.php @@ -753,4 +753,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/afrikaans-utf-8.inc.php b/lang/afrikaans-utf-8.inc.php index 033496676..9528fe1ea 100644 --- a/lang/afrikaans-utf-8.inc.php +++ b/lang/afrikaans-utf-8.inc.php @@ -754,4 +754,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/albanian-iso-8859-1.inc.php b/lang/albanian-iso-8859-1.inc.php index 8723048bf..8b664ec51 100644 --- a/lang/albanian-iso-8859-1.inc.php +++ b/lang/albanian-iso-8859-1.inc.php @@ -743,4 +743,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/albanian-utf-8.inc.php b/lang/albanian-utf-8.inc.php index 6a529ade0..9152a655f 100644 --- a/lang/albanian-utf-8.inc.php +++ b/lang/albanian-utf-8.inc.php @@ -744,4 +744,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/arabic-utf-8.inc.php b/lang/arabic-utf-8.inc.php index 1ab3fe8c9..93bd81e12 100644 --- a/lang/arabic-utf-8.inc.php +++ b/lang/arabic-utf-8.inc.php @@ -747,4 +747,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/arabic-windows-1256.inc.php b/lang/arabic-windows-1256.inc.php index e4f083c9c..b54c9e269 100644 --- a/lang/arabic-windows-1256.inc.php +++ b/lang/arabic-windows-1256.inc.php @@ -746,4 +746,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/azerbaijani-iso-8859-9.inc.php b/lang/azerbaijani-iso-8859-9.inc.php index 209d77083..c56f60fea 100644 --- a/lang/azerbaijani-iso-8859-9.inc.php +++ b/lang/azerbaijani-iso-8859-9.inc.php @@ -742,4 +742,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/azerbaijani-utf-8.inc.php b/lang/azerbaijani-utf-8.inc.php index 61b8c7e0f..09f5b37ef 100644 --- a/lang/azerbaijani-utf-8.inc.php +++ b/lang/azerbaijani-utf-8.inc.php @@ -743,4 +743,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/basque-iso-8859-1.inc.php b/lang/basque-iso-8859-1.inc.php index 16a2c6a1d..452ce90a4 100644 --- a/lang/basque-iso-8859-1.inc.php +++ b/lang/basque-iso-8859-1.inc.php @@ -745,4 +745,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/basque-utf-8.inc.php b/lang/basque-utf-8.inc.php index fee689715..533436f44 100644 --- a/lang/basque-utf-8.inc.php +++ b/lang/basque-utf-8.inc.php @@ -746,4 +746,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/bosnian-utf-8.inc.php b/lang/bosnian-utf-8.inc.php index c74aab64e..b23980d37 100644 --- a/lang/bosnian-utf-8.inc.php +++ b/lang/bosnian-utf-8.inc.php @@ -752,4 +752,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/bosnian-windows-1250.inc.php b/lang/bosnian-windows-1250.inc.php index a8ab8463f..d41afb168 100644 --- a/lang/bosnian-windows-1250.inc.php +++ b/lang/bosnian-windows-1250.inc.php @@ -751,4 +751,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/brazilian_portuguese-iso-8859-1.inc.php b/lang/brazilian_portuguese-iso-8859-1.inc.php index bbba654cc..fd0d9cfb2 100644 --- a/lang/brazilian_portuguese-iso-8859-1.inc.php +++ b/lang/brazilian_portuguese-iso-8859-1.inc.php @@ -767,4 +767,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/brazilian_portuguese-utf-8.inc.php b/lang/brazilian_portuguese-utf-8.inc.php index 975418f8c..c695d4e71 100644 --- a/lang/brazilian_portuguese-utf-8.inc.php +++ b/lang/brazilian_portuguese-utf-8.inc.php @@ -768,4 +768,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/bulgarian-koi8-r.inc.php b/lang/bulgarian-koi8-r.inc.php index 52191ff4d..0914cb650 100644 --- a/lang/bulgarian-koi8-r.inc.php +++ b/lang/bulgarian-koi8-r.inc.php @@ -752,4 +752,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/bulgarian-utf-8.inc.php b/lang/bulgarian-utf-8.inc.php index 451d9f2e8..ae526b163 100644 --- a/lang/bulgarian-utf-8.inc.php +++ b/lang/bulgarian-utf-8.inc.php @@ -753,4 +753,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/bulgarian-windows-1251.inc.php b/lang/bulgarian-windows-1251.inc.php index 40bec49e3..9a8410003 100644 --- a/lang/bulgarian-windows-1251.inc.php +++ b/lang/bulgarian-windows-1251.inc.php @@ -752,4 +752,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/catalan-iso-8859-1.inc.php b/lang/catalan-iso-8859-1.inc.php index 6cd4bd579..2fd387364 100644 --- a/lang/catalan-iso-8859-1.inc.php +++ b/lang/catalan-iso-8859-1.inc.php @@ -28,6 +28,7 @@ $strAddConstraints = 'Afegir restriccions'; $strAddDeleteColumn = 'Afegir/esborrar Camps de Columna'; $strAddDeleteRow = 'Afegir/esborrar fila de criteri'; $strAddDropDatabase = 'Afegir DROP DATABASE'; +$strAddFields = 'Afegir %s camp(s)'; $strAddHeaderComment = 'Afegir comentari personalitzat a la capalera (\\n divideix linies)'; $strAddIfNotExists = 'Afegir IF NOT EXISTS'; $strAddIntoComments = 'Afegir en comentaris'; @@ -55,6 +56,7 @@ $strAnd = 'I'; $strAny = 'Qualsevol'; $strAnyHost = 'Qualsevol servidor'; $strAnyUser = 'Qualsevol usuari'; +$strApproximateCount = 'Pot ser aproximat. Veure FAQ 3.11'; $strArabic = 'rab'; $strArmenian = 'Armeni'; $strAscending = 'Ascendent'; @@ -68,8 +70,15 @@ $strBack = 'Enrere'; $strBaltic = 'Bltic'; $strBeginCut = 'INICI DEL TALL'; $strBeginRaw = 'INICI DEL VOLCAT'; +$strBinLogEventType = 'Tipus d\'event'; +$strBinLogInfo = 'Informaci'; +$strBinLogName = 'Nom del registre'; +$strBinLogOriginalPosition = 'Posici original'; +$strBinLogPosition = 'Posici'; +$strBinLogServerId = 'ID de Servidor'; $strBinary = ' Binari '; $strBinaryDoNotEdit = ' Binari - no editeu '; +$strBinaryLog = 'Registre binari'; $strBookmarkAllUsers = 'Deixa accedir a cada usuari a aquesta consulta arxivada'; $strBookmarkDeleted = 'S\'ha esborrat la consulta arxivada.'; $strBookmarkLabel = 'Etiqueta'; @@ -121,6 +130,7 @@ $strColumnPrivileges = 'Permissos espec $strCommand = 'Ordre'; $strComments = 'Comentaris'; $strCommentsForTable = 'COMENTARIS PER LA TAULA'; +$strCompatibleHashing = 'Compatible amb MySQL 4.0'; $strCompleteInserts = 'Completar insercions'; $strCompression = 'Compressi'; $strConfigFileError = 'phpMyAdmin s incapa de llegir el fitxer de configuraci!
Aix pot succeir si php troba un error sintctic en ell o b php no pot trobar el fitxer.
Intenta obrir el fitxer de configuraci directament fent servir l\'enlla segent i comprova el(s) missatge(s) d\'error que reps. En moltes ocasions una coma o punt i coma falta en algun lloc.
Si reps una plana en blanc, tot est b.'; @@ -130,6 +140,7 @@ $strConnections = 'Connexions'; $strConstraintsForDumped = 'Restriccions per taules volcades'; $strConstraintsForTable = 'Restriccions per la taula'; $strCookiesRequired = 'A partir d\'aquest punt s necessari tenir les galetes (cookies) activades.'; +$strCopyDatabaseOK = 'La Base de dades %s s\'ha copiat a %s'; $strCopyTable = 'Copia taula a (base-de-dades.taula):'; $strCopyTableOK = 'La taula %s ha estat copiada a %s.'; $strCopyTableSameNames = 'No es pot copiar la taula sobre ella mateixa'; @@ -149,6 +160,7 @@ $strCzech = 'Txec'; $strCzechSlovak = 'Txec-Eslovac'; $strDBComment = 'Comentaris de la Base de Dades: '; +$strDBCopy = 'Copiar base de dades a'; $strDBGContext = 'Contexte'; $strDBGContextID = 'ID de contexte'; $strDBGHits = 'Accessos'; @@ -221,6 +233,7 @@ $strEndRaw = 'FI DEL VOLCAT'; $strEnglish = 'Angls'; $strEnglishPrivileges = ' Nota: Els noms dels privilegis del MySQL sn en llengua anglesa '; $strError = 'Errada'; +$strEscapeWildcards = 'Els comodins _ i % han de marcar-se amb una \ per usar-las literalment'; $strEstonian = 'Estoni '; $strExcelEdition = 'Edici per Excel'; $strExcelOptions = 'Opcions d\'Excel'; @@ -290,11 +303,16 @@ $strIndex = ' $strIndexHasBeenDropped = 'S\'ha esborrat l\'ndex %s'; $strIndexName = 'Nom d\'ndex:'; $strIndexType = 'Tipus d\'ndex:'; +$strIndexWarningMultiple = 'Ms d\'una clau %s s\'ha creat per a la columna `%s`'; +$strIndexWarningPrimary = 'Les claus PRIMARY i INDEX no es poden establir alhora per a la columna `%s`'; +$strIndexWarningTable = 'Problemes amb els index de la taula `%s`'; +$strIndexWarningUnique = 'Les claus UNIQUE i INDEX no es poden establir alhora per a la columna `%s`'; $strIndexes = 'Indexos'; $strInnodbStat = 'Estat InnoDB'; $strInsecureMySQL = 'El vostre fitxer de configuraci t parmetres (root sense contrasenya) que corresponen al compte privilegiat predetermitat de MySQL. El servidor MySQL est funcionant amb aquests valors, el que significa un forat de seguretat, i s\'exposa a intrusions, pel que recomanem la reparaci urgent d\'aquest forat de seguretat.'; $strInsert = 'Insereix'; $strInsertAsNewRow = 'Inserir com a nova fila'; +$strInsertBookmarkTitle = 'Entra un ttol de consulta arxivada'; $strInsertNewRow = 'Inserir nova fila'; $strInsertTextfiles = 'Inserir fitxers de text a la taula'; $strInsertedRowId = 'Id de la fila inserida:'; @@ -376,6 +394,7 @@ $strName = 'Nom'; $strNeedPrimaryKey = 'S\'ha de definir una clau principal per a aquesta taula.'; $strNext = 'Segent'; $strNo = 'No'; +$strNoActivity = 'Sense activitat des de fa %s segons o ms, entra de nou'; $strNoDatabases = 'No hi ha Bases de Dades'; $strNoDatabasesSelected = 'No hi han Bases de dades sel.leccionades.'; $strNoDescription = 'Sense Descripci'; @@ -395,6 +414,7 @@ $strNoRights = 'No tens prou permissos per visualitzar aquesta informaci $strNoRowsSelected = 'No s\'han seleccionat files'; $strNoSpace = 'No hi ha prou espai per guardar l\'arxiu %s.'; $strNoTablesFound = 'Base de dades sense taules.'; +$strNoThemeSupport = 'No hi ha suport pels temes, si et plau comprova la teva configuraci i/o els teus temes al directori %s.'; $strNoUsersFound = 'No s\'han trobat usuaris.'; $strNoValidateSQL = 'Saltar la Validaci de l\'SQL'; $strNone = 'Res'; @@ -426,6 +446,7 @@ $strPartialText = 'Textos Parcials'; $strPassword = 'Contrasenya'; $strPasswordChanged = 'La contrasenya per a %s s\'ha canviat correctament.'; $strPasswordEmpty = 'La contrasenya s buida!'; +$strPasswordHashing = 'Contrasenya Hashing'; $strPasswordNotSame = 'Les contrasenyes no coincideixen!'; $strPdfDbSchema = 'Esquema de la base de dades "%s" - Pgina %s'; $strPdfInvalidTblName = 'La taula "%s" no existeix!'; @@ -562,6 +583,7 @@ $strSearchType = 'Trobat:'; $strSecretRequired = 'El fitxer de configuraci necessita ara una frase de pas secreta (blowfish_secret).'; $strSelectADb = 'Selecciona una Base de Dades'; $strSelectAll = 'Selecciona Tot'; +$strSelectBinaryLog = 'Selecciona el registre binari per veure'; $strSelectFields = 'Selecciona els camps (un com a mnim):'; $strSelectNumRows = 'en consulta'; $strSelectTables = 'Selecciona Taules'; @@ -617,6 +639,7 @@ $strSubmit = 'Enviar'; $strSuccess = 'La vostra comanda SQL ha estat executada amb xit'; $strSum = 'Suma'; $strSwedish = 'Suec'; +$strSwitchToDatabase = 'Canviar a la base de dades copiada'; $strSwitchToTable = 'Canvia a una taula copiada'; $strTable = 'Taula'; @@ -678,6 +701,7 @@ $strUpgrade = 'Es necessari actualitzar a %s %s o posterior.'; $strUsage = 's'; $strUseBackquotes = 'Usa "backquotes" amb taules i noms de camps'; $strUseHostTable = 'Utilitza la Taula de Hosts'; +$strUseTabKey = 'Usa la tecla TAB per moure\'t de valor en valor, o CTRL+fletxes per moure\'t on vulguis'; $strUseTables = 'Usa Taules'; $strUseTextField = 'Usa camp de texte'; $strUseThisValue = 'Fes servir aquest valor'; @@ -716,26 +740,8 @@ $strYes = 'Si'; $strZeroRemovesTheLimit = 'Nota: Establint aquestes opcions a 0 (zero) treu el limit.'; $strZip = '"comprimit amb zip"'; -$strAddFields = 'Add %s field(s)'; //to translate -$strInsertBookmarkTitle = 'Please insert bookmark title'; //to translate -$strNoThemeSupport = 'No themes support, please check your configuration and/or your themes in directory %s.'; //to translate -$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate -$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate -$strBinLogName = 'Log name'; //to translate -$strBinLogPosition = 'Position'; //to translate -$strBinLogEventType = 'Event type'; //to translate -$strBinLogServerId = 'Server ID'; //to translate -$strBinLogOriginalPosition = 'Original position'; //to translate -$strBinLogInfo = 'Information'; //to translate -$strBinaryLog = 'Binary log'; //to translate -$strSelectBinaryLog = 'Select binary log to view'; //to translate -$strDBCopy = 'Copy database to'; //to translate -$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate -$strSwitchToDatabase = 'Switch to copied database'; //to translate -$strPasswordHashing = 'Password Hashing'; //to translate -$strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate -$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate -$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/catalan-utf-8.inc.php b/lang/catalan-utf-8.inc.php index 179489ad5..67d389144 100644 --- a/lang/catalan-utf-8.inc.php +++ b/lang/catalan-utf-8.inc.php @@ -29,6 +29,7 @@ $strAddConstraints = 'Afegir restriccions'; $strAddDeleteColumn = 'Afegir/esborrar Camps de Columna'; $strAddDeleteRow = 'Afegir/esborrar fila de criteri'; $strAddDropDatabase = 'Afegir DROP DATABASE'; +$strAddFields = 'Afegir %s camp(s)'; $strAddHeaderComment = 'Afegir comentari personalitzat a la capçalera (\\n divideix linies)'; $strAddIfNotExists = 'Afegir IF NOT EXISTS'; $strAddIntoComments = 'Afegir en comentaris'; @@ -56,6 +57,7 @@ $strAnd = 'I'; $strAny = 'Qualsevol'; $strAnyHost = 'Qualsevol servidor'; $strAnyUser = 'Qualsevol usuari'; +$strApproximateCount = 'Pot ser aproximat. Veure FAQ 3.11'; $strArabic = 'Àrab'; $strArmenian = 'Armeni'; $strAscending = 'Ascendent'; @@ -69,8 +71,15 @@ $strBack = 'Enrere'; $strBaltic = 'Bàltic'; $strBeginCut = 'INICI DEL TALL'; $strBeginRaw = 'INICI DEL VOLCAT'; +$strBinLogEventType = 'Tipus d\'event'; +$strBinLogInfo = 'Informació'; +$strBinLogName = 'Nom del registre'; +$strBinLogOriginalPosition = 'Posició original'; +$strBinLogPosition = 'Posició'; +$strBinLogServerId = 'ID de Servidor'; $strBinary = ' Binari '; $strBinaryDoNotEdit = ' Binari - no editeu '; +$strBinaryLog = 'Registre binari'; $strBookmarkAllUsers = 'Deixa accedir a cada usuari a aquesta consulta arxivada'; $strBookmarkDeleted = 'S\'ha esborrat la consulta arxivada.'; $strBookmarkLabel = 'Etiqueta'; @@ -122,6 +131,7 @@ $strColumnPrivileges = 'Permissos específics de columna'; $strCommand = 'Ordre'; $strComments = 'Comentaris'; $strCommentsForTable = 'COMENTARIS PER LA TAULA'; +$strCompatibleHashing = 'Compatible amb MySQL 4.0'; $strCompleteInserts = 'Completar insercions'; $strCompression = 'Compressió'; $strConfigFileError = 'phpMyAdmin és incapaç de llegir el fitxer de configuració!
Això pot succeir si php troba un error sintàctic en ell o bé php no pot trobar el fitxer.
Intenta obrir el fitxer de configuració directament fent servir l\'enllaç següent i comprova el(s) missatge(s) d\'error que reps. En moltes ocasions una coma o punt i coma falta en algun lloc.
Si reps una plana en blanc, tot està bé.'; @@ -131,6 +141,7 @@ $strConnections = 'Connexions'; $strConstraintsForDumped = 'Restriccions per taules volcades'; $strConstraintsForTable = 'Restriccions per la taula'; $strCookiesRequired = 'A partir d\'aquest punt és necessari tenir les galetes (cookies) activades.'; +$strCopyDatabaseOK = 'La Base de dades %s s\'ha copiat a %s'; $strCopyTable = 'Copia taula a (base-de-dades.taula):'; $strCopyTableOK = 'La taula %s ha estat copiada a %s.'; $strCopyTableSameNames = 'No es pot copiar la taula sobre ella mateixa'; @@ -150,6 +161,7 @@ $strCzech = 'Txec'; $strCzechSlovak = 'Txec-Eslovac'; $strDBComment = 'Comentaris de la Base de Dades: '; +$strDBCopy = 'Copiar base de dades a'; $strDBGContext = 'Contexte'; $strDBGContextID = 'ID de contexte'; $strDBGHits = 'Accessos'; @@ -222,6 +234,7 @@ $strEndRaw = 'FI DEL VOLCAT'; $strEnglish = 'Anglès'; $strEnglishPrivileges = ' Nota: Els noms dels privilegis del MySQL són en llengua anglesa '; $strError = 'Errada'; +$strEscapeWildcards = 'Els comodins _ i % han de marcar-se amb una \ per usar-las literalment'; $strEstonian = 'Estonià '; $strExcelEdition = 'Edició per Excel'; $strExcelOptions = 'Opcions d\'Excel'; @@ -291,11 +304,16 @@ $strIndex = 'Índex'; $strIndexHasBeenDropped = 'S\'ha esborrat l\'índex %s'; $strIndexName = 'Nom d\'índex:'; $strIndexType = 'Tipus d\'índex:'; +$strIndexWarningMultiple = 'Més d\'una clau %s s\'ha creat per a la columna `%s`'; +$strIndexWarningPrimary = 'Les claus PRIMARY i INDEX no es poden establir alhora per a la columna `%s`'; +$strIndexWarningTable = 'Problemes amb els index de la taula `%s`'; +$strIndexWarningUnique = 'Les claus UNIQUE i INDEX no es poden establir alhora per a la columna `%s`'; $strIndexes = 'Indexos'; $strInnodbStat = 'Estat InnoDB'; $strInsecureMySQL = 'El vostre fitxer de configuració té paràmetres (root sense contrasenya) que corresponen al compte privilegiat predetermitat de MySQL. El servidor MySQL està funcionant amb aquests valors, el que significa un forat de seguretat, i s\'exposa a intrusions, pel que recomanem la reparació urgent d\'aquest forat de seguretat.'; $strInsert = 'Insereix'; $strInsertAsNewRow = 'Inserir com a nova fila'; +$strInsertBookmarkTitle = 'Entra un títol de consulta arxivada'; $strInsertNewRow = 'Inserir nova fila'; $strInsertTextfiles = 'Inserir fitxers de text a la taula'; $strInsertedRowId = 'Id de la fila inserida:'; @@ -377,6 +395,7 @@ $strName = 'Nom'; $strNeedPrimaryKey = 'S\'ha de definir una clau principal per a aquesta taula.'; $strNext = 'Següent'; $strNo = 'No'; +$strNoActivity = 'Sense activitat des de fa %s segons o més, entra de nou'; $strNoDatabases = 'No hi ha Bases de Dades'; $strNoDatabasesSelected = 'No hi han Bases de dades sel.leccionades.'; $strNoDescription = 'Sense Descripció'; @@ -396,6 +415,7 @@ $strNoRights = 'No tens prou permissos per visualitzar aquesta informació!'; $strNoRowsSelected = 'No s\'han seleccionat files'; $strNoSpace = 'No hi ha prou espai per guardar l\'arxiu %s.'; $strNoTablesFound = 'Base de dades sense taules.'; +$strNoThemeSupport = 'No hi ha suport pels temes, si et plau comprova la teva configuració i/o els teus temes al directori %s.'; $strNoUsersFound = 'No s\'han trobat usuaris.'; $strNoValidateSQL = 'Saltar la Validació de l\'SQL'; $strNone = 'Res'; @@ -427,6 +447,7 @@ $strPartialText = 'Textos Parcials'; $strPassword = 'Contrasenya'; $strPasswordChanged = 'La contrasenya per a %s s\'ha canviat correctament.'; $strPasswordEmpty = 'La contrasenya és buida!'; +$strPasswordHashing = 'Contrasenya Hashing'; $strPasswordNotSame = 'Les contrasenyes no coincideixen!'; $strPdfDbSchema = 'Esquema de la base de dades "%s" - Pàgina %s'; $strPdfInvalidTblName = 'La taula "%s" no existeix!'; @@ -563,6 +584,7 @@ $strSearchType = 'Trobat:'; $strSecretRequired = 'El fitxer de configuració necessita ara una frase de pas secreta (blowfish_secret).'; $strSelectADb = 'Selecciona una Base de Dades'; $strSelectAll = 'Selecciona Tot'; +$strSelectBinaryLog = 'Selecciona el registre binari per veure'; $strSelectFields = 'Selecciona els camps (un com a mínim):'; $strSelectNumRows = 'en consulta'; $strSelectTables = 'Selecciona Taules'; @@ -618,6 +640,7 @@ $strSubmit = 'Enviar'; $strSuccess = 'La vostra comanda SQL ha estat executada amb èxit'; $strSum = 'Suma'; $strSwedish = 'Suec'; +$strSwitchToDatabase = 'Canviar a la base de dades copiada'; $strSwitchToTable = 'Canvia a una taula copiada'; $strTable = 'Taula'; @@ -679,6 +702,7 @@ $strUpgrade = 'Es necessari actualitzar a %s %s o posterior.'; $strUsage = 'Ús'; $strUseBackquotes = 'Usa "backquotes" amb taules i noms de camps'; $strUseHostTable = 'Utilitza la Taula de Hosts'; +$strUseTabKey = 'Usa la tecla TAB per moure\'t de valor en valor, o CTRL+fletxes per moure\'t on vulguis'; $strUseTables = 'Usa Taules'; $strUseTextField = 'Usa camp de texte'; $strUseThisValue = 'Fes servir aquest valor'; @@ -717,26 +741,8 @@ $strYes = 'Si'; $strZeroRemovesTheLimit = 'Nota: Establint aquestes opcions a 0 (zero) treu el limit.'; $strZip = '"comprimit amb zip"'; -$strAddFields = 'Add %s field(s)'; //to translate -$strInsertBookmarkTitle = 'Please insert bookmark title'; //to translate -$strNoThemeSupport = 'No themes support, please check your configuration and/or your themes in directory %s.'; //to translate -$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate -$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate -$strBinLogName = 'Log name'; //to translate -$strBinLogPosition = 'Position'; //to translate -$strBinLogEventType = 'Event type'; //to translate -$strBinLogServerId = 'Server ID'; //to translate -$strBinLogOriginalPosition = 'Original position'; //to translate -$strBinLogInfo = 'Information'; //to translate -$strBinaryLog = 'Binary log'; //to translate -$strSelectBinaryLog = 'Select binary log to view'; //to translate -$strDBCopy = 'Copy database to'; //to translate -$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate -$strSwitchToDatabase = 'Switch to copied database'; //to translate -$strPasswordHashing = 'Password Hashing'; //to translate -$strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate -$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate -$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/chinese_simplified-gb2312.inc.php b/lang/chinese_simplified-gb2312.inc.php index 6a50777f7..d86b48404 100644 --- a/lang/chinese_simplified-gb2312.inc.php +++ b/lang/chinese_simplified-gb2312.inc.php @@ -744,4 +744,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/chinese_simplified-utf-8.inc.php b/lang/chinese_simplified-utf-8.inc.php index 40a0d0381..3678588d6 100644 --- a/lang/chinese_simplified-utf-8.inc.php +++ b/lang/chinese_simplified-utf-8.inc.php @@ -745,4 +745,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/chinese_traditional-big5.inc.php b/lang/chinese_traditional-big5.inc.php index 9500d3fd7..04a9bee48 100644 --- a/lang/chinese_traditional-big5.inc.php +++ b/lang/chinese_traditional-big5.inc.php @@ -23,18 +23,18 @@ $datefmt = '%B %d, %Y, %I:%M %p'; $timespanfmt = '%s , %s p, %s %s '; +$strAPrimaryKey = 'DwgsW %s'; $strAbortedClients = ''; $strAbsolutePathToDocSqlDir = 'пJ docSQL ؿA|'; -$strAccessDeniedExplanation = 'phpMyAdmin ճsu MySQL A, AڵFsu. z config.inc.php ˬdDW, nJW٤αKXνTOoǸƬOPtκzHҴѪ MySQL AƬۦP'; $strAccessDenied = 'ڵs'; +$strAccessDeniedExplanation = 'phpMyAdmin ճsu MySQL A, AڵFsu. z config.inc.php ˬdDW, nJW٤αKXνTOoǸƬOPtκzHҴѪ MySQL AƬۦP'; $strAction = ''; $strAddAutoIncrement = "sW AUTO_INCREMENT ƭ"; $strAddConstraints = '[J'; $strAddDeleteColumn = 'sW/ '; $strAddDeleteRow = 'sW/ zC'; $strAddDropDatabase = '[J \'Rƪ\' yk'; -$strAddedColumnComment = 'HU[JѤr'; -$strAddedColumnRelation = 'HU[Jp'; +$strAddFields = 'sW %s '; $strAddHeaderComment = 'D[JӤH (\\n }s)'; $strAddIfNotExists = '[J IF NOT EXISTS'; $strAddIntoComments = '[JѤr'; @@ -43,24 +43,26 @@ $strAddPrivilegesOnDb = ' $strAddPrivilegesOnTbl = 'HUƪ[Jv'; $strAddSearchConditions = 'W[˯ ("where" lyD)'; $strAddToIndex = 'sW %s կ'; -$strAddUserMessage = 'zwsWF@ӷsϥΪ.'; $strAddUser = 'sWϥΪ'; +$strAddUserMessage = 'zwsWF@ӷsϥΪ.'; +$strAddedColumnComment = 'HU[JѤr'; +$strAddedColumnRelation = 'HU[Jp'; $strAdministration = 'tκz'; $strAffectedRows = 'vTC: '; +$strAfter = 'b %s '; $strAfterInsertBack = '^'; $strAfterInsertNewInsert = 'sW@O'; $strAfterInsertSame = '^o'; -$strAfter = 'b %s '; -$strAllTableSameWidth = 'HۦPeܩҦƪ?'; $strAll = ''; +$strAllTableSameWidth = 'HۦPeܩҦƪ?'; $strAlterOrderBy = 'ھ줺eƧǰO'; +$strAnIndex = 'ޤwgsW %s'; $strAnalyzeTable = 'Rƪ'; $strAnd = 'P'; -$strAnIndex = 'ޤwgsW %s'; +$strAny = ''; $strAnyHost = 'D'; $strAnyUser = 'ϥΪ'; -$strAny = ''; -$strAPrimaryKey = 'DwgsW %s'; +$strApproximateCount = 'i. аѬ FAQ 3.11'; $strArabic = 'ԧBy'; $strArmenian = '^y'; $strAscending = 'W'; @@ -74,8 +76,15 @@ $strBack = ' $strBaltic = 'iùy'; $strBeginCut = '}l Ũ'; $strBeginRaw = '}l l'; -$strBinaryDoNotEdit = 'GiX - s'; +$strBinLogEventType = 'ƥ覡'; +$strBinLogInfo = ''; +$strBinLogName = 'Oɮ'; +$strBinLogOriginalPosition = '즳m'; +$strBinLogPosition = 'm'; +$strBinLogServerId = 'A ID'; $strBinary = 'GiX'; +$strBinaryDoNotEdit = 'GiX - s'; +$strBinaryLog = 'GiO'; $strBookmarkAllUsers = 'ҦΪ̥iŪ'; $strBookmarkDeleted = 'ҤwgR.'; $strBookmarkLabel = 'ҦW'; @@ -83,16 +92,17 @@ $strBookmarkOptions = ' $strBookmarkQuery = 'SQL yk'; $strBookmarkThis = 'N SQL yk[J'; $strBookmarkView = 'd'; -$strBrowseForeignValues = 's~ӭ'; $strBrowse = 's'; +$strBrowseForeignValues = 's~ӭ'; $strBulgarian = 'O[QȻy'; $strBzError = 'phpMyAdmin LkY]o php Bz2 Ҳտ~. jCnD phpMyAdmin ]wɳ]w$cfg[\'BZipDump\']
FALSE
. pGQϥ Bz2 Y\,Чs php ̷s. ԱаѬ php ~ %s .'; $strBzip = '"bzipped"'; +$strCSVOptions = 'CSV ﶵ'; $strCalendar = ''; $strCannotLogin = 'LknJ MySQL A'; -$strCantLoadRecodeIconv = 'Ū iconv έssX{ӧ@rsXഫ, г]w php ӱҰʳoǼҲթΨ phpMyAdmin ϥΤrsXഫ\.'; $strCantLoad = 'LkŪ %s Ҳ,
ˬd PHP ]w'; +$strCantLoadRecodeIconv = 'Ū iconv έssX{ӧ@rsXഫ, г]w php ӱҰʳoǼҲթΨ phpMyAdmin ϥΤrsXഫ\.'; $strCantRenameIdxToPrimary = 'LkNާW PRIMARY!'; $strCantUseRecodeIconv = 'sXҲŪ,ϥ iconv, libiconv recode_string \. ˬdz php ]w.'; $strCardinality = 'էO'; @@ -100,23 +110,23 @@ $strCarriage = ' $strCaseInsensitive = 'jpg۲'; $strCaseSensitive = 'jpg۲'; $strCentralEuropean = 'ڻy'; +$strChange = 'ק'; +$strChangeCopyMode = 'إ߷sϥΪ̤ΨϥάۦPv, ...'; $strChangeCopyModeCopy = '... Od¨ϥΪ.'; $strChangeCopyModeDeleteAndReload = ' ... R¨ϥΪ̤έsŪvƪ.'; $strChangeCopyModeJustDelete = ' ... R¨ϥΪ.'; $strChangeCopyModeRevoke = ' ... oҦ¨ϥΪ̦ĤvçR.'; -$strChangeCopyMode = 'إ߷sϥΪ̤ΨϥάۦPv, ...'; $strChangeCopyUser = 'nJT / ƻsϥΪ'; $strChangeDisplay = 'ܤ'; $strChangePassword = 'KX'; -$strChange = 'ק'; -$strCharsetOfFile = 'rɮ:'; -$strCharsetsAndCollations = 'rήչ'; -$strCharsets = 'r'; $strCharset = 'r榡 (Charset)'; +$strCharsetOfFile = 'rɮ:'; +$strCharsets = 'r'; +$strCharsetsAndCollations = 'rήչ'; $strCheckAll = ''; $strCheckOverhead = 'ˬdB~O (overheaded)'; // nor sure yet. -$strCheckPrivsLong = 'd߸Ʈw "%s" v.'; $strCheckPrivs = 'dv'; +$strCheckPrivsLong = 'd߸Ʈw "%s" v.'; $strCheckTable = 'ˬdƪ'; $strChoosePage = 'пܻݭns誺X'; $strColComFeat = ''; @@ -124,8 +134,9 @@ $strCollation = ' $strColumnNames = 'W'; $strColumnPrivileges = 'wv'; $strCommand = 'O'; -$strCommentsForTable = 'COMMENTS FOR TABLE'; // keep in SQL statement $strComments = ''; +$strCommentsForTable = 'COMMENTS FOR TABLE'; // keep in SQL statement +$strCompatibleHashing = 'MySQL 4.0 ۮe'; $strCompleteInserts = 'ϥΧsWO'; $strCompression = 'Y'; $strConfigFileError = 'phpMyAdmin Ūz]w! oiO] php ykW~ php ɮצӦ.
йժUU誺s}Ҩìd php ~H. q`~Ӧ۬YB|FΤO.
pGUsX{ťխ, YNSD.'; @@ -135,43 +146,29 @@ $strConnections = ' $strConstraintsForDumped = 'ƥƪ'; $strConstraintsForTable = 'ƪ'; $strCookiesRequired = 'Cookies Ұʤ~nJ.'; +$strCopyDatabaseOK = 'Ʈw %s wƻs %s'; +$strCopyTable = 'ƻsƪG (榡 ƮwW.ƪW):'; $strCopyTableOK = 'wgNƪ %s ƻs %s.'; $strCopyTableSameNames = 'LkƻsۦPƪ!'; -$strCopyTable = 'ƻsƪG (榡 ƮwW.ƪW):'; $strCouldNotKill = 'phpMyAdmin Lk_O %s. ioOwg.'; -$strCreateIndexTopic = 'sW@կ'; +$strCreate = 'إ'; $strCreateIndex = 'sW %s կ'; +$strCreateIndexTopic = 'sW@կ'; $strCreateNewDatabase = 'إ߷sƮw'; $strCreateNewTable = 'إ߷sƪƮw %s'; $strCreatePage = 'إ߷s@'; $strCreatePdfFeat = 'إ PDF'; -$strCreate = 'إ'; $strCreationDates = 'إ/s/ˬd '; $strCriteria = 'z'; $strCroatian = 'JùȻy'; -$strCSVOptions = 'CSV ﶵ'; $strCyrillic = '訽y'; -$strCzechSlovak = 'Jy'; $strCzech = 'Jy'; +$strCzechSlovak = 'Jy'; -$strDanish = 'y'; -$strDatabaseEmpty = 'ƮwW٨åJ!!'; -$strDatabaseExportOptions = 'ƮwXﶵ'; -$strDatabaseHasBeenDropped = 'Ʈw %s wQR'; -$strDatabaseNoTable = 'oƮwSƪ!'; -$strDatabasesDropped = '%s ӸƮww\R.'; -$strDatabasesStatsDisable = 'έpƾ'; -$strDatabasesStatsEnable = 'Ұʲέpƾ'; -$strDatabasesStatsHeavyTraffic = ': ҰʸƮwέpƾڥi|ͤjq Web A MySQL yq.'; -$strDatabasesStats = 'Ʈwέp'; -$strDatabases = 'Ʈw'; -$strDatabase = 'Ʈw'; -$strDataDict = 'ƾڦr'; -$strDataOnly = 'u'; -$strData = ''; $strDBComment = 'ƮwѤr: '; -$strDBGContextID = ' (Context) ID'; +$strDBCopy = 'ƻsƮw'; $strDBGContext = ' (Context)'; +$strDBGContextID = ' (Context) ID'; $strDBGHits = ''; $strDBGLine = ''; $strDBGMaxTimeMs = '̤jɶ, ms'; @@ -179,54 +176,70 @@ $strDBGMinTimeMs = ' $strDBGModule = 'Ҳ'; $strDBGTimePerHitMs = 'ɶ/, ms'; $strDBGTotalTimeMs = '`ɶ, ms'; -$strDbPrivileges = 'wƮwv'; $strDBRename = 'ƮwW٨'; +$strDanish = 'y'; +$strData = ''; +$strDataDict = 'ƾڦr'; +$strDataOnly = 'u'; +$strDatabase = 'Ʈw'; +$strDatabaseEmpty = 'ƮwW٨åJ!!'; +$strDatabaseExportOptions = 'ƮwXﶵ'; +$strDatabaseHasBeenDropped = 'Ʈw %s wQR'; +$strDatabaseNoTable = 'oƮwSƪ!'; +$strDatabases = 'Ʈw'; +$strDatabasesDropped = '%s ӸƮww\R.'; +$strDatabasesStats = 'Ʈwέp'; +$strDatabasesStatsDisable = 'έpƾ'; +$strDatabasesStatsEnable = 'Ұʲέpƾ'; +$strDatabasesStatsHeavyTraffic = ': ҰʸƮwέpƾڥi|ͤjq Web A MySQL yq.'; +$strDbPrivileges = 'wƮwv'; $strDbSpecific = 'wƮw'; -$strDefaultValueHelp = 'w]: ХuJӹw], Lݥ[WϱuΤ'; $strDefault = 'w]'; +$strDefaultValueHelp = 'w]: ХuJӹw], Lݥ[WϱuΤ'; $strDefragment = 'zƪ'; -$strDelayedInserts = 'ϥΩ𦡷sW'; -$strDeleteAndFlushDescr = 'oO@ӳ̲M䪺k,sŪvݤ@qɶ.'; -$strDeleteAndFlush = 'RϥΪ̤έsŪv.'; -$strDeletedRows = 'wR:'; -$strDeleted = 'OwQR'; -$strDelete = 'R'; -$strDeleting = 'R %s'; $strDelOld = 'ѦҨƪwsb. zƱRoǰѦҶ?'; +$strDelayedInserts = 'ϥΩ𦡷sW'; +$strDelete = 'R'; +$strDeleteAndFlush = 'RϥΪ̤έsŪv.'; +$strDeleteAndFlushDescr = 'oO@ӳ̲M䪺k,sŪvݤ@qɶ.'; +$strDeleted = 'OwQR'; +$strDeletedRows = 'wR:'; +$strDeleting = 'R %s'; $strDescending = ''; $strDescription = ''; $strDictionary = 'r'; -$strDisabled = 'Ұ'; $strDisableForeignChecks = 'ȩw~ (Foreign Key) ˬd'; +$strDisabled = 'Ұ'; $strDisplayFeat = '\'; $strDisplayOrder = 'ܦ'; $strDisplayPDF = ' PDF n'; $strDoAQuery = 'HdҬd (UΦr : "%")'; -$strDocu = ''; $strDoYouReally = 'zTwn '; +$strDocu = ''; +$strDrop = 'R'; $strDropDatabaseStrongWarning = 'zN|RӸƮw!'; $strDropSelectedDatabases = 'RwܤƮw'; $strDropUsersDb = 'RPϥΪ̬ۦPW٤Ʈw.'; -$strDrop = 'R'; -$strDumpingData = 'CXHUƮwƾڡG'; $strDumpSaved = 'ƥwxɮ %s.'; $strDumpXRows = 'ƥ %s , %s }l.'; +$strDumpingData = 'CXHUƮwƾڡG'; $strDynamic = 'ʺA'; +$strEdit = 's'; $strEditPDFPages = 's PDF X'; $strEditPrivileges = 'sv'; -$strEdit = 's'; $strEffective = ''; -$strEmptyResultSet = 'MySQL Ǧ^dߵG (]iରGSŦXO)'; $strEmpty = 'M'; +$strEmptyResultSet = 'MySQL Ǧ^dߵG (]iରGSŦXO)'; $strEnabled = 'Ұ'; $strEncloseInTransaction = 'ϥΨưȶ (Transaction) 覡'; +$strEnd = '̫@'; $strEndCut = ' Ũ'; $strEndRaw = ' l'; -$strEnd = '̫@'; -$strEnglishPrivileges = '`N: MySQL vWٷ|H^y'; $strEnglish = '^y'; +$strEnglishPrivileges = '`N: MySQL vWٷ|H^y'; $strError = '~'; +$strEscapeWildcards = 'UβŸ _ % Ta[J \ '; $strEstonian = 'RFȻy'; $strExcelEdition = 'Excel '; $strExcelOptions = 'Excel ﶵ'; @@ -237,34 +250,34 @@ $strExtendedInserts = ' $strExtra = '['; $strFailedAttempts = 'ե'; +$strField = ''; $strFieldHasBeenDropped = 'ƪ %s wQR'; +$strFields = ''; $strFieldsEmpty = ' `ƬOŪ! '; $strFieldsEnclosedBy = 'uvϥΦrG'; $strFieldsEscapedBy = 'uESCAPEvϥΦrG'; $strFieldsTerminatedBy = 'ujvϥΦrG'; -$strFields = ''; -$strField = ''; $strFileAlreadyExists = 'ɮ %s wsb,ЧɮצW٩οܡuмgvsbɮסvﶵ.'; $strFileCouldNotBeRead = 'ŪLkŪ'; +$strFileNameTemplate = 'ɮצWټ˦'; $strFileNameTemplateHelp = 'ϥ __DB__ @ƮwW, __TABLE__ ƪW. %s strftime%s ɶΪ[ﶵ|۰ʥ[J. LrN|Od.'; $strFileNameTemplateRemember = 'Od˦W'; -$strFileNameTemplate = 'ɮצWټ˦'; $strFixed = 'Tw'; $strFlushPrivilegesNote = ': phpMyAdmin MySQL vƪoϥΪv. pGϥΪ̦ۦƪ, ƪeNiPڨϥΪ̱p. bopU, zb~e %ssJ%s vƪ.'; $strFlushTable = 'jsƪ ("FLUSH")'; -$strFormat = '榡'; $strFormEmpty = '椺|@Ǹ!'; +$strFormat = '榡'; $strFullText = 'ܧr'; $strFunction = ''; $strGenBy = 'إ'; -$strGeneralRelationFeat = '@p\'; $strGenTime = 'إߤ'; +$strGeneralRelationFeat = '@p\'; $strGeorgian = '|NȻy'; $strGerman = 'wy'; +$strGlobal = ''; $strGlobalPrivileges = 'v'; $strGlobalValue = ''; -$strGlobal = ''; $strGo = ''; $strGrantOption = 'v'; $strGreek = 'þy'; @@ -275,59 +288,64 @@ $strHasBeenCreated = ' $strHaveToShow = 'zݭn̤ܳܤ@'; $strHebrew = 'ƧBӻy'; $strHexForBinary = 'HQiƭܤGi'; -$strHomepageOfficial = 'phpMyAdmin x'; $strHome = 'Dؿ'; -$strHostEmpty = 'пJDW!'; +$strHomepageOfficial = 'phpMyAdmin x'; $strHost = 'D'; +$strHostEmpty = 'пJDW!'; $strHungarian = 'IQy'; $strIcelandic = 'Bqy'; $strId = 'ID'; // use eng $strIdxFulltext = '˯'; $strIfYouWish = 'pGznwƶפJAпJγrj}W'; -$strIgnoreInserts = 'ϥΩ[J (insert)'; $strIgnore = ''; +$strIgnoreInserts = 'ϥΩ[J (insert)'; $strIgnoringFile = 'ɮ %s'; $strImportDocSQL = 'Ū docSQL ɮ'; $strImportFiles = 'Jɮ'; $strImportFinished = 'J'; -$strIndexes = ''; +$strInUse = 'ϥΤ'; +$strIndex = ' INDEX'; $strIndexHasBeenDropped = ' %s wQR'; $strIndexName = 'ަW :'; $strIndexType = ' :'; -$strIndex = ''; +$strIndexWarningMultiple = 'hL@ %s wإߨ `%s` '; +$strIndexWarningPrimary = 'D PRIMARY INDEX Pɶ]w `%s` '; +$strIndexWarningTable = 'ƪ `%s` ްD'; +$strIndexWarningUnique = 'ߤ@ UNIQUE INDEX Pɶ]w `%s` '; +$strIndexes = ''; $strInnodbStat = 'InnoDB A'; $strInsecureMySQL = ']wɤ]w (rootnJΨSKX) Pw] MySQL vfۦPC MySQL Abow]]wB檺ܷ|ܮeQJIAz靈]whw|}C'; +$strInsert = 'sW'; $strInsertAsNewRow = 'xssO'; -$strInsertedRowId = 'sWƦC id:'; -$strInsertedRows = 'sWC:'; +$strInsertBookmarkTitle = 'пJҼD'; $strInsertNewRow = 'sW@O'; $strInsertTextfiles = 'NrɸƶפJƪ'; -$strInsert = 'sW'; +$strInsertedRowId = 'sWƦC id:'; +$strInsertedRows = 'sWC:'; $strInstructions = 'O'; $strInternalNotNecessary = '* pb InnoDB wsbɬOLݭn.'; $strInternalRelations = 'p'; -$strInUse = 'ϥΤ'; $strJapanese = 'y'; $strJumpToDB = 'Ʈw "%s".'; -$strJustDeleteDescr = ' "R" ϥΪ̤MnJƮwܭsJƮw.'; $strJustDelete = 'uqvƮwRϥΪ.'; +$strJustDeleteDescr = ' "R" ϥΪ̤MnJƮwܭsJƮw.'; $strKeepPass = 'ФnKX'; $strKeyname = 'W'; $strKill = 'Kill'; //should expressed in English $strKorean = 'y'; +$strLaTeX = 'LaTeX'; // use eng +$strLaTeXOptions = 'LaTeX ﶵ'; $strLandscape = 'V'; $strLatexCaption = 'ƪD'; $strLatexContent = 'ƪ __TABLE__ e'; -$strLatexContinuedCaption = 'sƪD'; $strLatexContinued = '(s)'; +$strLatexContinuedCaption = 'sƪD'; $strLatexIncludeCaption = ']AƪD'; $strLatexLabel = 'аOW'; -$strLaTeX = 'LaTeX'; // use eng -$strLaTeXOptions = 'LaTeX ﶵ'; $strLatexStructure = 'ƪ __TABLE__ c'; $strLatvian = 'ԲȻy'; $strLengthSet = '/X*'; @@ -341,32 +359,32 @@ $strLoadExplanation = ' $strLoadMethod = 'LOAD Ҧ'; $strLocalhost = 'a'; $strLocationTextfile = 'rɮתm'; -$strLoginInformation = 'nJT'; -$strLogin = 'nJ'; -$strLogout = 'nXt'; $strLogPassword = 'KX:'; $strLogServer = 'A'; $strLogUsername = 'nJW:'; +$strLogin = 'nJ'; +$strLoginInformation = 'nJT'; +$strLogout = 'nXt'; -$strMaximumSize = '̤jeq: %s%s'; +$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; // keep in SQL statement +$strMIME_MIMEtype = 'MIME '; $strMIME_available_mime = 'iϥ MIME '; $strMIME_available_transform = 'iϥഫ覡'; $strMIME_description = ''; -$strMIME_MIMEtype = 'MIME '; $strMIME_nodescription = 'oഫ覡S.
ЦV@̬d %s Oƻγ~.'; -$strMIME_transformation_note = 'iϥΤഫ覡ﶵ MINE ഫﶵ, Ьd %sഫ覡%s'; -$strMIME_transformation_options_note = 'ХΥHU榡Jഫﶵ: \'a\',\'b\',\'c\'...
pzݭnJϱu ("\") γ ("\'") ЦA[Wϱu (Ҧp \'\\\\xyz\' or \'a\\\'b\').'; -$strMIME_transformation_options = 'ഫ覡ﶵ'; $strMIME_transformation = 'sഫ覡'; -$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; // keep in SQL statement +$strMIME_transformation_note = 'iϥΤഫ覡ﶵ MINE ഫﶵ, Ьd %sഫ覡%s'; +$strMIME_transformation_options = 'ഫ覡ﶵ'; +$strMIME_transformation_options_note = 'ХΥHU榡Jഫﶵ: \'a\',\'b\',\'c\'...
pzݭnJϱu ("\") γ ("\'") ЦA[Wϱu (Ҧp \'\\\\xyz\' or \'a\\\'b\').'; $strMIME_without = 'MIME HܬOSjഫ\'; +$strMaximumSize = '̤jeq: %s%s'; $strModifications = 'קwxs'; -$strModifyIndexTopic = 'ק'; $strModify = 'ק'; +$strModifyIndexTopic = 'ק'; $strMoreStatusVars = 'hpT'; +$strMoveTable = 'ʸƪG(榡 ƮwW.ƪW)'; $strMoveTableOK = 'ƪ %s wgʨ %s.'; $strMoveTableSameNames = 'LkʨۦPƪ!'; -$strMoveTable = 'ʸƪG(榡 ƮwW.ƪW)'; $strMultilingual = 'hy'; $strMustSelectFile = 'zܻݭnsWɮ.'; $strMySQLCharset = 'MySQL rsX'; @@ -381,16 +399,17 @@ $strMySQLShowVars = ' $strName = 'W'; $strNeedPrimaryKey = 'zݭnbƪ]wD (Primary Key)'; $strNext = 'U@'; -$strNoDatabasesSelected = 'SƮw.'; +$strNo = ' _ '; +$strNoActivity = 'ѩwmFF %s , ЭsnJ'; $strNoDatabases = 'SƮw'; +$strNoDatabasesSelected = 'SƮw.'; $strNoDescription = 'S'; $strNoDropDatabases = '"DROP DATABASE" Owg.'; $strNoExplain = 'L SQL'; $strNoFrames = 'phpMyAdmin AXϥΦb䴩s.'; -$strNoIndexPartsDefined = '٥wq!'; $strNoIndex = 'Swwq!'; +$strNoIndexPartsDefined = '٥wq!'; $strNoModification = 'Sܧ'; -$strNone = 'A'; $strNoOptions = 'oخ榡õLﶵ'; $strNoPassword = 'αKX'; $strNoPermission = 'Web ASvxsɮ %s.'; @@ -401,20 +420,21 @@ $strNoRights = ' $strNoRowsSelected = 'õLƦCw'; $strNoSpace = 'Ŷxsɮ %s.'; $strNoTablesFound = 'ƮwSƪ'; +$strNoThemeSupport = '䴩ڦ\, Ьdݳ]wפxsڦɮתƧ %s.'; +$strNoUsersFound = '䤣ϥΪ'; +$strNoValidateSQL = 'Lˬd SQL'; +$strNone = 'A'; $strNotNumber = 'oO@ӼƦr!'; $strNotOK = 'Tw'; $strNotSet = '%s ƪ䤣٥b %s ]w'; $strNotValidNumber = 'OĪC!'; -$strNoUsersFound = '䤣ϥΪ'; -$strNoValidateSQL = 'Lˬd SQL'; -$strNo = ' _ '; $strNull = 'Null'; //should expressed in English $strNumSearchResultsInTable = '%s ƲŦX - ƪ %s'; $strNumSearchResultsTotal = '`p: %s ƲŦX'; $strNumTables = 'Ӹƪ'; -$strOftenQuotation = '̱`ΪOAuDvܥu char M varchar |Q]A_'; $strOK = 'Tw'; +$strOftenQuotation = '̱`ΪOAuDvܥu char M varchar |Q]A_'; $strOperations = 'z'; $strOperator = 'ާ@'; $strOptimizeTable = '̨ΤƸƪ'; @@ -424,13 +444,16 @@ $strOr = ' $strOverhead = 'hl'; $strOverwriteExisting = 'мgwsbɮ'; +$strPHP40203 = 'zϥ PHP 4.2.3, o@r`rY~(mbstring). аѾ\ PHP γis 19404. phpMyAdmin äijϥγoӪ PHP .'; +$strPHPVersion = 'PHP '; $strPageNumber = 'X:'; $strPaperSize = 'ȱijp'; $strPartialText = 'ܳr'; +$strPassword = 'KX'; $strPasswordChanged = '%s KXw\.'; $strPasswordEmpty = 'пJKX!'; +$strPasswordHashing = 'KX'; $strPasswordNotSame = 'ĤGJKXP!'; -$strPassword = 'KX'; $strPdfDbSchema = '"%s" Ʈwn - %s '; $strPdfInvalidTblName = 'ƪ "%s" sb!'; $strPdfNoTables = 'Sƪ'; @@ -439,22 +462,20 @@ $strPerMinute = ' $strPerSecond = 'C'; $strPersian = 'iy'; $strPhoneBook = 'qï'; -$strPHP40203 = 'zϥ PHP 4.2.3, o@r`rY~(mbstring). аѾ\ PHP γis 19404. phpMyAdmin äijϥγoӪ PHP .'; -$strPHPVersion = 'PHP '; $strPhp = 'إ PHP {X'; $strPmaDocumentation = 'phpMyAdmin '; -$strPmaUriError = ' ]w $cfg[\'PmaAbsoluteUri\'] b]wɤ!'; +$strPmaUriError = ' b]wɤ]w $cfg[\'PmaAbsoluteUri\'] !'; $strPolish = 'iy'; $strPortrait = 'V'; $strPos1 = 'Ĥ@'; $strPrevious = 'e@'; +$strPrimary = 'D PRIMARY'; $strPrimaryKeyHasBeenDropped = 'DwQR'; $strPrimaryKeyName = 'D䪺W٥٬ PRIMARY!'; $strPrimaryKeyWarning = '("PRIMARY" OD䪺W٥HάOߤ@@եD!)'; -$strPrimary = 'D'; -$strPrintViewFull = 'CL˵ (ܧr)'; -$strPrintView = 'CL˵'; $strPrint = 'CL'; +$strPrintView = 'CL˵'; +$strPrintViewFull = 'CL˵ (ܧr)'; $strPrivDescAllPrivileges = ']AҦvFv (GRNANT).'; $strPrivDescAlter = 'e\ק{ƪc.'; $strPrivDescCreateDb = 'e\إ߷sƮwθƪ.'; @@ -484,14 +505,14 @@ $strPrivDescShutdown = ' $strPrivDescSuper = 'e\su, NWLF̤jsu; Ω̰tκzp]wvΤLϥΪ̫O.'; $strPrivDescUpdate = 'e\sƾ.'; $strPrivDescUsage = 'Sv.'; -$strPrivilegesReloaded = 'vw\sŪ.'; $strPrivileges = 'v'; +$strPrivilegesReloaded = 'vw\sŪ.'; $strProcesslist = 'tΰM'; $strPutColNames = 'NW٩b'; +$strQBE = '̽dҬd (QBE)'; $strQBEDel = ''; $strQBEIns = 'sW'; -$strQBE = '̽dҬd (QBE)'; $strQueryFrame = 'dߵ'; $strQueryOnDb = 'bƮw %s SQL yk:'; $strQuerySQLHistory = 'SQL {'; @@ -500,51 +521,62 @@ $strQueryTime = ' $strQueryType = 'dߤ覡'; $strQueryWindowLock = 'nNoykл\쥻~SQLyk'; +$strReType = 'T{KX'; $strReceived = ''; $strRecords = 'O'; $strReferentialIntegrity = 'ˬdܧ:'; $strRefresh = 's'; -$strRelationalSchema = 'pn'; $strRelationNotWorking = 'pƪ[\ॼҰ, %sЫ%s dXD].'; -$strRelationsForTable = 'RELATIONS FOR TABLE'; // keep in SQL statement -$strRelations = 'p'; $strRelationView = 'p˵'; +$strRelationalSchema = 'pn'; +$strRelations = 'p'; +$strRelationsForTable = 'RELATIONS FOR TABLE'; // keep in SQL statement $strReloadFailed = 'sJMySQL'; -$strReloadingThePrivileges = 'sŪv'; $strReloadMySQL = 'sJ MySQL'; +$strReloadingThePrivileges = 'sŪv'; $strRemoveSelectedUsers = 'wܨϥΪ'; $strRenameDatabaseOK = 'Ʈw %s wW٬ %s'; -$strRenameTableOK = 'wgNƪ %s W %s'; $strRenameTable = 'NƪW'; +$strRenameTableOK = 'wgNƪ %s W %s'; $strRepairTable = '״_ƪ'; +$strReplace = 'N'; $strReplaceNULLBy = 'N NULL N'; $strReplaceTable = 'HɮרNƪ'; -$strReplace = 'N'; $strReset = 'm'; $strResourceLimits = '귽'; -$strReType = 'T{KX'; -$strRevokeAndDeleteDescr = 'ϥΪ̤M USAGE vvƪsŪ.'; -$strRevokeAndDelete = 'oϥΪ̩ҦĤvçR.'; -$strRevokeMessage = 'zwoϥΪ̪v: %s'; $strRevoke = ''; +$strRevokeAndDelete = 'oϥΪ̩ҦĤvçR.'; +$strRevokeAndDeleteDescr = 'ϥΪ̤M USAGE vvƪsŪ.'; +$strRevokeMessage = 'zwoϥΪ̪v: %s'; $strRomanian = 'ùȻy'; $strRowLength = 'ƦC'; -$strRowsFrom = 'OA}lC:'; $strRowSize = 'ƦCjp'; +$strRows = 'ƦCC'; +$strRowsFrom = 'OA}lC:'; $strRowsModeFlippedHorizontal = ' (D)'; $strRowsModeHorizontal = ''; $strRowsModeOptions = 'ܬ %s 覡 Cj %s W'; $strRowsModeVertical = ''; $strRowsStatistic = 'ƦCέpƭ'; -$strRows = 'ƦCC'; -$strRunning = 'b %s '; $strRunQuery = 'yk'; $strRunSQLQuery = 'bƮw %s HUO'; +$strRunning = 'b %s '; $strRussian = 'Xy'; -$strSaveOnServer = 'xsA %s ؿ'; +$strSQL = 'SQL'; // should express in english +$strSQLExportType = 'X覡'; +$strSQLOptions = 'SQL ﶵ'; +$strSQLParserBugMessage = 'oiOzF SQL R{@ǵ{~AвӤ߬dݱzykAˬd@UOTΨS|ALiX]iӦ۱zWɮɦb~aϥΤFGiXCziHզb MySQL ROCӻykCp MySQL AoX~HAoiUzhXDҦbCpzMѨMDAΦbR{X{~AbROCҦॿ`AбNӥyX{~ SQL ykXAñNHU"Ũ"@P:'; +$strSQLParserUserError = 'iOz SQL ykX{~Ap MySQL AoX~HAoiUzhXDҦbC'; +$strSQLQuery = 'SQL yk'; +$strSQLResult = 'SQL dߵG'; +$strSQPBugInvalidIdentifer = 'LĪѧOX (Invalid Identifer)'; +$strSQPBugUnclosedQuote = ' (Unclosed quote)'; +$strSQPBugUnknownPunctuation = 'IŸ (Unknown Punctuation String)'; $strSave = 'xs'; +$strSaveOnServer = 'xsA %s ؿ'; $strScaleFactorSmall = 'ҭƤӲ, LkNϪb@'; +$strSearch = 'j'; $strSearchFormTitle = 'jƮw'; $strSearchInTables = 'HUƪ:'; $strSearchNeedle = 'M䤧rμƭ (UΦr: "%"):'; @@ -554,62 +586,52 @@ $strSearchOption3 = ' $strSearchOption4 = 'HWhܪk (regular expression) j'; $strSearchResultsFor = 'j "%s" G %s:'; $strSearchType = 'M:'; -$strSearch = 'j'; $strSecretRequired = ']wɮײ{bݭnKX (passphrase) (blowfish_secret).'; $strSelectADb = 'пܸƮw'; $strSelectAll = ''; +$strSelectBinaryLog = '˵GiO'; $strSelectFields = ' (ܤ֤@)'; $strSelectNumRows = 'dߤ'; $strSelectTables = 'ܸƪ'; $strSend = 'Uxs'; $strSent = 'eX'; +$strServer = 'A'; $strServerChoice = 'ܦA'; $strServerNotResponding = 'AõL^'; -$strServerStatusUptime = 'o MySQL AwҰʤF %s. A %s Ұ.'; $strServerStatus = 'BT'; +$strServerStatusUptime = 'o MySQL AwҰʤF %s. A %s Ұ.'; $strServerTabProcesslist = 'Bz'; $strServerTabVariables = 'T'; $strServerTrafficNotes = 'Ayq: oǪܤF MySQL A۱ҰʥHӪyqέpC'; $strServerVars = 'ATγ]w'; $strServerVersion = 'A'; -$strServer = 'A'; $strSessionValue = '{Ǽƭ'; $strSetEnumVal = 'p榡O "enum" "set", ШϥΥHU榡J: \'a\',\'b\',\'c\'...
pbƭȤWݭnJϱu (\) γ (\') , ЦA[Wϱu (Ҧp \'\\\\xyz\' or \'a\\\'b\').'; +$strShow = ''; $strShowAll = 'ܥ'; $strShowColor = 'C'; $strShowDatadictAs = 'ƾڦr榡'; $strShowFullQueries = 'ܧd'; $strShowGrid = 'ܮخ'; -$strShowingRecords = 'ܰO'; $strShowPHPInfo = ' PHP T'; $strShowTableDimension = 'ܪjp'; $strShowTables = 'ܸƪ'; $strShowThisQuery = 's SQL yk '; -$strShow = ''; +$strShowingRecords = 'ܰO'; $strSimplifiedChinese = '²餤'; $strSingly = '(u|ƧDz{ɪO)'; $strSize = 'jp'; $strSlovak = 'Jy'; $strSlovenian = '奧Ȼy'; -$strSortByKey = 'WƧ'; $strSort = 'Ƨ'; +$strSortByKey = 'WƧ'; $strSpaceUsage = 'wϥΪŶ'; $strSpanish = 'Zy'; $strSplitWordsWithSpace = 'CդrHŮ (" ") j.'; -$strSQLExportType = 'X覡'; -$strSQLOptions = 'SQL ﶵ'; -$strSQLParserBugMessage = 'oiOzF SQL R{@ǵ{~AвӤ߬dݱzykAˬd@UOTΨS|ALiX]iӦ۱zWɮɦb~aϥΤFGiXCziHզb MySQL ROCӻykCp MySQL AoX~HAoiUzhXDҦbCpzMѨMDAΦbR{X{~AbROCҦॿ`AбNӥyX{~ SQL ykXAñNHU"Ũ"@P:'; -$strSQLParserUserError = 'iOz SQL ykX{~Ap MySQL AoX~HAoiUzhXDҦbC'; -$strSQLQuery = 'SQL yk'; -$strSQLResult = 'SQL dߵG'; -$strSQL = 'SQL'; // should express in english -$strSQPBugInvalidIdentifer = 'LĪѧOX (Invalid Identifer)'; -$strSQPBugUnclosedQuote = ' (Unclosed quote)'; -$strSQPBugUnknownPunctuation = 'IŸ (Unknown Punctuation String)'; $strStatCheckTime = '̫ˬd'; $strStatCreateTime = 'إ'; -$strStatement = 'ԭz'; $strStatUpdateTime = '̫s'; +$strStatement = 'ԭz'; $strStatus = 'A'; $strStrucCSV = 'CSV '; $strStrucData = 'cP'; @@ -623,8 +645,10 @@ $strSubmit = ' $strSuccess = 'zSQLykwQ'; $strSum = '`p'; $strSwedish = 'y'; +$strSwitchToDatabase = 'ಾƻsƮw'; $strSwitchToTable = 'wƻsƪ'; +$strTable = 'ƪ'; $strTableComments = 'ƪѤr'; $strTableEmpty = 'пJƪW!'; $strTableHasBeenDropped = 'ƪ %s wQR'; @@ -633,25 +657,24 @@ $strTableHasBeenFlushed = ' $strTableMaintenance = 'ƪ@'; $strTableOfContents = 'ؿ'; $strTableOptions = 'ƪﶵ'; -$strTables = '%s ƪ'; $strTableStructure = 'ƪ榡G'; $strTableType = 'ƪ'; -$strTable = 'ƪ'; +$strTables = '%s ƪ'; $strTakeIt = ''; $strTblPrivileges = 'wƪv'; $strTextAreaLength = ' ѩ
줣s '; $strThai = 'y'; -$strTheContents = 'ɮפeN|Nwƪ㦳ۦPDΰߤ@䪺O'; $strTheContent = 'ɮפewgפJƪ'; -$strTheme = 'ڦ'; +$strTheContents = 'ɮפeN|Nwƪ㦳ۦPDΰߤ@䪺O'; $strTheTerminator = 'j쪺r'; +$strTheme = 'ڦ'; $strThisHost = 'wD'; $strThisNotDirectory = 'oäO@ӥؿ'; $strThreadSuccessfullyKilled = 'O %s w\.'; $strTime = 'ɶ'; $strToggleScratchboard = 'ഫK'; -$strTotalUC = '`@'; $strTotal = '`p'; +$strTotalUC = '`@'; $strTraditionalChinese = 'c餤'; $strTraditionalSpanish = 'DzΦZy'; $strTraffic = 'yq'; @@ -673,17 +696,22 @@ $strType = ' $strUkrainian = 'QJy'; $strUncheckAll = ''; $strUnicode = 'Τ@X (Unicode)'; -$strUnique = 'ߤ@'; +$strUnique = 'ߤ@ UNIQUE'; $strUnknown = ''; $strUnselectAll = ''; +$strUpdComTab = 'аѬݻdߦps Column_comments ƪ'; $strUpdatePrivMessage = 'zwgsF %s v.'; $strUpdateProfileMessage = 'Ƥvgs.'; $strUpdateQuery = 'syk'; -$strUpdComTab = 'аѬݻdߦps Column_comments ƪ'; $strUpgrade = 'zӧs %s %s Τ.'; $strUsage = 'ϥ'; $strUseBackquotes = 'bƪϥΤ'; $strUseHostTable = 'ϥΥDƪ'; +$strUseTabKey = ' TAB U@Ӽƭ, CTRL+V @HN'; +$strUseTables = 'ϥθƪ'; +$strUseTextField = 'rJ'; +$strUseThisValue = 'ϥΦ'; +$strUser = 'ϥΪ'; $strUserAlreadyExists = 'ϥΪ %s vsb!'; $strUserEmpty = 'пJϥΪ̦W!'; $strUserName = 'ϥΪ̦W'; @@ -691,21 +719,17 @@ $strUserNotFound = ' $strUserOverview = 'ϥΪ̤@'; $strUsersDeleted = 'ܪϥΪ̤w\R.'; $strUsersHavingAccessToDb = 'iŪ "%s" ϥΪ'; -$strUser = 'ϥΪ'; -$strUseTables = 'ϥθƪ'; -$strUseTextField = 'rJ'; -$strUseThisValue = 'ϥΦ'; $strValidateSQL = 'ˬd SQL'; $strValidatorError = 'SQL R{ҰʡAˬdO_wN %s%s PHP ɮצwˡC'; $strValue = ''; $strVar = 'T'; -$strViewDumpDatabases = 'ܸƮwn (schema)'; -$strViewDumpDB = '˵Ʈwƥn (dump schema)'; $strViewDump = '˵ƪƥn (dump schema)'; +$strViewDumpDB = '˵Ʈwƥn (dump schema)'; +$strViewDumpDatabases = 'ܸƮwn (schema)'; -$strWebServerUploadDirectoryError = ']wWؿ~Aϥ'; $strWebServerUploadDirectory = 'Web AWؿ'; +$strWebServerUploadDirectoryError = ']wWؿ~Aϥ'; $strWelcome = 'wϥ %s'; $strWestEuropean = 'ڻy'; $strWildcard = 'UΦr'; @@ -722,26 +746,8 @@ $strYes = ' $strZeroRemovesTheLimit = ': ]woǿﶵ 0 (s) iѰ.'; $strZip = '"zipped"'; -$strAddFields = 'Add %s field(s)'; //to translate -$strInsertBookmarkTitle = 'Please insert bookmark title'; //to translate -$strNoThemeSupport = 'No themes support, please check your configuration and/or your themes in directory %s.'; //to translate -$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate -$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate -$strBinLogName = 'Log name'; //to translate -$strBinLogPosition = 'Position'; //to translate -$strBinLogEventType = 'Event type'; //to translate -$strBinLogServerId = 'Server ID'; //to translate -$strBinLogOriginalPosition = 'Original position'; //to translate -$strBinLogInfo = 'Information'; //to translate -$strBinaryLog = 'Binary log'; //to translate -$strSelectBinaryLog = 'Select binary log to view'; //to translate -$strDBCopy = 'Copy database to'; //to translate -$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate -$strSwitchToDatabase = 'Switch to copied database'; //to translate -$strPasswordHashing = 'Password Hashing'; //to translate -$strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate -$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate -$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/chinese_traditional-utf-8.inc.php b/lang/chinese_traditional-utf-8.inc.php index add5552c9..08b48d4bd 100644 --- a/lang/chinese_traditional-utf-8.inc.php +++ b/lang/chinese_traditional-utf-8.inc.php @@ -8,9 +8,6 @@ $charset = 'utf-8'; $allow_recoding = TRUE; -$allow_recoding = TRUE; -$allow_recoding = TRUE; -$allow_recoding = TRUE; $text_dir = 'ltr'; $left_font_family = 'verdana, arial, helvetica, geneva, sans-serif'; $right_font_family = 'helvetica, sans-serif'; @@ -27,18 +24,18 @@ $datefmt = '%B %d, %Y, %I:%M %p'; $timespanfmt = '%s 日, %s 小時, %s 分鐘 %s 秒'; +$strAPrimaryKey = '主鍵已經新增到 %s'; $strAbortedClients = '取消'; $strAbsolutePathToDocSqlDir = '請輸入 docSQL 目錄於網頁伺服器的絕對路徑'; -$strAccessDeniedExplanation = 'phpMyAdmin 嘗試連線到 MySQL 伺服器, 但伺服器拒絕了連線. 您應於 config.inc.php 內檢查主機名稱, 登入名稱及密碼及確保這些資料是與系統管理人員所提供的 MySQL 伺服器資料相同'; $strAccessDenied = '拒絕存取'; +$strAccessDeniedExplanation = 'phpMyAdmin 嘗試連線到 MySQL 伺服器, 但伺服器拒絕了連線. 您應於 config.inc.php 內檢查主機名稱, 登入名稱及密碼及確保這些資料是與系統管理人員所提供的 MySQL 伺服器資料相同'; $strAction = '執行'; $strAddAutoIncrement = "新增 AUTO_INCREMENT 數值"; $strAddConstraints = '加入限制'; $strAddDeleteColumn = '新增/減少 選擇欄'; $strAddDeleteRow = '新增/減少 篩選列'; $strAddDropDatabase = '加入 \'刪除資料表\' 語法'; -$strAddedColumnComment = '於以下欄位加入註解文字'; -$strAddedColumnRelation = '於以下欄位加入關聯'; +$strAddFields = '新增 %s 個欄位'; $strAddHeaderComment = '於標題加入個人註解 (\\n 開新行)'; $strAddIfNotExists = '加入 IF NOT EXISTS'; $strAddIntoComments = '加入註解文字'; @@ -47,24 +44,26 @@ $strAddPrivilegesOnDb = '於以下資料庫加入權限'; $strAddPrivilegesOnTbl = '於以下資料表加入權限'; $strAddSearchConditions = '增加檢索條件 ("where" 子句的主體)'; $strAddToIndex = '新增 %s 組索引欄'; -$strAddUserMessage = '您已新增了一個新使用者.'; $strAddUser = '新增使用者'; +$strAddUserMessage = '您已新增了一個新使用者.'; +$strAddedColumnComment = '於以下欄位加入註解文字'; +$strAddedColumnRelation = '於以下欄位加入關聯'; $strAdministration = '系統管理'; $strAffectedRows = '影響列數: '; +$strAfter = '在 %s 之後'; $strAfterInsertBack = '返回'; $strAfterInsertNewInsert = '新增一筆記錄'; $strAfterInsertSame = '返回這頁'; -$strAfter = '在 %s 之後'; -$strAllTableSameWidth = '以相同寬度顯示所有資料表?'; $strAll = '全部'; +$strAllTableSameWidth = '以相同寬度顯示所有資料表?'; $strAlterOrderBy = '根據欄位內容排序記錄'; +$strAnIndex = '索引已經新增到 %s'; $strAnalyzeTable = '分析資料表'; $strAnd = '與'; -$strAnIndex = '索引已經新增到 %s'; +$strAny = '任何'; $strAnyHost = '任何主機'; $strAnyUser = '任何使用者'; -$strAny = '任何'; -$strAPrimaryKey = '主鍵已經新增到 %s'; +$strApproximateCount = '可能接近. 請參看 FAQ 3.11'; $strArabic = '阿拉伯語'; $strArmenian = '美式英語'; $strAscending = '遞增'; @@ -78,8 +77,15 @@ $strBack = '回上一頁'; $strBaltic = '波羅的海語'; $strBeginCut = '開始 剪取'; $strBeginRaw = '開始 原始資料'; -$strBinaryDoNotEdit = '二進制碼 - 不能編輯'; +$strBinLogEventType = '事件方式'; +$strBinLogInfo = '資料'; +$strBinLogName = '記錄檔案稱'; +$strBinLogOriginalPosition = '原有位置'; +$strBinLogPosition = '位置'; +$strBinLogServerId = '伺服器 ID'; $strBinary = '二進制碼'; +$strBinaryDoNotEdit = '二進制碼 - 不能編輯'; +$strBinaryLog = '二進制記錄'; $strBookmarkAllUsers = '所有用者可讀取此書籤'; $strBookmarkDeleted = '書籤已經刪除.'; $strBookmarkLabel = '書籤名稱'; @@ -87,16 +93,17 @@ $strBookmarkOptions = '書籤選項'; $strBookmarkQuery = 'SQL 語法書籤'; $strBookmarkThis = '將此 SQL 語法加入書籤'; $strBookmarkView = '查看'; -$strBrowseForeignValues = '瀏覽外來值'; $strBrowse = '瀏覽'; +$strBrowseForeignValues = '瀏覽外來值'; $strBulgarian = '保加利亞語'; $strBzError = 'phpMyAdmin 無法壓縮因於這個 php 版本的 Bz2 模組錯誤. 強列要求於 phpMyAdmin 設定檔設定$cfg[\'BZipDump\']
為FALSE
. 如果想使用 Bz2 壓縮功能,請更新 php 到最新版本. 詳情請參看 php 錯誤報報 %s .'; $strBzip = '"bzipped"'; +$strCSVOptions = 'CSV 選項'; $strCalendar = '日曆'; $strCannotLogin = '無法登入 MySQL 伺服器'; -$strCantLoadRecodeIconv = '未能讀取 iconv 或重新編碼程式來作文字編碼轉換, 請設定 php 來啟動這些模組或取消 phpMyAdmin 使用文字編碼轉換功能.'; $strCantLoad = '無法讀取 %s 模組,
請檢查 PHP 設定'; +$strCantLoadRecodeIconv = '未能讀取 iconv 或重新編碼程式來作文字編碼轉換, 請設定 php 來啟動這些模組或取消 phpMyAdmin 使用文字編碼轉換功能.'; $strCantRenameIdxToPrimary = '無法將索引更名為 PRIMARY!'; $strCantUseRecodeIconv = '當文編碼模組讀取後,未能使用 iconv, libiconv 或 recode_string 功能. 請檢查您的 php 設定.'; $strCardinality = '組別'; @@ -104,23 +111,23 @@ $strCarriage = '歸位: \\r'; $strCaseInsensitive = '大小寫不相符'; $strCaseSensitive = '大小寫相符'; $strCentralEuropean = '中歐語'; +$strChange = '修改'; +$strChangeCopyMode = '建立新使用者及使用相同之權限, 及 ...'; $strChangeCopyModeCopy = '... 保留舊使用者.'; $strChangeCopyModeDeleteAndReload = ' ... 刪除舊使用者及重新讀取權限資料表.'; $strChangeCopyModeJustDelete = ' ... 刪除舊使用者.'; $strChangeCopyModeRevoke = ' ... 廢除所有舊使用者有效之權限並刪除.'; -$strChangeCopyMode = '建立新使用者及使用相同之權限, 及 ...'; $strChangeCopyUser = '更改登入資訊 / 複製使用者'; $strChangeDisplay = '選擇顯示之欄位'; $strChangePassword = '更改密碼'; -$strChange = '修改'; -$strCharsetOfFile = '字元表檔案:'; -$strCharsetsAndCollations = '字元集及校對'; -$strCharsets = '字元集'; $strCharset = '文字格式 (Charset)'; +$strCharsetOfFile = '字元表檔案:'; +$strCharsets = '字元集'; +$strCharsetsAndCollations = '字元集及校對'; $strCheckAll = '全選'; $strCheckOverhead = '檢查額外記錄 (overheaded)'; // nor sure yet. -$strCheckPrivsLong = '查詢資料庫 "%s" 之權限.'; $strCheckPrivs = '查詢權限'; +$strCheckPrivsLong = '查詢資料庫 "%s" 之權限.'; $strCheckTable = '檢查資料表'; $strChoosePage = '請選擇需要編輯的頁碼'; $strColComFeat = '顯示欄位註解'; @@ -128,8 +135,9 @@ $strCollation = '校對'; $strColumnNames = '欄位名稱'; $strColumnPrivileges = '指定欄位權限'; $strCommand = '指令'; -$strCommentsForTable = 'COMMENTS FOR TABLE'; // keep in SQL statement $strComments = '註解'; +$strCommentsForTable = 'COMMENTS FOR TABLE'; // keep in SQL statement +$strCompatibleHashing = 'MySQL 4.0 相容'; $strCompleteInserts = '使用完整新增指令'; $strCompression = '壓縮'; $strConfigFileError = 'phpMyAdmin 未能讀取您的設定檔! 這可能是因為 php 找到語法上的錯誤或 php 未能找到檔案而成.
請嘗試直接按下下方的連結開啟並查看 php 的錯誤信息. 通常的錯誤都來自某處漏了引號或分別.
如果按下連結後出現空白頁, 即代表沒有任何問題.'; @@ -139,43 +147,29 @@ $strConnections = '連線'; $strConstraintsForDumped = '備份資料表限制'; $strConstraintsForTable = '資料表限制'; $strCookiesRequired = 'Cookies 必須啟動才能登入.'; +$strCopyDatabaseOK = '資料庫 %s 已複製到 %s'; +$strCopyTable = '複製資料表到: (格式為 資料庫名稱.資料表名稱):'; $strCopyTableOK = '已經將資料表 %s 複製為 %s.'; $strCopyTableSameNames = '無法複製到相同資料表!'; -$strCopyTable = '複製資料表到: (格式為 資料庫名稱.資料表名稱):'; $strCouldNotKill = 'phpMyAdmin 無法中斷指令 %s. 可能這指令已經結束.'; -$strCreateIndexTopic = '新增一組索引'; +$strCreate = '建立'; $strCreateIndex = '新增 %s 組索引欄'; +$strCreateIndexTopic = '新增一組索引'; $strCreateNewDatabase = '建立新資料庫'; $strCreateNewTable = '建立新資料表於資料庫 %s'; $strCreatePage = '建立新一頁'; $strCreatePdfFeat = '建立 PDF'; -$strCreate = '建立'; $strCreationDates = '建立/更新/檢查 日期'; $strCriteria = '篩選'; $strCroatian = '克羅西亞語'; -$strCSVOptions = 'CSV 選項'; $strCyrillic = '西里爾語'; -$strCzechSlovak = '捷克語'; $strCzech = '捷克語'; +$strCzechSlovak = '捷克語'; -$strDanish = '丹麥語'; -$strDatabaseEmpty = '資料庫名稱並未輸入!!'; -$strDatabaseExportOptions = '資料庫輸出選項'; -$strDatabaseHasBeenDropped = '資料庫 %s 已被刪除'; -$strDatabaseNoTable = '這資料庫沒有資料表!'; -$strDatabasesDropped = '%s 個資料庫已成功刪除.'; -$strDatabasesStatsDisable = '停止統計數據'; -$strDatabasesStatsEnable = '啟動統計數據'; -$strDatabasesStatsHeavyTraffic = '註: 啟動資料庫統計數據可能會產生大量由 Web 伺服器及 MySQL 之間的流量.'; -$strDatabasesStats = '資料庫統計'; -$strDatabases = '資料庫'; -$strDatabase = '資料庫'; -$strDataDict = '數據字典'; -$strDataOnly = '只有資料'; -$strData = '資料'; $strDBComment = '資料庫註解文字: '; -$strDBGContextID = '本文 (Context) ID'; +$strDBCopy = '複製資料庫到'; $strDBGContext = '本文 (Context)'; +$strDBGContextID = '本文 (Context) ID'; $strDBGHits = '次數'; $strDBGLine = '行'; $strDBGMaxTimeMs = '最大時間, ms'; @@ -183,54 +177,70 @@ $strDBGMinTimeMs = '最小時間, ms'; $strDBGModule = '模組'; $strDBGTimePerHitMs = '時間/次, ms'; $strDBGTotalTimeMs = '總時間, ms'; -$strDbPrivileges = '指定資料庫權限'; $strDBRename = '更改資料庫名稱到'; +$strDanish = '丹麥語'; +$strData = '資料'; +$strDataDict = '數據字典'; +$strDataOnly = '只有資料'; +$strDatabase = '資料庫'; +$strDatabaseEmpty = '資料庫名稱並未輸入!!'; +$strDatabaseExportOptions = '資料庫輸出選項'; +$strDatabaseHasBeenDropped = '資料庫 %s 已被刪除'; +$strDatabaseNoTable = '這資料庫沒有資料表!'; +$strDatabases = '資料庫'; +$strDatabasesDropped = '%s 個資料庫已成功刪除.'; +$strDatabasesStats = '資料庫統計'; +$strDatabasesStatsDisable = '停止統計數據'; +$strDatabasesStatsEnable = '啟動統計數據'; +$strDatabasesStatsHeavyTraffic = '註: 啟動資料庫統計數據可能會產生大量由 Web 伺服器及 MySQL 之間的流量.'; +$strDbPrivileges = '指定資料庫權限'; $strDbSpecific = '指定資料庫'; -$strDefaultValueHelp = '預設值: 請只輸入該預設值, 無需加上任何反斜線或引號'; $strDefault = '預設值'; +$strDefaultValueHelp = '預設值: 請只輸入該預設值, 無需加上任何反斜線或引號'; $strDefragment = '整理資料表'; -$strDelayedInserts = '使用延遲式新增'; -$strDeleteAndFlushDescr = '這是一個最清潔的做法,但重新讀取權限需一段時間.'; -$strDeleteAndFlush = '刪除使用者及重新讀取權限.'; -$strDeletedRows = '已刪除欄數:'; -$strDeleted = '記錄已被刪除'; -$strDelete = '刪除'; -$strDeleting = '刪除 %s'; $strDelOld = '本頁的參考到資料表已不存在. 您希望刪除這些參考嗎?'; +$strDelayedInserts = '使用延遲式新增'; +$strDelete = '刪除'; +$strDeleteAndFlush = '刪除使用者及重新讀取權限.'; +$strDeleteAndFlushDescr = '這是一個最清潔的做法,但重新讀取權限需一段時間.'; +$strDeleted = '記錄已被刪除'; +$strDeletedRows = '已刪除欄數:'; +$strDeleting = '刪除 %s'; $strDescending = '遞減'; $strDescription = '說明'; $strDictionary = '字典'; -$strDisabled = '未啟動'; $strDisableForeignChecks = '暫定外來鍵 (Foreign Key) 檢查'; +$strDisabled = '未啟動'; $strDisplayFeat = '功能顯示'; $strDisplayOrder = '顯示次序'; $strDisplayPDF = '顯示 PDF 概要'; $strDoAQuery = '以範例查詢 (萬用字元 : "%")'; -$strDocu = '說明文件'; $strDoYouReally = '您確定要 '; +$strDocu = '說明文件'; +$strDrop = '刪除'; $strDropDatabaseStrongWarning = '您將會刪除整個資料庫!'; $strDropSelectedDatabases = '刪除已選擇之資料庫'; $strDropUsersDb = '刪除與使用者相同名稱之資料庫.'; -$strDrop = '刪除'; -$strDumpingData = '列出以下資料庫的數據:'; $strDumpSaved = '備份已儲到檔案 %s.'; $strDumpXRows = '備份 %s 行, 由 %s 行開始.'; +$strDumpingData = '列出以下資料庫的數據:'; $strDynamic = '動態'; +$strEdit = '編輯'; $strEditPDFPages = '編輯 PDF 頁碼'; $strEditPrivileges = '編輯權限'; -$strEdit = '編輯'; $strEffective = '實際'; -$strEmptyResultSet = 'MySQL 傳回的查詢結果為空 (原因可能為:沒有找到符合條件的記錄)'; $strEmpty = '清空'; +$strEmptyResultSet = 'MySQL 傳回的查詢結果為空 (原因可能為:沒有找到符合條件的記錄)'; $strEnabled = '啟動'; $strEncloseInTransaction = '使用事務塊 (Transaction) 方式'; +$strEnd = '最後一頁'; $strEndCut = '結束 剪取'; $strEndRaw = '結束 原始資料'; -$strEnd = '最後一頁'; -$strEnglishPrivileges = '注意: MySQL 權限名稱會以英語顯示'; $strEnglish = '英語'; +$strEnglishPrivileges = '注意: MySQL 權限名稱會以英語顯示'; $strError = '錯誤'; +$strEscapeWildcards = '萬用符號 _ 及 % 應正確地加入 \ '; $strEstonian = '愛沙尼亞語'; $strExcelEdition = 'Excel 版本'; $strExcelOptions = 'Excel 選項'; @@ -241,34 +251,34 @@ $strExtendedInserts = '伸延新增模式'; $strExtra = '附加'; $strFailedAttempts = '嘗試失敗'; +$strField = '欄位'; $strFieldHasBeenDropped = '資料表 %s 已被刪除'; +$strFields = '欄位'; $strFieldsEmpty = ' 欄位總數是空的! '; $strFieldsEnclosedBy = '「欄位」使用字元:'; $strFieldsEscapedBy = '「ESCAPE」使用字元:'; $strFieldsTerminatedBy = '「欄位分隔」使用字元:'; -$strFields = '欄位'; -$strField = '欄位'; $strFileAlreadyExists = '檔案 %s 已存在,請更改檔案名稱或選擇「覆寫己存在檔案」選項.'; $strFileCouldNotBeRead = '讀案無法讀取'; +$strFileNameTemplate = '檔案名稱樣式'; $strFileNameTemplateHelp = '使用 __DB__ 作為資料庫名稱, __TABLE__ 為資料表名稱. %s任何 strftime%s 內關於時間及附加選項會自動加入. 其他文字將會保留.'; $strFileNameTemplateRemember = '保留樣式名稱'; -$strFileNameTemplate = '檔案名稱樣式'; $strFixed = '固定'; $strFlushPrivilegesNote = '註: phpMyAdmin 直接由 MySQL 權限資料表取得使用者權限. 如果使用者自行更改資料表, 資料表內容將可能與實際使用者情況有異. 在這情況下, 您應在繼續前 %s重新載入%s 權限資料表.'; $strFlushTable = '強迫更新資料表 ("FLUSH")'; -$strFormat = '格式'; $strFormEmpty = '表格內漏填一些資料!'; +$strFormat = '格式'; $strFullText = '顯示完整文字'; $strFunction = '函數'; $strGenBy = '建立'; -$strGeneralRelationFeat = '一般關聯功能'; $strGenTime = '建立日期'; +$strGeneralRelationFeat = '一般關聯功能'; $strGeorgian = '格魯吉亞語'; $strGerman = '德語'; +$strGlobal = '整體'; $strGlobalPrivileges = '整體權限'; $strGlobalValue = '整體值'; -$strGlobal = '整體'; $strGo = '執行'; $strGrantOption = '授權'; $strGreek = '希臘語'; @@ -279,59 +289,64 @@ $strHasBeenCreated = '已經建立'; $strHaveToShow = '您需要選擇最少顯示一行欄位'; $strHebrew = '希伯來語'; $strHexForBinary = '以十六進制數值顯示二進制欄位'; -$strHomepageOfficial = 'phpMyAdmin 官方網站'; $strHome = '主目錄'; -$strHostEmpty = '請輸入主機名稱!'; +$strHomepageOfficial = 'phpMyAdmin 官方網站'; $strHost = '主機'; +$strHostEmpty = '請輸入主機名稱!'; $strHungarian = '匈牙利語'; $strIcelandic = '冰島語'; $strId = 'ID'; // use eng $strIdxFulltext = '全文檢索'; $strIfYouWish = '如果您要指定資料匯入的欄位,請輸入用逗號隔開的欄位名稱'; -$strIgnoreInserts = '使用忽略加入 (insert)'; $strIgnore = '忽略'; +$strIgnoreInserts = '使用忽略加入 (insert)'; $strIgnoringFile = '忽略檔案 %s'; $strImportDocSQL = '讀取 docSQL 檔案'; $strImportFiles = '輸入檔案'; $strImportFinished = '輸入完成'; -$strIndexes = '索引'; +$strInUse = '使用中'; +$strIndex = '索引鍵 INDEX'; $strIndexHasBeenDropped = '索引 %s 已被刪除'; $strIndexName = '索引名稱 :'; $strIndexType = '索引類型 :'; -$strIndex = '索引'; +$strIndexWarningMultiple = '多過一個 %s 鍵已建立到欄位 `%s` 中'; +$strIndexWarningPrimary = '主鍵 PRIMARY 及 索引鍵 INDEX 不應同時間設定欄位 `%s` 中'; +$strIndexWarningTable = '於資料表 `%s` 中有索引問題'; +$strIndexWarningUnique = '唯一鍵 UNIQUE 及 索引鍵 INDEX 不應同時間設定欄位 `%s` 中'; +$strIndexes = '索引'; $strInnodbStat = 'InnoDB 狀態'; $strInsecureMySQL = '設定檔內有關設定 (root登入及沒有密碼) 與預設的 MySQL 權限戶口相同。 MySQL 伺服器在這預設的設定運行的話會很容易被入侵,您應更改有關設定去防止安全漏洞。'; +$strInsert = '新增'; $strInsertAsNewRow = '儲存為新記錄'; -$strInsertedRowId = '新增資料列 id:'; -$strInsertedRows = '新增列數:'; +$strInsertBookmarkTitle = '請輸入書籤標題'; $strInsertNewRow = '新增一筆記錄'; $strInsertTextfiles = '將文字檔資料匯入資料表'; -$strInsert = '新增'; +$strInsertedRowId = '新增資料列 id:'; +$strInsertedRows = '新增列數:'; $strInstructions = '指令'; $strInternalNotNecessary = '* 當內部關聯在 InnoDB 已存在時是無需要的.'; $strInternalRelations = '內部關聯'; -$strInUse = '使用中'; $strJapanese = '日語'; $strJumpToDB = '跳到資料庫 "%s".'; -$strJustDeleteDescr = ' "刪除" 的使用者仍然能夠登入資料庫直至重新載入資料庫為止.'; $strJustDelete = '只從權限資料庫刪除使用者.'; +$strJustDeleteDescr = ' "刪除" 的使用者仍然能夠登入資料庫直至重新載入資料庫為止.'; $strKeepPass = '請不要更改密碼'; $strKeyname = '鍵名'; $strKill = 'Kill'; //should expressed in English $strKorean = '韓語'; +$strLaTeX = 'LaTeX'; // use eng +$strLaTeXOptions = 'LaTeX 選項'; $strLandscape = '橫向'; $strLatexCaption = '資料表標題'; $strLatexContent = '資料表 __TABLE__ 內容'; -$strLatexContinuedCaption = '連續資料表標題'; $strLatexContinued = '(連續)'; +$strLatexContinuedCaption = '連續資料表標題'; $strLatexIncludeCaption = '包括資料表標題'; $strLatexLabel = '標記鍵名'; -$strLaTeX = 'LaTeX'; // use eng -$strLaTeXOptions = 'LaTeX 選項'; $strLatexStructure = '資料表 __TABLE__ 結構'; $strLatvian = '拉脫維亞語'; $strLengthSet = '長度/集合*'; @@ -345,32 +360,32 @@ $strLoadExplanation = '最佳模式是由系統自動檢查, 如果錯誤, 您 $strLoadMethod = 'LOAD 模式'; $strLocalhost = '本地'; $strLocationTextfile = '文字檔案的位置'; -$strLoginInformation = '登入資訊'; -$strLogin = '登入'; -$strLogout = '登出系統'; $strLogPassword = '密碼:'; $strLogServer = '伺服器'; $strLogUsername = '登入名稱:'; +$strLogin = '登入'; +$strLoginInformation = '登入資訊'; +$strLogout = '登出系統'; -$strMaximumSize = '最大容量: %s%s'; +$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; // keep in SQL statement +$strMIME_MIMEtype = 'MIME 類型'; $strMIME_available_mime = '可使用 MIME 類型'; $strMIME_available_transform = '可使用轉換方式'; $strMIME_description = '說明'; -$strMIME_MIMEtype = 'MIME 類型'; $strMIME_nodescription = '這個轉換方式沒有說明.
請向作者查詢 %s 是甚麼用途.'; -$strMIME_transformation_note = '有關可使用之轉換方式選項及 MINE 類型轉換選項, 請查看 %s轉換方式說明%s'; -$strMIME_transformation_options_note = '請用以下的格式輸入轉換選項值: \'a\',\'b\',\'c\'...
如您需要輸入反斜線 ("\") 或單引號 ("\'") 請再加上反斜線 (例如 \'\\\\xyz\' or \'a\\\'b\').'; -$strMIME_transformation_options = '轉換方式選項'; $strMIME_transformation = '瀏覽器轉換方式'; -$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; // keep in SQL statement +$strMIME_transformation_note = '有關可使用之轉換方式選項及 MINE 類型轉換選項, 請查看 %s轉換方式說明%s'; +$strMIME_transformation_options = '轉換方式選項'; +$strMIME_transformation_options_note = '請用以下的格式輸入轉換選項值: \'a\',\'b\',\'c\'...
如您需要輸入反斜線 ("\") 或單引號 ("\'") 請再加上反斜線 (例如 \'\\\\xyz\' or \'a\\\'b\').'; $strMIME_without = 'MIME 類型以斜體顯示是沒有分隔轉換功能'; +$strMaximumSize = '最大容量: %s%s'; $strModifications = '修改已儲存'; -$strModifyIndexTopic = '修改索引'; $strModify = '修改'; +$strModifyIndexTopic = '修改索引'; $strMoreStatusVars = '更多狀況資訊'; +$strMoveTable = '移動資料表到:(格式為 資料庫名稱.資料表名稱)'; $strMoveTableOK = '資料表 %s 已經移動到 %s.'; $strMoveTableSameNames = '無法移動到相同資料表!'; -$strMoveTable = '移動資料表到:(格式為 資料庫名稱.資料表名稱)'; $strMultilingual = '多語言'; $strMustSelectFile = '您應選擇需要新增的檔案.'; $strMySQLCharset = 'MySQL 文字編碼'; @@ -385,16 +400,17 @@ $strMySQLShowVars = '顯示 MySQL 系統變數'; $strName = '名稱'; $strNeedPrimaryKey = '您需要在此資料表設定主鍵 (Primary Key)'; $strNext = '下一個'; -$strNoDatabasesSelected = '沒有資料庫選擇.'; +$strNo = ' 否 '; +$strNoActivity = '由於已閒置了達 %s 秒, 請重新登入'; $strNoDatabases = '沒有資料庫'; +$strNoDatabasesSelected = '沒有資料庫選擇.'; $strNoDescription = '沒有說明'; $strNoDropDatabases = '"DROP DATABASE" 指令已經停用.'; $strNoExplain = '略過說明 SQL'; $strNoFrames = 'phpMyAdmin 較為適合使用在支援頁框的瀏覽器.'; -$strNoIndexPartsDefined = '部份索引資料還未定義!'; $strNoIndex = '沒有已定義的索引!'; +$strNoIndexPartsDefined = '部份索引資料還未定義!'; $strNoModification = '沒有變更'; -$strNone = '不適用'; $strNoOptions = '這種格式並無選項'; $strNoPassword = '不用密碼'; $strNoPermission = 'Web 伺服器沒有權限儲存檔案 %s.'; @@ -405,20 +421,21 @@ $strNoRights = '您現在沒有足夠的權限!'; $strNoRowsSelected = '並無資料列已選擇'; $strNoSpace = '空間不足儲存檔案 %s.'; $strNoTablesFound = '資料庫中沒有資料表'; +$strNoThemeSupport = '不支援款式功能, 請查看設定案及儲存款式檔案的資料夾 %s.'; +$strNoUsersFound = '找不到使用者'; +$strNoValidateSQL = '略過檢查 SQL'; +$strNone = '不適用'; $strNotNumber = '這不是一個數字!'; $strNotOK = '未能確定'; $strNotSet = '%s 資料表找不到或還未在 %s 設定'; $strNotValidNumber = '不是有效的列數!'; -$strNoUsersFound = '找不到使用者'; -$strNoValidateSQL = '略過檢查 SQL'; -$strNo = ' 否 '; $strNull = 'Null'; //should expressed in English $strNumSearchResultsInTable = '%s 項資料符合 - 於資料表 %s'; $strNumSearchResultsTotal = '總計: %s 項資料符合'; $strNumTables = '個資料表'; -$strOftenQuotation = '最常用的是引號,「非必須」表示只有 char 和 varchar 欄位會被包括起來'; $strOK = '確定'; +$strOftenQuotation = '最常用的是引號,「非必須」表示只有 char 和 varchar 欄位會被包括起來'; $strOperations = '管理'; $strOperator = '操作員'; $strOptimizeTable = '最佳化資料表'; @@ -428,13 +445,16 @@ $strOr = '或'; $strOverhead = '多餘'; $strOverwriteExisting = '覆寫已存在檔案'; +$strPHP40203 = '您正使用 PHP 版本 4.2.3, 這版本有一個雙字節字元的嚴重錯誤(mbstring). 請參閱 PHP 臭蟲報告編號 19404. phpMyAdmin 並不建議使用這個版本的 PHP .'; +$strPHPVersion = 'PHP 版本'; $strPageNumber = '頁碼:'; $strPaperSize = '紙張大小'; $strPartialText = '顯示部份文字'; +$strPassword = '密碼'; $strPasswordChanged = '%s 的密碼已成功更改.'; $strPasswordEmpty = '請輸入密碼!'; +$strPasswordHashing = '密碼雜湊'; $strPasswordNotSame = '第二次輸入的密碼不同!'; -$strPassword = '密碼'; $strPdfDbSchema = '"%s" 資料庫概要 - 第 %s 頁'; $strPdfInvalidTblName = '資料表 "%s" 不存在!'; $strPdfNoTables = '沒有資料表'; @@ -443,22 +463,20 @@ $strPerMinute = '每分鐘'; $strPerSecond = '每秒'; $strPersian = '波斯語'; $strPhoneBook = '電話簿'; -$strPHP40203 = '您正使用 PHP 版本 4.2.3, 這版本有一個雙字節字元的嚴重錯誤(mbstring). 請參閱 PHP 臭蟲報告編號 19404. phpMyAdmin 並不建議使用這個版本的 PHP .'; -$strPHPVersion = 'PHP 版本'; $strPhp = '建立 PHP 程式碼'; $strPmaDocumentation = 'phpMyAdmin 說明文件'; -$strPmaUriError = ' 必須設定 $cfg[\'PmaAbsoluteUri\'] 在設定檔內!'; +$strPmaUriError = ' 必須在設定檔內設定 $cfg[\'PmaAbsoluteUri\'] !'; $strPolish = '波蘭語'; $strPortrait = '直向'; $strPos1 = '第一頁'; $strPrevious = '前一頁'; +$strPrimary = '主鍵 PRIMARY'; $strPrimaryKeyHasBeenDropped = '主鍵已被刪除'; $strPrimaryKeyName = '主鍵的名稱必須稱為 PRIMARY!'; $strPrimaryKeyWarning = '("PRIMARY" 必須是主鍵的名稱以及是唯一一組主鍵!)'; -$strPrimary = '主鍵'; -$strPrintViewFull = '列印檢視 (顯示完整文字)'; -$strPrintView = '列印檢視'; $strPrint = '列印'; +$strPrintView = '列印檢視'; +$strPrintViewFull = '列印檢視 (顯示完整文字)'; $strPrivDescAllPrivileges = '包括所有權限除了授權 (GRNANT).'; $strPrivDescAlter = '容許修改現有資料表的結構.'; $strPrivDescCreateDb = '容許建立新資料庫及資料表.'; @@ -488,14 +506,14 @@ $strPrivDescShutdown = '容許停止伺服器.'; $strPrivDescSuper = '容許連線, 就算超過了最大連線限制; 用於最高系統管理如設定整體權限或中止其他使用者指令.'; $strPrivDescUpdate = '容許更新數據.'; $strPrivDescUsage = '沒有權限.'; -$strPrivilegesReloaded = '權限已成功重新讀取.'; $strPrivileges = '權限'; +$strPrivilegesReloaded = '權限已成功重新讀取.'; $strProcesslist = '系統執行清單'; $strPutColNames = '將欄位名稱放在首行'; +$strQBE = '依範例查詢 (QBE)'; $strQBEDel = '移除'; $strQBEIns = '新增'; -$strQBE = '依範例查詢 (QBE)'; $strQueryFrame = '查詢視窗'; $strQueryOnDb = '在資料庫 %s 執行 SQL 語法:'; $strQuerySQLHistory = 'SQL 歷程'; @@ -504,51 +522,62 @@ $strQueryTime = '查詢需時 %01.4f 秒'; $strQueryType = '查詢方式'; $strQueryWindowLock = '不要將這語法覆蓋到本視窗外的SQL語法'; +$strReType = '確認密碼'; $strReceived = '接收'; $strRecords = '記錄'; $strReferentialIntegrity = '檢查指示完整性:'; $strRefresh = '更新'; -$strRelationalSchema = '關聯概要'; $strRelationNotWorking = '關聯資料表的附加功能未能啟動, %s請按此%s 查出問題原因.'; -$strRelationsForTable = 'RELATIONS FOR TABLE'; // keep in SQL statement -$strRelations = '關聯'; $strRelationView = '關聯檢視'; +$strRelationalSchema = '關聯概要'; +$strRelations = '關聯'; +$strRelationsForTable = 'RELATIONS FOR TABLE'; // keep in SQL statement $strReloadFailed = '重新載入MySQL失敗'; -$strReloadingThePrivileges = '重新讀取權限'; $strReloadMySQL = '重新載入 MySQL'; +$strReloadingThePrivileges = '重新讀取權限'; $strRemoveSelectedUsers = '移除已選擇使用者'; $strRenameDatabaseOK = '資料庫 %s 已更改名稱為 %s'; -$strRenameTableOK = '已經將資料表 %s 改名成 %s'; $strRenameTable = '將資料表改名為'; +$strRenameTableOK = '已經將資料表 %s 改名成 %s'; $strRepairTable = '修復資料表'; +$strReplace = '取代'; $strReplaceNULLBy = '將 NULL 取代為'; $strReplaceTable = '以檔案取代資料表資料'; -$strReplace = '取代'; $strReset = '重置'; $strResourceLimits = '資源限制'; -$strReType = '確認密碼'; -$strRevokeAndDeleteDescr = '使用者仍然有 USAGE 權限直至權限資料表更新讀取.'; -$strRevokeAndDelete = '廢除使用者所有有效之權限並刪除.'; -$strRevokeMessage = '您已移除這位使用者的權限: %s'; $strRevoke = '移除'; +$strRevokeAndDelete = '廢除使用者所有有效之權限並刪除.'; +$strRevokeAndDeleteDescr = '使用者仍然有 USAGE 權限直至權限資料表更新讀取.'; +$strRevokeMessage = '您已移除這位使用者的權限: %s'; $strRomanian = '羅馬尼亞語'; $strRowLength = '資料列長度'; -$strRowsFrom = '筆記錄,開始列數:'; $strRowSize = '資料列大小'; +$strRows = '資料列列數'; +$strRowsFrom = '筆記錄,開始列數:'; $strRowsModeFlippedHorizontal = '垂直 (旋轉標題)'; $strRowsModeHorizontal = '水平'; $strRowsModeOptions = '顯示為 %s 方式 及 每隔 %s 行顯示欄名'; $strRowsModeVertical = '垂直'; $strRowsStatistic = '資料列統計數值'; -$strRows = '資料列列數'; -$strRunning = '在 %s 執行'; $strRunQuery = '執行語法'; $strRunSQLQuery = '在資料庫 %s 執行以下指令'; +$strRunning = '在 %s 執行'; $strRussian = '俄語'; -$strSaveOnServer = '儲存到伺服器於 %s 目錄'; +$strSQL = 'SQL'; // should express in english +$strSQLExportType = '輸出方式'; +$strSQLOptions = 'SQL 選項'; +$strSQLParserBugMessage = '這可能是您找到了 SQL 分析程式的一些程式錯誤,請細心查看您的語法,檢查一下引號是正確及沒有遺漏,其他可能出錯的原因可能來自您上載檔案時在引號外的地方使用了二進制碼。您可以嘗試在 MySQL 命令列介面執行該語法。如 MySQL 伺服器發出錯誤信息,這可能幫助您去找出問題所在。如您仍然未能解決問題,或在分析程式出現錯誤,但在命令列模式能正常執行,請將該句出現錯誤的 SQL 語法抽出,並將以下的"剪取"部份一同提交到臭虫區:'; +$strSQLParserUserError = '可能是您的 SQL 語法出現錯誤,如 MySQL 伺服器發出錯誤信息,這可能幫助您去找出問題所在。'; +$strSQLQuery = 'SQL 語法'; +$strSQLResult = 'SQL 查詢結果'; +$strSQPBugInvalidIdentifer = '無效的識別碼 (Invalid Identifer)'; +$strSQPBugUnclosedQuote = '未完結的引號 (Unclosed quote)'; +$strSQPBugUnknownPunctuation = '不知明的標點符號 (Unknown Punctuation String)'; $strSave = '儲存'; +$strSaveOnServer = '儲存到伺服器於 %s 目錄'; $strScaleFactorSmall = '比例倍數太細, 無法將圖表放在一頁內'; +$strSearch = '搜索'; $strSearchFormTitle = '搜索資料庫'; $strSearchInTables = '於以下資料表:'; $strSearchNeedle = '尋找之文字或數值 (萬用字元: "%"):'; @@ -558,62 +587,52 @@ $strSearchOption3 = '完整詞語'; $strSearchOption4 = '以規則表示法 (regular expression) 搜索'; $strSearchResultsFor = '搜索 "%s" 的結果 %s:'; $strSearchType = '尋找:'; -$strSearch = '搜索'; $strSecretRequired = '設定檔案現在需要密碼 (passphrase) (blowfish_secret).'; $strSelectADb = '請選擇資料庫'; $strSelectAll = '全選'; +$strSelectBinaryLog = '選擇檢視二進制記錄'; $strSelectFields = '選擇欄位 (至少一個)'; $strSelectNumRows = '查詢中'; $strSelectTables = '選擇資料表'; $strSend = '下載儲存'; $strSent = '送出'; +$strServer = '伺服器'; $strServerChoice = '選擇伺服器'; $strServerNotResponding = '伺服器並無回應'; -$strServerStatusUptime = '這 MySQL 伺服器已啟動了 %s. 伺服器於 %s 啟動.'; $strServerStatus = '運行資訊'; +$strServerStatusUptime = '這 MySQL 伺服器已啟動了 %s. 伺服器於 %s 啟動.'; $strServerTabProcesslist = '處理'; $strServerTabVariables = '資訊'; $strServerTrafficNotes = '伺服器流量: 這些表顯示了此 MySQL 伺服器自啟動以來的網絡流量統計。'; $strServerVars = '伺服器資訊及設定'; $strServerVersion = '伺服器版本'; -$strServer = '伺服器'; $strSessionValue = '程序數值'; $strSetEnumVal = '如欄位格式是 "enum" 或 "set", 請使用以下的格式輸入: \'a\',\'b\',\'c\'...
如在數值上需要輸入反斜線 (\) 或單引號 (\') , 請再加上反斜線 (例如 \'\\\\xyz\' or \'a\\\'b\').'; +$strShow = '顯示'; $strShowAll = '顯示全部'; $strShowColor = '顯示顏色'; $strShowDatadictAs = '數據字典格式'; $strShowFullQueries = '顯示完整查詢'; $strShowGrid = '顯示框格'; -$strShowingRecords = '顯示記錄'; $strShowPHPInfo = '顯示 PHP 資訊'; $strShowTableDimension = '顯示表格大小'; $strShowTables = '顯示資料表'; $strShowThisQuery = '重新顯示 SQL 語法 '; -$strShow = '顯示'; +$strShowingRecords = '顯示記錄'; $strSimplifiedChinese = '簡體中文'; $strSingly = '(只會排序現時的記錄)'; $strSize = '大小'; $strSlovak = '斯洛伐克語'; $strSlovenian = '斯洛文尼亞語'; -$strSortByKey = '依鍵名排序'; $strSort = '排序'; +$strSortByKey = '依鍵名排序'; $strSpaceUsage = '已使用空間'; $strSpanish = '西班牙語'; $strSplitWordsWithSpace = '每組文字以空格 (" ") 分隔.'; -$strSQLExportType = '輸出方式'; -$strSQLOptions = 'SQL 選項'; -$strSQLParserBugMessage = '這可能是您找到了 SQL 分析程式的一些程式錯誤,請細心查看您的語法,檢查一下引號是正確及沒有遺漏,其他可能出錯的原因可能來自您上載檔案時在引號外的地方使用了二進制碼。您可以嘗試在 MySQL 命令列介面執行該語法。如 MySQL 伺服器發出錯誤信息,這可能幫助您去找出問題所在。如您仍然未能解決問題,或在分析程式出現錯誤,但在命令列模式能正常執行,請將該句出現錯誤的 SQL 語法抽出,並將以下的"剪取"部份一同提交到臭虫區:'; -$strSQLParserUserError = '可能是您的 SQL 語法出現錯誤,如 MySQL 伺服器發出錯誤信息,這可能幫助您去找出問題所在。'; -$strSQLQuery = 'SQL 語法'; -$strSQLResult = 'SQL 查詢結果'; -$strSQL = 'SQL'; // should express in english -$strSQPBugInvalidIdentifer = '無效的識別碼 (Invalid Identifer)'; -$strSQPBugUnclosedQuote = '未完結的引號 (Unclosed quote)'; -$strSQPBugUnknownPunctuation = '不知明的標點符號 (Unknown Punctuation String)'; $strStatCheckTime = '最後檢查'; $strStatCreateTime = '建立'; -$strStatement = '敘述'; $strStatUpdateTime = '最後更新'; +$strStatement = '敘述'; $strStatus = '狀態'; $strStrucCSV = 'CSV 資料'; $strStrucData = '結構與資料'; @@ -627,8 +646,10 @@ $strSubmit = '送出'; $strSuccess = '您的SQL語法已順利執行'; $strSum = '總計'; $strSwedish = '瑞典語'; +$strSwitchToDatabase = '轉移到複製之資料庫'; $strSwitchToTable = '跳到已複製之資料表'; +$strTable = '資料表'; $strTableComments = '資料表註解文字'; $strTableEmpty = '請輸入資料表名稱!'; $strTableHasBeenDropped = '資料表 %s 已被刪除'; @@ -637,25 +658,24 @@ $strTableHasBeenFlushed = '資料表 %s 已被強迫更新'; $strTableMaintenance = '資料表維護'; $strTableOfContents = '目錄'; $strTableOptions = '資料表選項'; -$strTables = '%s 資料表'; $strTableStructure = '資料表格式:'; $strTableType = '資料表類型'; -$strTable = '資料表'; +$strTables = '%s 資料表'; $strTakeIt = '選用'; $strTblPrivileges = '指定資料表權限'; $strTextAreaLength = ' 由於長度限制
此欄位不能編輯 '; $strThai = '泰語'; -$strTheContents = '檔案內容將會取代選定的資料表中具有相同主鍵或唯一鍵的記錄'; $strTheContent = '檔案內容已經匯入資料表'; -$strTheme = '款式'; +$strTheContents = '檔案內容將會取代選定的資料表中具有相同主鍵或唯一鍵的記錄'; $strTheTerminator = '分隔欄位的字元'; +$strTheme = '款式'; $strThisHost = '指定主機'; $strThisNotDirectory = '這並不是一個目錄'; $strThreadSuccessfullyKilled = '指令 %s 已成功中止.'; $strTime = '時間'; $strToggleScratchboard = '轉換便條'; -$strTotalUC = '總共'; $strTotal = '總計'; +$strTotalUC = '總共'; $strTraditionalChinese = '繁體中文'; $strTraditionalSpanish = '傳統西班牙語'; $strTraffic = '流量'; @@ -677,17 +697,22 @@ $strType = '型態'; $strUkrainian = '烏克蘭語'; $strUncheckAll = '全部取消'; $strUnicode = '統一碼 (Unicode)'; -$strUnique = '唯一'; +$strUnique = '唯一鍵 UNIQUE'; $strUnknown = '不詳'; $strUnselectAll = '全部取消'; +$strUpdComTab = '請參看說明文件查詢如何更新 Column_comments 資料表'; $strUpdatePrivMessage = '您已經更新了 %s 的權限.'; $strUpdateProfileMessage = '資料己經更新.'; $strUpdateQuery = '更新語法'; -$strUpdComTab = '請參看說明文件查詢如何更新 Column_comments 資料表'; $strUpgrade = '您應該更新到 %s %s 或之後.'; $strUsage = '使用'; $strUseBackquotes = '在資料表及欄位使用引號'; $strUseHostTable = '使用主機資料表'; +$strUseTabKey = '按 TAB 鍵跳到下一個數值, 或 CTRL+方向鍵 作隨意移動'; +$strUseTables = '使用資料表'; +$strUseTextField = '文字輸入'; +$strUseThisValue = '使用此值'; +$strUser = '使用者'; $strUserAlreadyExists = '使用者 %s 己存在!'; $strUserEmpty = '請輸入使用者名稱!'; $strUserName = '使用者名稱'; @@ -695,21 +720,17 @@ $strUserNotFound = '選擇的使用者在權限資料表內找不到.'; $strUserOverview = '使用者一覽'; $strUsersDeleted = '選擇的使用者已成功刪除.'; $strUsersHavingAccessToDb = '可讀取 "%s" 之使用者'; -$strUser = '使用者'; -$strUseTables = '使用資料表'; -$strUseTextField = '文字輸入'; -$strUseThisValue = '使用此值'; $strValidateSQL = '檢查 SQL'; $strValidatorError = 'SQL 分析程式未能啟動,請檢查是否已將 %s文件%s 內的 PHP 檔案安裝。'; $strValue = '值'; $strVar = '資訊'; -$strViewDumpDatabases = '顯示資料庫概要 (schema)'; -$strViewDumpDB = '檢視資料庫的備份概要 (dump schema)'; $strViewDump = '檢視資料表的備份概要 (dump schema)'; +$strViewDumpDB = '檢視資料庫的備份概要 (dump schema)'; +$strViewDumpDatabases = '顯示資料庫概要 (schema)'; -$strWebServerUploadDirectoryError = '設定之上載目錄錯誤,未能使用'; $strWebServerUploadDirectory = 'Web 伺服器上載目錄'; +$strWebServerUploadDirectoryError = '設定之上載目錄錯誤,未能使用'; $strWelcome = '歡迎使用 %s'; $strWestEuropean = '西歐語文'; $strWildcard = '萬用字元'; @@ -726,26 +747,8 @@ $strYes = ' 是 '; $strZeroRemovesTheLimit = '註: 設定這些選項為 0 (零) 可解除限制.'; $strZip = '"zipped"'; -$strAddFields = 'Add %s field(s)'; //to translate -$strInsertBookmarkTitle = 'Please insert bookmark title'; //to translate -$strNoThemeSupport = 'No themes support, please check your configuration and/or your themes in directory %s.'; //to translate -$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate -$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate -$strBinLogName = 'Log name'; //to translate -$strBinLogPosition = 'Position'; //to translate -$strBinLogEventType = 'Event type'; //to translate -$strBinLogServerId = 'Server ID'; //to translate -$strBinLogOriginalPosition = 'Original position'; //to translate -$strBinLogInfo = 'Information'; //to translate -$strBinaryLog = 'Binary log'; //to translate -$strSelectBinaryLog = 'Select binary log to view'; //to translate -$strDBCopy = 'Copy database to'; //to translate -$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate -$strSwitchToDatabase = 'Switch to copied database'; //to translate -$strPasswordHashing = 'Password Hashing'; //to translate -$strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate -$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate -$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/croatian-iso-8859-2.inc.php b/lang/croatian-iso-8859-2.inc.php index 11cd89bc1..10ed2ec38 100644 --- a/lang/croatian-iso-8859-2.inc.php +++ b/lang/croatian-iso-8859-2.inc.php @@ -766,4 +766,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/croatian-utf-8.inc.php b/lang/croatian-utf-8.inc.php index df7a7ac73..9b82e1d10 100644 --- a/lang/croatian-utf-8.inc.php +++ b/lang/croatian-utf-8.inc.php @@ -767,4 +767,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/croatian-windows-1250.inc.php b/lang/croatian-windows-1250.inc.php index b033b08ec..13d59859f 100644 --- a/lang/croatian-windows-1250.inc.php +++ b/lang/croatian-windows-1250.inc.php @@ -766,4 +766,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/czech-iso-8859-2.inc.php b/lang/czech-iso-8859-2.inc.php index c54f18888..5713beb1a 100644 --- a/lang/czech-iso-8859-2.inc.php +++ b/lang/czech-iso-8859-2.inc.php @@ -23,18 +23,17 @@ $datefmt = '%a %d. %b %Y, %H:%M'; $timespanfmt = '%s dn, %s hodin, %s minut a %s sekund'; +$strAPrimaryKey = 'V tabulce %s byl vytvoen primrn kl'; $strAbortedClients = 'Peruen'; $strAbsolutePathToDocSqlDir = 'docSQL adres'; -$strAccessDeniedExplanation = 'phpMyAdmin se pokusil pipojit k MySQL serveru, a ten odmtl pipojen. Zkontrolujte jmno serveru, uivatelsk jmno a heslo v souboru config.inc.php a ujistte se, e jsou toton s tmi, kter mte od administrtora MySQL serveru.'; $strAccessDenied = 'Pstup odepen'; +$strAccessDeniedExplanation = 'phpMyAdmin se pokusil pipojit k MySQL serveru, a ten odmtl pipojen. Zkontrolujte jmno serveru, uivatelsk jmno a heslo v souboru config.inc.php a ujistte se, e jsou toton s tmi, kter mte od administrtora MySQL serveru.'; $strAction = 'Akce'; $strAddAutoIncrement = 'Pidat hodnotu AUTO_INCREMENT'; $strAddConstraints = 'Pidat integritn omezen'; $strAddDeleteColumn = 'Pidat nebo odebrat sloupec'; $strAddDeleteRow = 'Pidat nebo odebrat dek'; $strAddDropDatabase = 'Pidat DROP DATABASE'; -$strAddedColumnComment = 'Pidn koment ke sloupci'; -$strAddedColumnRelation = 'Pidna relace pro sloupec'; $strAddFields = 'Pidat %s poloek'; $strAddHeaderComment = 'Pidat vlastn koment do hlaviky (\\n oddluje dky)'; $strAddIfNotExists = 'Pidat IF NOT EXISTS'; @@ -44,24 +43,27 @@ $strAddPrivilegesOnDb = 'P $strAddPrivilegesOnTbl = 'Pidat oprvnn pro tabulku'; $strAddSearchConditions = 'Pidat vyhledvac parametry (st dotazu po pkazu "WHERE"):'; $strAddToIndex = 'Pidat %s sloupc do indexu'; -$strAddUserMessage = 'Uivatel byl pidn.'; $strAddUser = 'Pidat novho uivatele'; +$strAddUserMessage = 'Uivatel byl pidn.'; +$strAddedColumnComment = 'Pidn koment ke sloupci'; +$strAddedColumnRelation = 'Pidna relace pro sloupec'; $strAdministration = 'Sprva'; $strAffectedRows = 'Ovlivnn dky:'; +$strAfter = 'Po %s'; $strAfterInsertBack = 'Nvrat na pedchoz strnku'; $strAfterInsertNewInsert = 'Vloit dal dek'; +$strAfterInsertNext = 'Upravit nsledujc dek'; $strAfterInsertSame = 'Nvrat na tuto strnku'; -$strAfter = 'Po %s'; -$strAllTableSameWidth = 'Pout pro vechny tabulky stejnou ku'; $strAll = 'Vechno'; +$strAllTableSameWidth = 'Pout pro vechny tabulky stejnou ku'; $strAlterOrderBy = 'Zmnit poad tabulky podle'; +$strAnIndex = 'K tabulce %s byl pidn index'; $strAnalyzeTable = 'Analyzovat tabulku'; $strAnd = 'a'; -$strAnIndex = 'K tabulce %s byl pidn index'; -$strAnyHost = 'Jakkoliv pota'; $strAny = 'Jakkoliv'; +$strAnyHost = 'Jakkoliv pota'; $strAnyUser = 'Jakkoliv uivatel'; -$strAPrimaryKey = 'V tabulce %s byl vytvoen primrn kl'; +$strApproximateCount = 'Me bt nepesn, viz FAQ 3.11'; $strArabic = 'Arabtina'; $strArmenian = 'Armntina'; $strAscending = 'Vzestupn'; @@ -75,15 +77,15 @@ $strBack = 'Zp $strBaltic = 'Baltick'; $strBeginCut = 'ZATEK VPISU'; $strBeginRaw = 'ZATEK VPISU'; -$strBinary = ' Binrn '; -$strBinaryDoNotEdit = ' Binrn - neupravujte '; -$strBinaryLog = 'Binrn log'; $strBinLogEventType = 'Typ udlosti'; $strBinLogInfo = 'Informace'; $strBinLogName = 'Jmno logu'; $strBinLogOriginalPosition = 'Pvodn pozice'; $strBinLogPosition = 'Pozice'; $strBinLogServerId = 'ID serveru'; +$strBinary = ' Binrn '; +$strBinaryDoNotEdit = ' Binrn - neupravujte '; +$strBinaryLog = 'Binrn log'; $strBookmarkAllUsers = 'Umonit vem uivatelm pouvat tuto poloku'; $strBookmarkDeleted = 'Poloka byla smazna z oblbench.'; $strBookmarkLabel = 'Nzev'; @@ -91,12 +93,13 @@ $strBookmarkOptions = 'Nastaven $strBookmarkQuery = 'Oblben SQL dotaz'; $strBookmarkThis = 'Pidat tento SQL dotaz do oblbench'; $strBookmarkView = 'Jen zobrazit'; -$strBrowseForeignValues = 'Projt hodnoty cizch kl'; $strBrowse = 'Projt'; +$strBrowseForeignValues = 'Projt hodnoty cizch kl'; $strBulgarian = 'Bulhartina'; $strBzError = 'phpMyAdminovi se nepodailo zkomprimovat vpis, protoe rozen pro kompresi bz2 je v tto verzi PHP chybn. Doporuujeme tuto kompresi vypnout (nastavit$cfg[\'BZipDump\']
v nastavench phpMyAdmina naFALSE
). Pokud chcete pouvat kompresi bz2, mli byste nainstalovat novj verzi PHP. Vce informac o tomto problmu je u popisu chyby %s.'; $strBzip = '"zabzipovno"'; +$strCSVOptions = 'Nastaven CSV exportu'; $strCalendar = 'Kalend'; $strCannotLogin = 'Nepodailo se pihlen k MySQL serveru'; $strCantLoad = 'nelze nahrt rozen %s,
zkontrolujte prosm nastaven PHP'; @@ -108,23 +111,23 @@ $strCarriage = 'N $strCaseInsensitive = 'nerozliovat velk a mal psmena'; $strCaseSensitive = 'rozliovat velk a mal psmena'; $strCentralEuropean = 'Stedn Evropa'; +$strChange = 'Zmnit'; +$strChangeCopyMode = 'Vytvoit novho uivatele se stejnmi oprvnnmi a ...'; $strChangeCopyModeCopy = '... zachovat pvodnho uivatele.'; $strChangeCopyModeDeleteAndReload = ' ... smazat uivatele a pot znovu nast oprvnn.'; $strChangeCopyModeJustDelete = ' ... smazat pvodnho uivatele ze vech tabulek.'; $strChangeCopyModeRevoke = ' ... odebrat vechna oprvnn pvodnmu uivateli a pot ho smazat.'; -$strChangeCopyMode = 'Vytvoit novho uivatele se stejnmi oprvnnmi a ...'; $strChangeCopyUser = 'Zmnit informace o uivateli / Koprovat uivatele'; $strChangeDisplay = 'Zvolte kter sloupce zobrazit'; $strChangePassword = 'Zmnit heslo'; -$strChange = 'Zmnit'; -$strCharsetOfFile = 'Znakov sada souboru:'; -$strCharsetsAndCollations = 'Znakov sady a porovnvn'; -$strCharsets = 'Znakov sady'; $strCharset = 'Znakov sada'; +$strCharsetOfFile = 'Znakov sada souboru:'; +$strCharsets = 'Znakov sady'; +$strCharsetsAndCollations = 'Znakov sady a porovnvn'; $strCheckAll = 'Zakrtnout ve'; $strCheckOverhead = 'Zakrtnout neoptimln'; -$strCheckPrivsLong = 'Zkontrolovat oprvnn pro databzi "%s".'; $strCheckPrivs = 'Zkontrolovat oprvnn'; +$strCheckPrivsLong = 'Zkontrolovat oprvnn pro databzi "%s".'; $strCheckTable = 'Zkontrolovat tabulku'; $strChoosePage = 'Zvolte strnku, kterou chcete zmnit'; $strColComFeat = 'Zobrazuji komente sloupc'; @@ -132,8 +135,9 @@ $strCollation = 'Porovn $strColumnNames = 'Nzvy sloupc'; $strColumnPrivileges = 'Oprvnn pro jednotliv sloupce'; $strCommand = 'Pkaz'; -$strCommentsForTable = 'KOMENTE PRO TABULKU'; $strComments = 'Komente'; +$strCommentsForTable = 'KOMENTE PRO TABULKU'; +$strCompatibleHashing = 'Kompatibiln s MySQL 4.0'; $strCompleteInserts = 'pln inserty'; $strCompression = 'Komprese'; $strConfigFileError = 'phpMyAdmin nemohl nast konfiguran soubor!
Tato chyba me nastat pokud v nm PHP najde chybu nebo neme tento soubor najt.
Po kliknut na nsledujc odkaz se PHP pokus pmo interpretovat tento soubor a zobraz informace o chyb, ke kter dolo. Pak opravte tuto chybu (nejastji se jedn o chybjc stednk).
Pokud zskte przdnou strnku, vechno je v podku.'; @@ -148,40 +152,24 @@ $strCopyTable = 'Kop $strCopyTableOK = 'Tabulka %s byla zkoprovna do %s.'; $strCopyTableSameNames = 'Nelze koprovat tabulku na sebe samu!'; $strCouldNotKill = 'phpMyAdminovi se nepodailo ukonit vlkno %s. Pravdpodobn jeho bh ji skonil.'; -$strCreateIndexTopic = 'Vytvoit nov index'; +$strCreate = 'Vytvoit'; $strCreateIndex = 'Vytvoit index na %s sloupcch'; +$strCreateIndexTopic = 'Vytvoit nov index'; $strCreateNewDatabase = 'Vytvoit novou databzi'; $strCreateNewTable = 'Vytvoit novou tabulku v databzi %s'; $strCreatePage = 'Vytvoit novou strnku'; $strCreatePdfFeat = 'Vytven PDF'; -$strCreate = 'Vytvoit'; $strCreationDates = 'Datum vytvoen, posledn zmny a kontroly'; $strCriteria = 'Podmnka'; $strCroatian = 'Chorvattina'; -$strCSVOptions = 'Nastaven CSV exportu'; $strCyrillic = 'Cyrilika'; $strCzech = 'etina'; $strCzechSlovak = 'etina/Sloventina'; -$strDanish = 'Dntina'; -$strDatabase = 'Databze'; -$strDatabaseEmpty = 'Jmno databze je przdn!'; -$strDatabaseExportOptions = 'Nastaven exportu databz'; -$strDatabaseHasBeenDropped = 'Databze %s byla zruena.'; -$strDatabaseNoTable = 'Tato databze neobsahuje dn tabulky!'; -$strDatabases = 'Databze'; -$strDatabasesDropped = '%s databze byla spn zruena.'; -$strDatabasesStatsDisable = 'Skrt podrobnosti'; -$strDatabasesStatsEnable = 'Zobrazit podrobnosti'; -$strDatabasesStatsHeavyTraffic = 'Poznmka: Zobrazen podrobnost o databzch me zpsobit znan zven provozu mezi webserverem a MySQL serverem.'; -$strDatabasesStats = 'Statistiky databz'; -$strData = 'Data'; -$strDataDict = 'Datov slovnk'; -$strDataOnly = ' Jen data'; $strDBComment = 'Koment k databzi: '; $strDBCopy = 'Zkoprovat databzi na'; -$strDBGContextID = 'Kontext ID'; $strDBGContext = 'Kontext'; +$strDBGContextID = 'Kontext ID'; $strDBGHits = 'Zsah'; $strDBGLine = 'dka'; $strDBGMaxTimeMs = 'Min. as, ms'; @@ -189,50 +177,65 @@ $strDBGMinTimeMs = 'Max. $strDBGModule = 'Modul'; $strDBGTimePerHitMs = 'as/Zsah, ms'; $strDBGTotalTimeMs = 'Celkov as, ms'; -$strDbPrivileges = 'Oprvnn pro jednotliv databze'; $strDBRename = 'Pejmenovat databzi na'; +$strDanish = 'Dntina'; +$strData = 'Data'; +$strDataDict = 'Datov slovnk'; +$strDataOnly = ' Jen data'; +$strDatabase = 'Databze'; +$strDatabaseEmpty = 'Jmno databze je przdn!'; +$strDatabaseExportOptions = 'Nastaven exportu databz'; +$strDatabaseHasBeenDropped = 'Databze %s byla zruena.'; +$strDatabaseNoTable = 'Tato databze neobsahuje dn tabulky!'; +$strDatabases = 'Databze'; +$strDatabasesDropped = '%s databze byla spn zruena.'; +$strDatabasesStats = 'Statistiky databz'; +$strDatabasesStatsDisable = 'Skrt podrobnosti'; +$strDatabasesStatsEnable = 'Zobrazit podrobnosti'; +$strDatabasesStatsHeavyTraffic = 'Poznmka: Zobrazen podrobnost o databzch me zpsobit znan zven provozu mezi webserverem a MySQL serverem.'; +$strDbPrivileges = 'Oprvnn pro jednotliv databze'; $strDbSpecific = 'zvisl na databzi'; -$strDefaultValueHelp = 'Vchoz hodnotu zadejte jen jednu hodnotu bez uvozovek a escapovn znak, napklad: a'; $strDefault = 'Vchoz'; +$strDefaultValueHelp = 'Vchoz hodnotu zadejte jen jednu hodnotu bez uvozovek a escapovn znak, napklad: a'; $strDefragment = 'Defragmentovat tabulku'; +$strDelOld = 'Aktuln strnka se odkazuje na tabulky, kter ji neexistuj. Chcete odstranit tyto odkazy?'; $strDelayedInserts = 'Pouvat zpodn inserty'; -$strDeleteAndFlushDescr = 'Toto je nejist een, ale natn oprvnn me trvat dlouho.'; +$strDelete = 'Smazat'; $strDeleteAndFlush = 'Odstranit uivatele a znovunast oprvnn.'; +$strDeleteAndFlushDescr = 'Toto je nejist een, ale natn oprvnn me trvat dlouho.'; $strDeleted = 'dek byl smazn'; $strDeletedRows = 'Smazan dky:'; -$strDelete = 'Smazat'; $strDeleting = 'Odstrauji %s'; -$strDelOld = 'Aktuln strnka se odkazuje na tabulky, kter ji neexistuj. Chcete odstranit tyto odkazy?'; $strDescending = 'Sestupn'; $strDescription = 'Popis'; $strDictionary = 'slovnk'; -$strDisabled = 'Vypnuto'; $strDisableForeignChecks = 'Vypnout kontrolu cizch kl'; +$strDisabled = 'Vypnuto'; $strDisplayFeat = 'Zobrazen funkc'; $strDisplayOrder = 'Seadit podle:'; $strDisplayPDF = 'Zobrazit jako schma v PDF'; $strDoAQuery = 'Provst "dotaz podle pkladu" (zstupn znak: "%")'; -$strDocu = 'Dokumentace'; $strDoYouReally = 'Opravdu si pejete vykonat pkaz'; -$strDropDatabaseStrongWarning = 'Chystte se ZRUIT celou databzi!'; +$strDocu = 'Dokumentace'; $strDrop = 'Odstranit'; +$strDropDatabaseStrongWarning = 'Chystte se ZRUIT celou databzi!'; $strDropSelectedDatabases = 'Zruit vybranou databzi'; $strDropUsersDb = 'Odstranit databze se stejnmi jmny jako uivatel.'; -$strDumpingData = 'Vypisuji data pro tabulku'; $strDumpSaved = 'Vpis byl uloen do souboru %s.'; $strDumpXRows = 'Vypsat %s dk od %s.'; +$strDumpingData = 'Vypisuji data pro tabulku'; $strDynamic = 'dynamick'; +$strEdit = 'Upravit'; $strEditPDFPages = 'Upravit PDF strnky'; $strEditPrivileges = 'Upravit oprvnn'; -$strEdit = 'Upravit'; $strEffective = 'Efektivn'; -$strEmptyResultSet = 'MySQL vrtil przdn vsledek (tj. nulov poet dk).'; $strEmpty = 'Vyprzdnit'; +$strEmptyResultSet = 'MySQL vrtil przdn vsledek (tj. nulov poet dk).'; $strEnabled = 'Zapnuto'; $strEncloseInTransaction = 'Uzavt pkazy v transakci'; -$strEndCut = 'KONEC VPISU'; $strEnd = 'Konec'; +$strEndCut = 'KONEC VPISU'; $strEndRaw = 'KONEC VPISU'; $strEnglish = 'Anglicky'; $strEnglishPrivileges = 'Poznmka: nzvy oprvnn v MySQL jsou uvdny anglicky'; @@ -248,29 +251,29 @@ $strExtendedInserts = 'Roz $strExtra = 'Extra'; $strFailedAttempts = 'Nepovedench pokus'; +$strField = 'Sloupec'; $strFieldHasBeenDropped = 'Sloupec %s byl odstrann'; +$strFields = 'Sloupce'; $strFieldsEmpty = ' Nebyl zadn poet sloupc! '; $strFieldsEnclosedBy = 'Nzvy sloupc uzaven do'; $strFieldsEscapedBy = 'Nzvy sloupc escapovny'; -$strField = 'Sloupec'; -$strFields = 'Sloupce'; $strFieldsTerminatedBy = 'Sloupce oddlen'; $strFileAlreadyExists = 'Soubor %s ji na serveru existuje, zmte jmno souboru, nebo zvolte pepsn souboru.'; $strFileCouldNotBeRead = 'Soubor nelze pest'; +$strFileNameTemplate = 'Vzor pro jmno souboru'; $strFileNameTemplateHelp = 'Pouijte __DB__ pro jmno databze, __TABLE__ pro jmno tabulky a jakkoliv parametry pro %sfunkci strftime%s pro vloen data. Ppona souboru bude automaticky pidna podle typu. Jakkoliv jin text bude zachovn.'; $strFileNameTemplateRemember = 'zapamatovat si hodnotu'; -$strFileNameTemplate = 'Vzor pro jmno souboru'; $strFixed = 'pevn'; $strFlushPrivilegesNote = 'Poznmka: phpMyAdmin zskv oprvnn pmo z tabulek MySQL. Obsah tchto tabulek se me liit od oprvnn, kter server prv pouv, pokud byly tyto tabulky upravovny. V tomto ppad je vhodn provst %sznovunaten oprvnn%s ped pokraovnm.'; $strFlushTable = 'Vyprzdnit vyrovnvac pam pro tabulku ("FLUSH")'; -$strFormat = 'Formt'; $strFormEmpty = 'Chybjc hodnota ve formuli!'; +$strFormat = 'Formt'; $strFullText = 'Cel texty'; $strFunction = 'Funkce'; $strGenBy = 'Vygeneroval'; -$strGeneralRelationFeat = 'Obecn funkce relac'; $strGenTime = 'Vygenerovno'; +$strGeneralRelationFeat = 'Obecn funkce relac'; $strGeorgian = 'Gruzntina'; $strGerman = 'Nmecky'; $strGlobal = 'globln'; @@ -288,8 +291,8 @@ $strHebrew = 'Hebrej $strHexForBinary = 'Binarn pole vypisovat estnctkov'; $strHome = 'Hlavn strana'; $strHomepageOfficial = 'Oficiln strnka phpMyAdmina'; -$strHostEmpty = 'Jmno potae je przdn!'; $strHost = 'Pota'; +$strHostEmpty = 'Jmno potae je przdn!'; $strHungarian = 'Maartina'; $strIcelandic = 'Islandtina'; @@ -302,44 +305,48 @@ $strIgnoringFile = 'Ignoruji soubor %s'; $strImportDocSQL = 'Importovat soubory docSQL'; $strImportFiles = 'Importovat soubory'; $strImportFinished = 'Import ukonen'; -$strIndexes = 'Indexy'; -$strIndexHasBeenDropped = 'Index %s byl odstrann'; +$strInUse = 'prv se pouv'; $strIndex = 'Index'; +$strIndexHasBeenDropped = 'Index %s byl odstrann'; $strIndexName = 'Jmno indexu :'; $strIndexType = 'Typ indexu :'; +$strIndexWarningMultiple = 'Pro sloupec `%s` je vytvoeno vce index'; +$strIndexWarningPrimary = 'Sloupec `%s` by neml bt zrov obsaen v PRIMARY a INDEX kli'; +$strIndexWarningTable = 'Problmy s indexy v tabulce `%s`'; +$strIndexWarningUnique = 'Sloupec `%s` by neml bt zrov obsaen v PRIMARY a UNIQUE kli'; +$strIndexes = 'Indexy'; $strInnodbStat = 'Stav InnoDB'; $strInsecureMySQL = 'Mte standardn nastaven hesla uivatele root v MySQL. Doporuujeme zmnit toto nastaven a tm podstatn zvit bezpenost Vaeho serveru.'; +$strInsert = 'Vloit'; $strInsertAsNewRow = 'Vloit jako nov dek'; $strInsertBookmarkTitle = 'Prosm zadejte nzev oblben poloky'; -$strInsertedRowId = 'Id vloenho dku:'; -$strInsertedRows = 'Vloeno dk:'; $strInsertNewRow = 'Vloit nov dek'; $strInsertTextfiles = 'Vloit textov soubory do tabulky'; -$strInsert = 'Vloit'; +$strInsertedRowId = 'Id vloenho dku:'; +$strInsertedRows = 'Vloeno dk:'; $strInstructions = 'Instrukce'; $strInternalNotNecessary = '* Intern relace nen potebn, pokud ji relace existuje v InnoDB.'; $strInternalRelations = 'Intern relace'; -$strInUse = 'prv se pouv'; $strJapanese = 'Japontina'; $strJumpToDB = 'Na databzi "%s".'; -$strJustDeleteDescr = 'Odstrann uivatel stle budou mt pistup na server dokud nebudou znovunatena oprvnn.'; $strJustDelete = 'Jen odstranit uivatele z tabulek s oprvnnmi.'; +$strJustDeleteDescr = 'Odstrann uivatel stle budou mt pistup na server dokud nebudou znovunatena oprvnn.'; $strKeepPass = 'Nemnit heslo'; $strKeyname = 'Klov nzev'; $strKill = 'Ukonit'; $strKorean = 'Korejtina'; +$strLaTeX = 'LaTeX'; +$strLaTeXOptions = 'Nastaven exportu do LaTeXu'; $strLandscape = 'Na ku'; $strLatexCaption = 'Titulek tabulky'; $strLatexContent = 'Obsah tabulky __TABLE__'; -$strLatexContinuedCaption = 'Titulek pokraovn tabulky'; $strLatexContinued = '(pokraovn)'; +$strLatexContinuedCaption = 'Titulek pokraovn tabulky'; $strLatexIncludeCaption = 'Pout titulek tabulky'; $strLatexLabel = 'Nvst'; -$strLaTeX = 'LaTeX'; -$strLaTeXOptions = 'Nastaven exportu do LaTeXu'; $strLatexStructure = 'Struktura tabulky __TABLE__'; $strLatvian = 'Lotytina'; $strLengthSet = 'Dlka/Mnoina*'; @@ -353,31 +360,33 @@ $strLoadExplanation = 'Automaticky jsou zvoleny nejvhodn $strLoadMethod = 'Parametry pro pkaz LOAD'; $strLocalhost = 'Lokln'; $strLocationTextfile = 'textov soubor'; -$strLoginInformation = 'Pihlaovn'; -$strLogin = 'Pihlen'; -$strLogout = 'Odhlsit se'; $strLogPassword = 'Heslo:'; $strLogServer = 'Server'; $strLogUsername = 'Jmno:'; +$strLogin = 'Pihlen'; +$strLoginInformation = 'Pihlaovn'; +$strLogout = 'Odhlsit se'; -$strMaximumSize = 'Maximln velikost: %s%s'; +$strMIMETypesForTable = 'MIME TYPY PRO TABULKU'; +$strMIME_MIMEtype = 'MIME typ'; $strMIME_available_mime = 'Dostupn MIME typy'; $strMIME_available_transform = 'Dostupn transformace'; $strMIME_description = 'Popis'; -$strMIME_MIMEtype = 'MIME typ'; $strMIME_nodescription = 'Pro tuto transformaci nen dostupn dn popis.
Zeptejte se autora co %s dl.'; -$strMIME_transformation_note = 'Pro seznam dostupnch parametr transformac a jejich MIME typ kliknte na %spopisy transformac%s'; -$strMIME_transformation_options_note = 'Zadejte parametry transformac v nsledujcm tvaru: \'a\',\'b\',\'c\'...
Pokud potebujete pout zptn lomtko ("\") nebo jednoduch uvozovky ("\'") mezi tmito hodnotami, vlote ped n zptn lomtko (napklad \'\\\\xyz\' nebo \'a\\\'b\').'; -$strMIME_transformation_options = 'Parametry transformace'; $strMIME_transformation = 'Transformace pi prohlen'; -$strMIMETypesForTable = 'MIME TYPY PRO TABULKU'; +$strMIME_transformation_note = 'Pro seznam dostupnch parametr transformac a jejich MIME typ kliknte na %spopisy transformac%s'; +$strMIME_transformation_options = 'Parametry transformace'; +$strMIME_transformation_options_note = 'Zadejte parametry transformac v nsledujcm tvaru: \'a\',\'b\',\'c\'...
Pokud potebujete pout zptn lomtko ("\") nebo jednoduch uvozovky ("\'") mezi tmito hodnotami, vlote ped n zptn lomtko (napklad \'\\\\xyz\' nebo \'a\\\'b\').'; $strMIME_without = 'MIME typy zobrazen kurzvou nemaj vlastn transforman funkci'; +$strMaximumSize = 'Maximln velikost: %s%s'; +$strMbExtensionMissing = 'Rozen mbstring pro PHP nebylo nalezeno a zd se, e povte vcebajtovou znakovou sadu. Bez rozen mbstring neum phpMyAdmin sprvn rozdlovat etzce a proto to me mt neekan nsledky.'; +$strMbOverloadWarning = 'V nastaven PHP mte zapnuto mbstring.func_overload. Toto nastaven nen kompatibiln s phpMyAdminem a me zpsobit pokozen dat!'; $strModifications = 'Zmny byly uloeny'; -$strModifyIndexTopic = 'Upravit index'; $strModify = 'pravy'; +$strModifyIndexTopic = 'Upravit index'; $strMoreStatusVars = 'Dal informace o stavu'; -$strMoveTableOK = 'Tabulka %s byla pesunuta do %s.'; $strMoveTable = 'Pesunout tabulku do (databze.tabulka):'; +$strMoveTableOK = 'Tabulka %s byla pesunuta do %s.'; $strMoveTableSameNames = 'Nelze pesunout tabulku na sebe samu!'; $strMultilingual = 'mnohojazyn'; $strMustSelectFile = 'Zvolte soubor, kter chcete vloit.'; @@ -393,17 +402,17 @@ $strMySQLShowVars = 'Uk $strName = 'Nzev'; $strNeedPrimaryKey = 'Pro tuto tabulku byste mli definovat primrn kl.'; $strNext = 'Dal'; -$strNoDatabasesSelected = 'Nebyla vybrna dn databze.'; +$strNo = 'Ne'; +$strNoActivity = 'Byli jste pli dlouho neaktivn (dle ne %s sekund), prosm pihlate se znovu'; $strNoDatabases = 'dn databze'; +$strNoDatabasesSelected = 'Nebyla vybrna dn databze.'; $strNoDescription = 'dn popisek'; $strNoDropDatabases = 'Pkaz "DROP DATABASE" je vypnut.'; $strNoExplain = 'Bez vysvtlen (EXPLAIN) SQL'; $strNoFrames = 'phpMyAdmin se lpe pouv v prohlei podporujcm rmy ("FRAME").'; -$strNoIndexPartsDefined = 'dn st indexu nebyla definovna!'; $strNoIndex = 'dn index nebyl definovn!'; +$strNoIndexPartsDefined = 'dn st indexu nebyla definovna!'; $strNoModification = 'dn zmna'; -$strNo = 'Ne'; -$strNone = 'dn'; $strNoOptions = 'Tento formt nem dn nastaven'; $strNoPassword = 'dn heslo'; $strNoPermission = 'Web server nem oprvnn uloit vpis do souboru %s.'; @@ -415,19 +424,20 @@ $strNoRowsSelected = 'Nebyla vybr $strNoSpace = 'Nedostatek msta pro uloen souboru %s.'; $strNoTablesFound = 'V databzi nebyla nalezena dn tabulka.'; $strNoThemeSupport = 'Nen podporovna zmna tmatu, zkontrolujte nastaven a tmata v adresi %s.'; +$strNoUsersFound = 'dn uivatel nenalezen.'; +$strNoValidateSQL = 'Bez kontroly SQL'; +$strNone = 'dn'; $strNotNumber = 'Nebylo zadno slo!'; $strNotOK = 'nen v podku'; $strNotSet = '%s tabulka nenalezena nebo nen nastavena v %s'; $strNotValidNumber = ' nen platn slo dku!'; -$strNoUsersFound = 'dn uivatel nenalezen.'; -$strNoValidateSQL = 'Bez kontroly SQL'; $strNull = 'Nulov'; $strNumSearchResultsInTable = '%s odpovdajc(ch) zznam() v tabulce %s'; $strNumSearchResultsTotal = 'Celkem: %s odpovdajc(ch) zznam()'; $strNumTables = 'Tabulek'; -$strOftenQuotation = 'asto uvozujc znaky. Voliteln znamen, e pouze poloky u kterch je to nutn (obvykle typu CHAR a VARCHAR) jsou uzaveny do uzavracch znak.'; $strOK = 'OK'; +$strOftenQuotation = 'asto uvozujc znaky. Voliteln znamen, e pouze poloky u kterch je to nutn (obvykle typu CHAR a VARCHAR) jsou uzaveny do uzavracch znak.'; $strOperations = 'pravy'; $strOperator = 'Opertor'; $strOptimizeTable = 'Optimalizovat tabulku'; @@ -437,12 +447,15 @@ $strOr = 'nebo'; $strOverhead = 'Navc'; $strOverwriteExisting = 'Pepsat existujc soubor(y)'; +$strPHP40203 = 'Pouvte PHP 4.2.3, kter m zvanou chybu pi prci s vcebajtovmi znaky (mbstring), jedn se o chybu PHP slo 19404. Nedoporuujeme pouvat tuto verzi PHP s phpMyAdminem.'; +$strPHPVersion = 'Verze PHP'; $strPageNumber = 'Strana slo:'; $strPaperSize = 'Velikost strnky'; $strPartialText = 'Zkrcen texty'; +$strPassword = 'Heslo'; $strPasswordChanged = 'Heslo pro %s bylo spn zmnno.'; $strPasswordEmpty = 'Heslo je przdn!'; -$strPassword = 'Heslo'; +$strPasswordHashing = 'Haovac funkce pro heslo'; $strPasswordNotSame = 'Hesla nejsou stejn!'; $strPdfDbSchema = 'Schma databze "%s" - Strana %s'; $strPdfInvalidTblName = 'Tabulka "%s" neexistuje!'; @@ -452,8 +465,6 @@ $strPerMinute = 'za minutu'; $strPerSecond = 'za sekundu'; $strPersian = 'Pertina'; $strPhoneBook = 'adres'; -$strPHP40203 = 'Pouvte PHP 4.2.3, kter m zvanou chybu pi prci s vcebajtovmi znaky (mbstring), jedn se o chybu PHP slo 19404. Nedoporuujeme pouvat tuto verzi PHP s phpMyAdminem.'; -$strPHPVersion = 'Verze PHP'; $strPhp = 'Zobrazit PHP kd'; $strPmaDocumentation = 'Dokumentace phpMyAdmina'; $strPmaUriError = 'Parametr $cfg[\'PmaAbsoluteUri\'] MUS bt nastaven v konfiguranm souboru!'; @@ -461,13 +472,13 @@ $strPolish = 'Pol $strPortrait = 'Na vku'; $strPos1 = 'Zatek'; $strPrevious = 'Pedchoz'; +$strPrimary = 'Primrn'; $strPrimaryKeyHasBeenDropped = 'Primrn kl byl odstrann'; $strPrimaryKeyName = 'Jmno primrnho kle mus bt "PRIMARY"!'; $strPrimaryKeyWarning = '("PRIMARY" mus bt jmno pouze primrnho kle!)'; -$strPrimary = 'Primrn'; -$strPrintViewFull = 'Nhled k vytitn (s kompletnmi texty)'; -$strPrintView = 'Nhled k vytitn'; $strPrint = 'Vytisknout'; +$strPrintView = 'Nhled k vytitn'; +$strPrintViewFull = 'Nhled k vytitn (s kompletnmi texty)'; $strPrivDescAllPrivileges = 'Vechna oprvnn krom GRANT.'; $strPrivDescAlter = 'Umouje mnit strukturu existujcch tabulek.'; $strPrivDescCreateDb = 'Umouje vytvet nov databze a tabulky.'; @@ -502,8 +513,8 @@ $strPrivilegesReloaded = 'Opr $strProcesslist = 'Seznam proces'; $strPutColNames = 'Pidat jmna sloupc na prvn dek'; -$strQBEDel = 'smazat'; $strQBE = 'Dotaz'; +$strQBEDel = 'smazat'; $strQBEIns = 'pidat'; $strQueryFrame = 'SQL okno'; $strQueryOnDb = 'SQL dotaz na databzi %s:'; @@ -513,51 +524,63 @@ $strQueryTime = 'Dotaz zabral %01.4f sekund'; $strQueryType = 'Typ dotazu'; $strQueryWindowLock = 'Nepepisovat tento dotaz z hlavnho okna'; +$strReType = 'Heslo znovu'; $strReceived = 'Pijato'; $strRecords = 'Zznam'; $strReferentialIntegrity = 'Zkontrolovat integritu odkaz:'; $strRefresh = 'Obnovit'; -$strRelationalSchema = 'Relan schma'; $strRelationNotWorking = 'Nkter z rozench funkc phpMyAdmina nelze pouvat. %sZde%s zjistte pro.'; -$strRelationsForTable = 'RELACE PRO TABULKU'; -$strRelations = 'Relace'; $strRelationView = 'Zobrazit relace'; +$strRelationalSchema = 'Relan schma'; +$strRelations = 'Relace'; +$strRelationsForTable = 'RELACE PRO TABULKU'; $strReloadFailed = 'Znovunaten MySQL selhalo.'; -$strReloadingThePrivileges = 'Znovunatm oprvnn'; $strReloadMySQL = 'Znovunaten MySQL'; +$strReloadingThePrivileges = 'Znovunatm oprvnn'; $strRemoveSelectedUsers = 'Odstranit vybran uivatele'; $strRenameDatabaseOK = 'Databze %s byla pejmenovna na %s'; -$strRenameTableOK = 'Tabulka %s byla pejmenovna na %s'; $strRenameTable = 'Pejmenovat tabulku na'; +$strRenameTableOK = 'Tabulka %s byla pejmenovna na %s'; $strRepairTable = 'Opravit tabulku'; -$strReplaceNULLBy = 'Nahradit NULL hodnoty'; $strReplace = 'Pepsat'; +$strReplaceNULLBy = 'Nahradit NULL hodnoty'; $strReplaceTable = 'Pepsat data tabulky souborem'; $strReset = 'Pvodn'; $strResourceLimits = 'Omezen zdroj'; -$strReType = 'Heslo znovu'; -$strRevokeAndDeleteDescr = 'Uivatel budou mt oprvnn "USAGE" (pouvn) dokud nebudou znovunatena oprvnn.'; -$strRevokeAndDelete = 'Odebrat uivatelm veker oprvnn a pot je odstranit z tabulek.'; -$strRevokeMessage = 'Byla zruena prva pro %s'; $strRevoke = 'Zruit'; +$strRevokeAndDelete = 'Odebrat uivatelm veker oprvnn a pot je odstranit z tabulek.'; +$strRevokeAndDeleteDescr = 'Uivatel budou mt oprvnn "USAGE" (pouvn) dokud nebudou znovunatena oprvnn.'; +$strRevokeMessage = 'Byla zruena prva pro %s'; $strRomanian = 'Rumuntina'; $strRowLength = 'Dlka dku'; -$strRowsFrom = 'dk zanajc od'; $strRowSize = ' Velikost dku '; +$strRows = 'dk'; +$strRowsFrom = 'dk zanajc od'; $strRowsModeFlippedHorizontal = 'vodorovnm (otoen hlaviky)'; $strRowsModeHorizontal = 'vodorovnm'; $strRowsModeOptions = 've %s reimu a opakovat hlaviky po %s dcch.'; $strRowsModeVertical = 'svislm'; -$strRows = 'dk'; $strRowsStatistic = 'Statistika dk'; -$strRunning = 'na %s'; $strRunQuery = 'Provst dotaz'; $strRunSQLQuery = 'Spustit SQL dotaz(y) na databzi %s'; +$strRunning = 'na %s'; $strRussian = 'Rutina'; -$strSaveOnServer = 'Uloit na serveru v adresi %s'; +$strSQL = 'SQL'; +$strSQLExportCompatibility = 'Kompatibilita SQL exportu'; +$strSQLExportType = 'Typ vytvoench dotaz'; +$strSQLOptions = 'Nastaven SQL exportu'; +$strSQLParserBugMessage = 'Je mon, e jste nali chybu v SQL parseru. Prosm prozkoumejte podrobn SQL dotaz, pedevm jestli jsou sprvn uvozovky a jestli nejsou prohzen. Dal monost selhn je pokud nahrvte soubor s binrnmi daty nezapsanmi v uvozovkch. Mete tak vyzkouet pkazovou dku MySQL. Ne uveden vstup z MySQL serveru (pokud je njak) Vm tak me pomoci pi zkoumn problmu. Pokud stle mte problmy nebo pokud SQL parser ohls chybu u dotazu, kter na pkazov dce funguje, prosm pokuste se zredukovat dotaz na co nejmen, ve kterm se problm jet vyskytne, a ohlaste chybu na strnkch phpMyAdmina spolu se sekc VPIS uvedenou ne:'; +$strSQLParserUserError = 'Pravdpodobn mte v SQL dotazu chybu. Ne uveden vstup MySQL serveru (pokud je njak) Vm tak me pomoci pi zkoumn problmu'; +$strSQLQuery = 'SQL-dotaz'; +$strSQLResult = 'Vsledek SQL dotazu'; +$strSQPBugInvalidIdentifer = 'Chybn identifiktor'; +$strSQPBugUnclosedQuote = 'Neuzaven uvozovky'; +$strSQPBugUnknownPunctuation = 'Neznm interpunkn znamnko'; $strSave = 'Ulo'; +$strSaveOnServer = 'Uloit na serveru v adresi %s'; $strScaleFactorSmall = 'Mtko je pli mal, aby se schma velo na jednu strnku'; +$strSearch = 'Vyhledvn'; $strSearchFormTitle = 'Vyhledvn v databzi'; $strSearchInTables = 'V tabulkch:'; $strSearchNeedle = 'Slova nebo hodnoty, kter chcete vyhledat (zstupn znak: "%"):'; @@ -567,7 +590,6 @@ $strSearchOption3 = 'p $strSearchOption4 = 'jako regulrn vraz'; $strSearchResultsFor = 'Vsledky vyhledvn pro "%s" %s:'; $strSearchType = 'Najt:'; -$strSearch = 'Vyhledvn'; $strSecretRequired = 'Nastavte kl pro ifrovn cookies (blowfish_secret) v konfiguranm souboru (config.inc.php).'; $strSelectADb = 'Prosm vyberte databzi'; $strSelectAll = 'Vybrat ve'; @@ -577,9 +599,9 @@ $strSelectNumRows = 'v dotazu'; $strSelectTables = 'Vybrat tabulky'; $strSend = 'Do souboru'; $strSent = 'Odeslno'; +$strServer = 'Server'; $strServerChoice = 'Vbr serveru'; $strServerNotResponding = 'Server neodpovd'; -$strServer = 'Server'; $strServerStatus = 'Stav serveru'; $strServerStatusUptime = 'Tento MySQL server b %s. as sputn: %s.'; $strServerTabProcesslist = 'Procesy'; @@ -589,41 +611,31 @@ $strServerVars = 'Prom $strServerVersion = 'Verze MySQL'; $strSessionValue = 'Hodnota sezen'; $strSetEnumVal = 'Pokud je sloupec typu "enum" nebo "set", zadvejte hodnoty v nsledujcm formtu: \'a\',\'b\',\'c\'...
Pokud potebujete zadat zptn lomtko ("\") nebo jednoduch uvozovky ("\'") mezi tmito hodnotami, napite ped n zptn lomtko (pklad: \'\\\\xyz\' nebo \'a\\\'b\').'; +$strShow = 'Zobrazit'; $strShowAll = 'Zobrazit ve'; $strShowColor = 'Barevn ipky'; $strShowDatadictAs = 'Formt datovho slovnku'; $strShowFullQueries = 'Zobrazit cel dotazy'; $strShowGrid = 'Zobrazit mku'; -$strShowingRecords = 'Zobrazeny zznamy'; $strShowPHPInfo = 'Zobrazit informace o PHP'; $strShowTableDimension = 'Rozmry tabulek'; $strShowTables = 'Zobrazit tabulky'; $strShowThisQuery = 'Zobrazit zde tento dotaz znovu'; -$strShow = 'Zobrazit'; +$strShowingRecords = 'Zobrazeny zznamy'; $strSimplifiedChinese = 'Zjednoduen ntina'; $strSingly = '(po jednom)'; $strSize = 'Velikost'; $strSlovak = 'Sloventina'; $strSlovenian = 'Slovintina'; -$strSortByKey = 'Setdit podle kle'; $strSort = 'adit'; +$strSortByKey = 'Setdit podle kle'; $strSpaceUsage = 'Vyuit msta'; $strSpanish = 'panltina'; $strSplitWordsWithSpace = 'Slova jsou oddlena mezerou (" ").'; -$strSQLExportType = 'Typ vytvoench dotaz'; -$strSQLOptions = 'Nastaven SQL exportu'; -$strSQLParserBugMessage = 'Je mon, e jste nali chybu v SQL parseru. Prosm prozkoumejte podrobn SQL dotaz, pedevm jestli jsou sprvn uvozovky a jestli nejsou prohzen. Dal monost selhn je pokud nahrvte soubor s binrnmi daty nezapsanmi v uvozovkch. Mete tak vyzkouet pkazovou dku MySQL. Ne uveden vstup z MySQL serveru (pokud je njak) Vm tak me pomoci pi zkoumn problmu. Pokud stle mte problmy nebo pokud SQL parser ohls chybu u dotazu, kter na pkazov dce funguje, prosm pokuste se zredukovat dotaz na co nejmen, ve kterm se problm jet vyskytne, a ohlaste chybu na strnkch phpMyAdmina spolu se sekc VPIS uvedenou ne:'; -$strSQLParserUserError = 'Pravdpodobn mte v SQL dotazu chybu. Ne uveden vstup MySQL serveru (pokud je njak) Vm tak me pomoci pi zkoumn problmu'; -$strSQLQuery = 'SQL-dotaz'; -$strSQLResult = 'Vsledek SQL dotazu'; -$strSQL = 'SQL'; -$strSQPBugInvalidIdentifer = 'Chybn identifiktor'; -$strSQPBugUnclosedQuote = 'Neuzaven uvozovky'; -$strSQPBugUnknownPunctuation = 'Neznm interpunkn znamnko'; $strStatCheckTime = 'Posledn kontrola'; $strStatCreateTime = 'Vytvoen'; -$strStatement = 'daj'; $strStatUpdateTime = 'Posledn zmna'; +$strStatement = 'daj'; $strStatus = 'Stav'; $strStrucCSV = 'CSV data'; $strStrucData = 'Strukturu a data'; @@ -640,6 +652,7 @@ $strSwedish = ' $strSwitchToDatabase = 'Pepnout na zkoprovanou databzi'; $strSwitchToTable = 'Pepnout na zkoprovanou tabulku'; +$strTable = 'Tabulka'; $strTableComments = 'Koment k tabulce'; $strTableEmpty = 'Jmno tabulky je przdn!'; $strTableHasBeenDropped = 'Tabulka %s byla odstranna'; @@ -648,18 +661,17 @@ $strTableHasBeenFlushed = 'Vyrovn $strTableMaintenance = ' drba tabulky '; $strTableOfContents = 'Obsah'; $strTableOptions = 'Parametry tabulky'; -$strTables = '%s tabulek'; $strTableStructure = 'Struktura tabulky'; -$strTable = 'Tabulka'; $strTableType = 'Typ tabulky'; +$strTables = '%s tabulek'; $strTakeIt = 'zvolit'; $strTblPrivileges = 'Oprvnn pro jednotliv tabulky'; $strTextAreaLength = 'Tento sloupec mon nepjde
(kvli dlce) upravit '; $strThai = 'Thajtina'; $strTheContent = 'Obsah souboru byl vloen'; $strTheContents = 'Obsah souboru pepe obsah zvolen tabulky v tch dcch, kde je stejn primrn nebo uniktn kl.'; -$strTheme = 'Vzhled'; $strTheTerminator = 'Sloupce jsou oddleny tmto znakem.'; +$strTheme = 'Vzhled'; $strThisHost = 'Tento pota'; $strThisNotDirectory = 'Nebyl zadn adres'; $strThreadSuccessfullyKilled = 'Vlkno %s bylo spn zabito.'; @@ -691,14 +703,19 @@ $strUnicode = 'Unicode'; $strUnique = 'Uniktn'; $strUnknown = 'neznm'; $strUnselectAll = 'Odznait ve'; +$strUpdComTab = 'Podvejte se prosm do dokumentace, jak aktualizovat tabulku s informacemi o sloupcch (tabulka column_comments)'; $strUpdatePrivMessage = 'Byla aktualizovna oprvnn pro %s.'; $strUpdateProfileMessage = 'Pstup byl zmnn.'; $strUpdateQuery = 'Aktualizovat dotaz'; -$strUpdComTab = 'Podvejte se prosm do dokumentace, jak aktualizovat tabulku s informacemi o sloupcch (tabulka column_comments)'; $strUpgrade = 'Mli byste aktualizovat %s na verzi %s nebo vy.'; $strUsage = 'Pouv'; $strUseBackquotes = 'Pout zptn uvozovky u jmen tabulek a sloupc'; $strUseHostTable = 'Pout tabulku s potai'; +$strUseTabKey = 'Pouijte klvesu TAB pro pohyb mezi hodnotami nebo CTRL+ipky po pohyb vemi smry.'; +$strUseTables = 'Pout tabulky'; +$strUseTextField = 'Pout textov pole'; +$strUseThisValue = 'Pout tuto hodnotu'; +$strUser = 'Uivatel'; $strUserAlreadyExists = 'Uivatel %s ji existuje!'; $strUserEmpty = 'Jmno uivatele je przdn!'; $strUserName = 'Jmno uivatele'; @@ -706,22 +723,17 @@ $strUserNotFound = 'Zvolen $strUserOverview = 'Pehled uivatel'; $strUsersDeleted = 'Vybran uivatel byli spn odstranni.'; $strUsersHavingAccessToDb = 'Uivatel majc pstup k "%s"'; -$strUser = 'Uivatel'; -$strUseTabKey = 'Pouijte klvesu TAB pro pohyb mezi hodnotami nebo CTRL+ipky po pohyb vemi smry.'; -$strUseTables = 'Pout tabulky'; -$strUseTextField = 'Pout textov pole'; -$strUseThisValue = 'Pout tuto hodnotu'; $strValidateSQL = 'Zkontrolovat SQL'; $strValidatorError = 'SQL validtor nemohl bt inicializovn. Prosm zkontrolujte, jestli mte poadovan rozen PHP, kter jsou uvedena v %sdokumentaci%s.'; $strValue = 'Hodnota'; $strVar = 'Promnn'; -$strViewDumpDatabases = 'Export databz'; -$strViewDumpDB = 'Export databze'; $strViewDump = 'Export tabulky'; +$strViewDumpDB = 'Export databze'; +$strViewDumpDatabases = 'Export databz'; -$strWebServerUploadDirectoryError = 'Adres uren pro upload soubor nemohl bt oteven'; $strWebServerUploadDirectory = 'soubor z adrese pro upload'; +$strWebServerUploadDirectoryError = 'Adres uren pro upload soubor nemohl bt oteven'; $strWelcome = 'Vtejte v %s'; $strWestEuropean = 'Zpadn Evropa'; $strWildcard = 'maska'; @@ -738,10 +750,4 @@ $strYes = 'Ano'; $strZeroRemovesTheLimit = 'Poznmka: Nastaven tchto parametr na 0 (nulu) odstran omezen.'; $strZip = '"zazipovno"'; -$strPasswordHashing = 'Password Hashing'; //to translate -$strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate -$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate -$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate ?> diff --git a/lang/czech-utf-8.inc.php b/lang/czech-utf-8.inc.php index b5caa0e21..71935f961 100644 --- a/lang/czech-utf-8.inc.php +++ b/lang/czech-utf-8.inc.php @@ -24,18 +24,17 @@ $datefmt = '%a %d. %b %Y, %H:%M'; $timespanfmt = '%s dnů, %s hodin, %s minut a %s sekund'; +$strAPrimaryKey = 'V tabulce %s byl vytvořen primární klíč'; $strAbortedClients = 'Přerušené'; $strAbsolutePathToDocSqlDir = 'docSQL adresář'; -$strAccessDeniedExplanation = 'phpMyAdmin se pokusil připojit k MySQL serveru, a ten odmítl připojení. Zkontrolujte jméno serveru, uživatelské jméno a heslo v souboru config.inc.php a ujistěte se, že jsou totožné s těmi, které máte od administrátora MySQL serveru.'; $strAccessDenied = 'Přístup odepřen'; +$strAccessDeniedExplanation = 'phpMyAdmin se pokusil připojit k MySQL serveru, a ten odmítl připojení. Zkontrolujte jméno serveru, uživatelské jméno a heslo v souboru config.inc.php a ujistěte se, že jsou totožné s těmi, které máte od administrátora MySQL serveru.'; $strAction = 'Akce'; $strAddAutoIncrement = 'Přidat hodnotu AUTO_INCREMENT'; $strAddConstraints = 'Přidat integritní omezení'; $strAddDeleteColumn = 'Přidat nebo odebrat sloupec'; $strAddDeleteRow = 'Přidat nebo odebrat řádek'; $strAddDropDatabase = 'Přidat DROP DATABASE'; -$strAddedColumnComment = 'Přidán komentář ke sloupci'; -$strAddedColumnRelation = 'Přidána relace pro sloupec'; $strAddFields = 'Přidat %s položek'; $strAddHeaderComment = 'Přidat vlastní komentář do hlavičky (\\n odděluje řádky)'; $strAddIfNotExists = 'Přidat IF NOT EXISTS'; @@ -45,24 +44,27 @@ $strAddPrivilegesOnDb = 'Přidat oprávnění pro databázi'; $strAddPrivilegesOnTbl = 'Přidat oprávnění pro tabulku'; $strAddSearchConditions = 'Přidat vyhledávací parametry (část dotazu po příkazu "WHERE"):'; $strAddToIndex = 'Přidat %s sloupců do indexu'; -$strAddUserMessage = 'Uživatel byl přidán.'; $strAddUser = 'Přidat nového uživatele'; +$strAddUserMessage = 'Uživatel byl přidán.'; +$strAddedColumnComment = 'Přidán komentář ke sloupci'; +$strAddedColumnRelation = 'Přidána relace pro sloupec'; $strAdministration = 'Správa'; $strAffectedRows = 'Ovlivněné řádky:'; +$strAfter = 'Po %s'; $strAfterInsertBack = 'Návrat na předchozí stránku'; $strAfterInsertNewInsert = 'Vložit další řádek'; +$strAfterInsertNext = 'Upravit následující řádek'; $strAfterInsertSame = 'Návrat na tuto stránku'; -$strAfter = 'Po %s'; -$strAllTableSameWidth = 'Použít pro všechny tabulky stejnou šířku'; $strAll = 'Všechno'; +$strAllTableSameWidth = 'Použít pro všechny tabulky stejnou šířku'; $strAlterOrderBy = 'Změnit pořadí tabulky podle'; +$strAnIndex = 'K tabulce %s byl přidán index'; $strAnalyzeTable = 'Analyzovat tabulku'; $strAnd = 'a'; -$strAnIndex = 'K tabulce %s byl přidán index'; -$strAnyHost = 'Jakýkoliv počítač'; $strAny = 'Jakýkoliv'; +$strAnyHost = 'Jakýkoliv počítač'; $strAnyUser = 'Jakýkoliv uživatel'; -$strAPrimaryKey = 'V tabulce %s byl vytvořen primární klíč'; +$strApproximateCount = 'Může být nepřesné, viz FAQ 3.11'; $strArabic = 'Arabština'; $strArmenian = 'Arménština'; $strAscending = 'Vzestupně'; @@ -76,15 +78,15 @@ $strBack = 'Zpět'; $strBaltic = 'Baltické'; $strBeginCut = 'ZAČÁTEK VÝPISU'; $strBeginRaw = 'ZAČÁTEK VÝPISU'; -$strBinary = ' Binární '; -$strBinaryDoNotEdit = ' Binární - neupravujte '; -$strBinaryLog = 'Binární log'; $strBinLogEventType = 'Typ události'; $strBinLogInfo = 'Informace'; $strBinLogName = 'Jméno logu'; $strBinLogOriginalPosition = 'Původní pozice'; $strBinLogPosition = 'Pozice'; $strBinLogServerId = 'ID serveru'; +$strBinary = ' Binární '; +$strBinaryDoNotEdit = ' Binární - neupravujte '; +$strBinaryLog = 'Binární log'; $strBookmarkAllUsers = 'Umožnit všem uživatelům používat tuto položku'; $strBookmarkDeleted = 'Položka byla smazána z oblíbených.'; $strBookmarkLabel = 'Název'; @@ -92,12 +94,13 @@ $strBookmarkOptions = 'Nastavení oblíbeného dotazu'; $strBookmarkQuery = 'Oblíbený SQL dotaz'; $strBookmarkThis = 'Přidat tento SQL dotaz do oblíbených'; $strBookmarkView = 'Jen zobrazit'; -$strBrowseForeignValues = 'Projít hodnoty cizích klíčů'; $strBrowse = 'Projít'; +$strBrowseForeignValues = 'Projít hodnoty cizích klíčů'; $strBulgarian = 'Bulharština'; $strBzError = 'phpMyAdminovi se nepodařilo zkomprimovat výpis, protože rozšíření pro kompresi bz2 je v této verzi PHP chybné. Doporučujeme tuto kompresi vypnout (nastavit$cfg[\'BZipDump\']
v nastaveních phpMyAdmina naFALSE
). Pokud chcete používat kompresi bz2, měli byste nainstalovat novější verzi PHP. Více informací o tomto problému je u popisu chyby %s.'; $strBzip = '"zabzipováno"'; +$strCSVOptions = 'Nastavení CSV exportu'; $strCalendar = 'Kalendář'; $strCannotLogin = 'Nepodařilo se přihlášení k MySQL serveru'; $strCantLoad = 'nelze nahrát rozšíření %s,
zkontrolujte prosím nastavení PHP'; @@ -109,23 +112,23 @@ $strCarriage = 'Návrat vozíku (CR): \\r'; $strCaseInsensitive = 'nerozlišovat velká a malá písmena'; $strCaseSensitive = 'rozlišovat velká a malá písmena'; $strCentralEuropean = 'Střední Evropa'; +$strChange = 'Změnit'; +$strChangeCopyMode = 'Vytvořit nového uživatele se stejnými oprávněními a ...'; $strChangeCopyModeCopy = '... zachovat původního uživatele.'; $strChangeCopyModeDeleteAndReload = ' ... smazat uživatele a poté znovu načíst oprávnění.'; $strChangeCopyModeJustDelete = ' ... smazat původního uživatele ze všech tabulek.'; $strChangeCopyModeRevoke = ' ... odebrat všechna oprávnění původnímu uživateli a poté ho smazat.'; -$strChangeCopyMode = 'Vytvořit nového uživatele se stejnými oprávněními a ...'; $strChangeCopyUser = 'Změnit informace o uživateli / Kopírovat uživatele'; $strChangeDisplay = 'Zvolte které sloupce zobrazit'; $strChangePassword = 'Změnit heslo'; -$strChange = 'Změnit'; -$strCharsetOfFile = 'Znaková sada souboru:'; -$strCharsetsAndCollations = 'Znakové sady a porovnávání'; -$strCharsets = 'Znakové sady'; $strCharset = 'Znaková sada'; +$strCharsetOfFile = 'Znaková sada souboru:'; +$strCharsets = 'Znakové sady'; +$strCharsetsAndCollations = 'Znakové sady a porovnávání'; $strCheckAll = 'Zaškrtnout vše'; $strCheckOverhead = 'Zaškrtnout neoptimální'; -$strCheckPrivsLong = 'Zkontrolovat oprávnění pro databázi "%s".'; $strCheckPrivs = 'Zkontrolovat oprávnění'; +$strCheckPrivsLong = 'Zkontrolovat oprávnění pro databázi "%s".'; $strCheckTable = 'Zkontrolovat tabulku'; $strChoosePage = 'Zvolte stránku, kterou chcete změnit'; $strColComFeat = 'Zobrazuji komentáře sloupců'; @@ -133,8 +136,9 @@ $strCollation = 'Porovnávání'; $strColumnNames = 'Názvy sloupců'; $strColumnPrivileges = 'Oprávnění pro jednotlivé sloupce'; $strCommand = 'Příkaz'; -$strCommentsForTable = 'KOMENTÁŘE PRO TABULKU'; $strComments = 'Komentáře'; +$strCommentsForTable = 'KOMENTÁŘE PRO TABULKU'; +$strCompatibleHashing = 'Kompatibilní s MySQL 4.0'; $strCompleteInserts = 'Úplné inserty'; $strCompression = 'Komprese'; $strConfigFileError = 'phpMyAdmin nemohl načíst konfigurační soubor!
Tato chyba může nastat pokud v něm PHP najde chybu nebo nemůže tento soubor najít.
Po kliknutí na následující odkaz se PHP pokusí přímo interpretovat tento soubor a zobrazí informace o chybě, ke které došlo. Pak opravte tuto chybu (nejčastěji se jedná o chybějící středník).
Pokud získáte prázdnou stránku, všechno je v pořádku.'; @@ -149,40 +153,24 @@ $strCopyTable = 'Kopírovat tabulku do (databáze.tabulka):'; $strCopyTableOK = 'Tabulka %s byla zkopírována do %s.'; $strCopyTableSameNames = 'Nelze kopírovat tabulku na sebe samu!'; $strCouldNotKill = 'phpMyAdminovi se nepodařilo ukončit vlákno %s. Pravděpodobně jeho běh již skončil.'; -$strCreateIndexTopic = 'Vytvořit nový index'; +$strCreate = 'Vytvořit'; $strCreateIndex = 'Vytvořit index na %s sloupcích'; +$strCreateIndexTopic = 'Vytvořit nový index'; $strCreateNewDatabase = 'Vytvořit novou databázi'; $strCreateNewTable = 'Vytvořit novou tabulku v databázi %s'; $strCreatePage = 'Vytvořit novou stránku'; $strCreatePdfFeat = 'Vytváření PDF'; -$strCreate = 'Vytvořit'; $strCreationDates = 'Datum vytvoření, poslední změny a kontroly'; $strCriteria = 'Podmínka'; $strCroatian = 'Chorvatština'; -$strCSVOptions = 'Nastavení CSV exportu'; $strCyrillic = 'Cyrilika'; $strCzech = 'Čeština'; $strCzechSlovak = 'Čeština/Slovenština'; -$strDanish = 'Dánština'; -$strDatabase = 'Databáze'; -$strDatabaseEmpty = 'Jméno databáze je prázdné!'; -$strDatabaseExportOptions = 'Nastavení exportu databází'; -$strDatabaseHasBeenDropped = 'Databáze %s byla zrušena.'; -$strDatabaseNoTable = 'Tato databáze neobsahuje žádné tabulky!'; -$strDatabases = 'Databáze'; -$strDatabasesDropped = '%s databáze byla úspěšně zrušena.'; -$strDatabasesStatsDisable = 'Skrýt podrobnosti'; -$strDatabasesStatsEnable = 'Zobrazit podrobnosti'; -$strDatabasesStatsHeavyTraffic = 'Poznámka: Zobrazení podrobností o databázích může způsobit značné zvýšení provozu mezi webserverem a MySQL serverem.'; -$strDatabasesStats = 'Statistiky databází'; -$strData = 'Data'; -$strDataDict = 'Datový slovník'; -$strDataOnly = ' Jen data'; $strDBComment = 'Komentář k databázi: '; $strDBCopy = 'Zkopírovat databázi na'; -$strDBGContextID = 'Kontext ID'; $strDBGContext = 'Kontext'; +$strDBGContextID = 'Kontext ID'; $strDBGHits = 'Zásahů'; $strDBGLine = 'Řádka'; $strDBGMaxTimeMs = 'Min. čas, ms'; @@ -190,50 +178,65 @@ $strDBGMinTimeMs = 'Max. čas, ms'; $strDBGModule = 'Modul'; $strDBGTimePerHitMs = 'Čas/Zásah, ms'; $strDBGTotalTimeMs = 'Celkový čas, ms'; -$strDbPrivileges = 'Oprávnění pro jednotlivé databáze'; $strDBRename = 'Přejmenovat databázi na'; +$strDanish = 'Dánština'; +$strData = 'Data'; +$strDataDict = 'Datový slovník'; +$strDataOnly = ' Jen data'; +$strDatabase = 'Databáze'; +$strDatabaseEmpty = 'Jméno databáze je prázdné!'; +$strDatabaseExportOptions = 'Nastavení exportu databází'; +$strDatabaseHasBeenDropped = 'Databáze %s byla zrušena.'; +$strDatabaseNoTable = 'Tato databáze neobsahuje žádné tabulky!'; +$strDatabases = 'Databáze'; +$strDatabasesDropped = '%s databáze byla úspěšně zrušena.'; +$strDatabasesStats = 'Statistiky databází'; +$strDatabasesStatsDisable = 'Skrýt podrobnosti'; +$strDatabasesStatsEnable = 'Zobrazit podrobnosti'; +$strDatabasesStatsHeavyTraffic = 'Poznámka: Zobrazení podrobností o databázích může způsobit značné zvýšení provozu mezi webserverem a MySQL serverem.'; +$strDbPrivileges = 'Oprávnění pro jednotlivé databáze'; $strDbSpecific = 'závislé na databázi'; -$strDefaultValueHelp = 'Výchozí hodnotu zadejte jen jednu hodnotu bez uvozovek a escapování znaků, například: a'; $strDefault = 'Výchozí'; +$strDefaultValueHelp = 'Výchozí hodnotu zadejte jen jednu hodnotu bez uvozovek a escapování znaků, například: a'; $strDefragment = 'Defragmentovat tabulku'; +$strDelOld = 'Aktuální stránka se odkazuje na tabulky, které již neexistují. Chcete odstranit tyto odkazy?'; $strDelayedInserts = 'Používat zpožděné inserty'; -$strDeleteAndFlushDescr = 'Toto je nejčistší řešení, ale načítání oprávnění může trvat dlouho.'; +$strDelete = 'Smazat'; $strDeleteAndFlush = 'Odstranit uživatele a znovunačíst oprávnění.'; +$strDeleteAndFlushDescr = 'Toto je nejčistší řešení, ale načítání oprávnění může trvat dlouho.'; $strDeleted = 'Řádek byl smazán'; $strDeletedRows = 'Smazané řádky:'; -$strDelete = 'Smazat'; $strDeleting = 'Odstraňuji %s'; -$strDelOld = 'Aktuální stránka se odkazuje na tabulky, které již neexistují. Chcete odstranit tyto odkazy?'; $strDescending = 'Sestupně'; $strDescription = 'Popis'; $strDictionary = 'slovník'; -$strDisabled = 'Vypnuto'; $strDisableForeignChecks = 'Vypnout kontrolu cizích klíčů'; +$strDisabled = 'Vypnuto'; $strDisplayFeat = 'Zobrazení funkcí'; $strDisplayOrder = 'Seřadit podle:'; $strDisplayPDF = 'Zobrazit jako schéma v PDF'; $strDoAQuery = 'Provést "dotaz podle příkladu" (zástupný znak: "%")'; -$strDocu = 'Dokumentace'; $strDoYouReally = 'Opravdu si přejete vykonat příkaz'; -$strDropDatabaseStrongWarning = 'Chystáte se ZRUŠIT celou databázi!'; +$strDocu = 'Dokumentace'; $strDrop = 'Odstranit'; +$strDropDatabaseStrongWarning = 'Chystáte se ZRUŠIT celou databázi!'; $strDropSelectedDatabases = 'Zrušit vybranou databázi'; $strDropUsersDb = 'Odstranit databáze se stejnými jmény jako uživatelé.'; -$strDumpingData = 'Vypisuji data pro tabulku'; $strDumpSaved = 'Výpis byl uložen do souboru %s.'; $strDumpXRows = 'Vypsat %s řádků od %s.'; +$strDumpingData = 'Vypisuji data pro tabulku'; $strDynamic = 'dynamický'; +$strEdit = 'Upravit'; $strEditPDFPages = 'Upravit PDF stránky'; $strEditPrivileges = 'Upravit oprávnění'; -$strEdit = 'Upravit'; $strEffective = 'Efektivní'; -$strEmptyResultSet = 'MySQL vrátil prázdný výsledek (tj. nulový počet řádků).'; $strEmpty = 'Vyprázdnit'; +$strEmptyResultSet = 'MySQL vrátil prázdný výsledek (tj. nulový počet řádků).'; $strEnabled = 'Zapnuto'; $strEncloseInTransaction = 'Uzavřít příkazy v transakci'; -$strEndCut = 'KONEC VÝPISU'; $strEnd = 'Konec'; +$strEndCut = 'KONEC VÝPISU'; $strEndRaw = 'KONEC VÝPISU'; $strEnglish = 'Anglicky'; $strEnglishPrivileges = 'Poznámka: názvy oprávnění v MySQL jsou uváděny anglicky'; @@ -249,29 +252,29 @@ $strExtendedInserts = 'Rozšířené inserty'; $strExtra = 'Extra'; $strFailedAttempts = 'Nepovedených pokusů'; +$strField = 'Sloupec'; $strFieldHasBeenDropped = 'Sloupec %s byl odstraněn'; +$strFields = 'Sloupce'; $strFieldsEmpty = ' Nebyl zadán počet sloupců! '; $strFieldsEnclosedBy = 'Názvy sloupců uzavřené do'; $strFieldsEscapedBy = 'Názvy sloupců escapovány'; -$strField = 'Sloupec'; -$strFields = 'Sloupce'; $strFieldsTerminatedBy = 'Sloupce oddělené'; $strFileAlreadyExists = 'Soubor %s již na serveru existuje, změňte jméno souboru, nebo zvolte přepsání souboru.'; $strFileCouldNotBeRead = 'Soubor nelze přečíst'; +$strFileNameTemplate = 'Vzor pro jméno souboru'; $strFileNameTemplateHelp = 'Použijte __DB__ pro jméno databáze, __TABLE__ pro jméno tabulky a jakékoliv parametry pro %sfunkci strftime%s pro vložení data. Přípona souboru bude automaticky přidána podle typu. Jakýkoliv jiný text bude zachován.'; $strFileNameTemplateRemember = 'zapamatovat si hodnotu'; -$strFileNameTemplate = 'Vzor pro jméno souboru'; $strFixed = 'pevný'; $strFlushPrivilegesNote = 'Poznámka: phpMyAdmin získává oprávnění přímo z tabulek MySQL. Obsah těchto tabulek se může lišit od oprávnění, která server právě používá, pokud byly tyto tabulky upravovány. V tomto případě je vhodné provést %sznovunačtení oprávnění%s před pokračováním.'; $strFlushTable = 'Vyprázdnit vyrovnávací paměť pro tabulku ("FLUSH")'; -$strFormat = 'Formát'; $strFormEmpty = 'Chybějící hodnota ve formuláři!'; +$strFormat = 'Formát'; $strFullText = 'Celé texty'; $strFunction = 'Funkce'; $strGenBy = 'Vygeneroval'; -$strGeneralRelationFeat = 'Obecné funkce relací'; $strGenTime = 'Vygenerováno'; +$strGeneralRelationFeat = 'Obecné funkce relací'; $strGeorgian = 'Gruzínština'; $strGerman = 'Německy'; $strGlobal = 'globální'; @@ -289,8 +292,8 @@ $strHebrew = 'Hebrejština'; $strHexForBinary = 'Binarní pole vypisovat šestnáctkově'; $strHome = 'Hlavní strana'; $strHomepageOfficial = 'Oficiální stránka phpMyAdmina'; -$strHostEmpty = 'Jméno počítače je prázdné!'; $strHost = 'Počítač'; +$strHostEmpty = 'Jméno počítače je prázdné!'; $strHungarian = 'Maďarština'; $strIcelandic = 'Islandština'; @@ -303,44 +306,48 @@ $strIgnoringFile = 'Ignoruji soubor %s'; $strImportDocSQL = 'Importovat soubory docSQL'; $strImportFiles = 'Importovat soubory'; $strImportFinished = 'Import ukončen'; -$strIndexes = 'Indexy'; -$strIndexHasBeenDropped = 'Index %s byl odstraněn'; +$strInUse = 'právě se používá'; $strIndex = 'Index'; +$strIndexHasBeenDropped = 'Index %s byl odstraněn'; $strIndexName = 'Jméno indexu :'; $strIndexType = 'Typ indexu :'; +$strIndexWarningMultiple = 'Pro sloupec `%s` je vytvořeno více indexů'; +$strIndexWarningPrimary = 'Sloupec `%s` by neměl být zárověň obsažen v PRIMARY a INDEX klíči'; +$strIndexWarningTable = 'Problémy s indexy v tabulce `%s`'; +$strIndexWarningUnique = 'Sloupec `%s` by neměl být zárověň obsažen v PRIMARY a UNIQUE klíči'; +$strIndexes = 'Indexy'; $strInnodbStat = 'Stav InnoDB'; $strInsecureMySQL = 'Máte standardní nastavení hesla uživatele root v MySQL. Doporučujeme změnit toto nastavení a tím podstatně zvýšit bezpečnost Vašeho serveru.'; +$strInsert = 'Vložit'; $strInsertAsNewRow = 'Vložit jako nový řádek'; $strInsertBookmarkTitle = 'Prosím zadejte název oblíbené položky'; -$strInsertedRowId = 'Id vloženého řádku:'; -$strInsertedRows = 'Vloženo řádků:'; $strInsertNewRow = 'Vložit nový řádek'; $strInsertTextfiles = 'Vložit textové soubory do tabulky'; -$strInsert = 'Vložit'; +$strInsertedRowId = 'Id vloženého řádku:'; +$strInsertedRows = 'Vloženo řádků:'; $strInstructions = 'Instrukce'; $strInternalNotNecessary = '* Interní relace není potřebná, pokud již relace existuje v InnoDB.'; $strInternalRelations = 'Interní relace'; -$strInUse = 'právě se používá'; $strJapanese = 'Japonština'; $strJumpToDB = 'Na databázi "%s".'; -$strJustDeleteDescr = 'Odstranění uživatelé stále budou mít přistup na server dokud nebudou znovunačtena oprávnění.'; $strJustDelete = 'Jen odstranit uživatele z tabulek s oprávněními.'; +$strJustDeleteDescr = 'Odstranění uživatelé stále budou mít přistup na server dokud nebudou znovunačtena oprávnění.'; $strKeepPass = 'Neměnit heslo'; $strKeyname = 'Klíčový název'; $strKill = 'Ukončit'; $strKorean = 'Korejština'; +$strLaTeX = 'LaTeX'; +$strLaTeXOptions = 'Nastavení exportu do LaTeXu'; $strLandscape = 'Na šířku'; $strLatexCaption = 'Titulek tabulky'; $strLatexContent = 'Obsah tabulky __TABLE__'; -$strLatexContinuedCaption = 'Titulek pokračování tabulky'; $strLatexContinued = '(pokračování)'; +$strLatexContinuedCaption = 'Titulek pokračování tabulky'; $strLatexIncludeCaption = 'Použít titulek tabulky'; $strLatexLabel = 'Návěstí'; -$strLaTeX = 'LaTeX'; -$strLaTeXOptions = 'Nastavení exportu do LaTeXu'; $strLatexStructure = 'Struktura tabulky __TABLE__'; $strLatvian = 'Lotyšština'; $strLengthSet = 'Délka/Množina*'; @@ -354,31 +361,33 @@ $strLoadExplanation = 'Automaticky jsou zvoleny nejvhodnější parametry, pokud $strLoadMethod = 'Parametry pro příkaz LOAD'; $strLocalhost = 'Lokální'; $strLocationTextfile = 'textový soubor'; -$strLoginInformation = 'Přihlašování'; -$strLogin = 'Přihlášení'; -$strLogout = 'Odhlásit se'; $strLogPassword = 'Heslo:'; $strLogServer = 'Server'; $strLogUsername = 'Jméno:'; +$strLogin = 'Přihlášení'; +$strLoginInformation = 'Přihlašování'; +$strLogout = 'Odhlásit se'; -$strMaximumSize = 'Maximální velikost: %s%s'; +$strMIMETypesForTable = 'MIME TYPY PRO TABULKU'; +$strMIME_MIMEtype = 'MIME typ'; $strMIME_available_mime = 'Dostupné MIME typy'; $strMIME_available_transform = 'Dostupné transformace'; $strMIME_description = 'Popis'; -$strMIME_MIMEtype = 'MIME typ'; $strMIME_nodescription = 'Pro tuto transformaci není dostupný žádný popis.
Zeptejte se autora co %s dělá.'; -$strMIME_transformation_note = 'Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na %spopisy transformací%s'; -$strMIME_transformation_options_note = 'Zadejte parametry transformací v následujícím tvaru: \'a\',\'b\',\'c\'...
Pokud potřebujete použít zpětné lomítko ("\") nebo jednoduché uvozovky ("\'") mezi těmito hodnotami, vložte před ně zpětné lomítko (například \'\\\\xyz\' nebo \'a\\\'b\').'; -$strMIME_transformation_options = 'Parametry transformace'; $strMIME_transformation = 'Transformace při prohlížení'; -$strMIMETypesForTable = 'MIME TYPY PRO TABULKU'; +$strMIME_transformation_note = 'Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na %spopisy transformací%s'; +$strMIME_transformation_options = 'Parametry transformace'; +$strMIME_transformation_options_note = 'Zadejte parametry transformací v následujícím tvaru: \'a\',\'b\',\'c\'...
Pokud potřebujete použít zpětné lomítko ("\") nebo jednoduché uvozovky ("\'") mezi těmito hodnotami, vložte před ně zpětné lomítko (například \'\\\\xyz\' nebo \'a\\\'b\').'; $strMIME_without = 'MIME typy zobrazené kurzívou nemají vlastní transformační funkci'; +$strMaximumSize = 'Maximální velikost: %s%s'; +$strMbExtensionMissing = 'Rozšíření mbstring pro PHP nebylo nalezeno a zdá se, že požíváte vícebajtovou znakovou sadu. Bez rozšíření mbstring neumí phpMyAdmin správně rozdělovat řetězce a proto to může mít nečekané následky.'; +$strMbOverloadWarning = 'V nastavení PHP máte zapnuto mbstring.func_overload. Toto nastavení není kompatibilní s phpMyAdminem a může způsobit poškození dat!'; $strModifications = 'Změny byly uloženy'; -$strModifyIndexTopic = 'Upravit index'; $strModify = 'Úpravy'; +$strModifyIndexTopic = 'Upravit index'; $strMoreStatusVars = 'Další informace o stavu'; -$strMoveTableOK = 'Tabulka %s byla přesunuta do %s.'; $strMoveTable = 'Přesunout tabulku do (databáze.tabulka):'; +$strMoveTableOK = 'Tabulka %s byla přesunuta do %s.'; $strMoveTableSameNames = 'Nelze přesunout tabulku na sebe samu!'; $strMultilingual = 'mnohojazyčný'; $strMustSelectFile = 'Zvolte soubor, který chcete vložit.'; @@ -394,17 +403,17 @@ $strMySQLShowVars = 'Ukázat systémové proměnné MySQL'; $strName = 'Název'; $strNeedPrimaryKey = 'Pro tuto tabulku byste měli definovat primární klíč.'; $strNext = 'Další'; -$strNoDatabasesSelected = 'Nebyla vybrána žádná databáze.'; +$strNo = 'Ne'; +$strNoActivity = 'Byli jste příliš dlouho neaktivní (déle než %s sekund), prosím přihlašte se znovu'; $strNoDatabases = 'Žádné databáze'; +$strNoDatabasesSelected = 'Nebyla vybrána žádná databáze.'; $strNoDescription = 'žádný popisek'; $strNoDropDatabases = 'Příkaz "DROP DATABASE" je vypnutý.'; $strNoExplain = 'Bez vysvětlení (EXPLAIN) SQL'; $strNoFrames = 'phpMyAdmin se lépe používá v prohlížeči podporujícím rámy ("FRAME").'; -$strNoIndexPartsDefined = 'Žádná část indexu nebyla definována!'; $strNoIndex = 'Žádný index nebyl definován!'; +$strNoIndexPartsDefined = 'Žádná část indexu nebyla definována!'; $strNoModification = 'Žádná změna'; -$strNo = 'Ne'; -$strNone = 'Žádná'; $strNoOptions = 'Tento formát nemá žádná nastavení'; $strNoPassword = 'Žádné heslo'; $strNoPermission = 'Web server nemá oprávnění uložit výpis do souboru %s.'; @@ -416,19 +425,20 @@ $strNoRowsSelected = 'Nebyla vybrán žádný řádek'; $strNoSpace = 'Nedostatek místa pro uložení souboru %s.'; $strNoTablesFound = 'V databázi nebyla nalezena žádná tabulka.'; $strNoThemeSupport = 'Není podporována změna tématu, zkontrolujte nastavení a témata v adresáři %s.'; +$strNoUsersFound = 'Žádný uživatel nenalezen.'; +$strNoValidateSQL = 'Bez kontroly SQL'; +$strNone = 'Žádná'; $strNotNumber = 'Nebylo zadáno číslo!'; $strNotOK = 'není v pořádku'; $strNotSet = '%s tabulka nenalezena nebo není nastavena v %s'; $strNotValidNumber = ' není platné číslo řádku!'; -$strNoUsersFound = 'Žádný uživatel nenalezen.'; -$strNoValidateSQL = 'Bez kontroly SQL'; $strNull = 'Nulový'; $strNumSearchResultsInTable = '%s odpovídající(ch) záznam(ů) v tabulce %s'; $strNumSearchResultsTotal = 'Celkem: %s odpovídající(ch) záznam(ů)'; $strNumTables = 'Tabulek'; -$strOftenQuotation = 'Často uvozující znaky. Volitelně znamená, že pouze položky u kterých je to nutné (obvykle typu CHAR a VARCHAR) jsou uzavřeny do uzavíracích znaků.'; $strOK = 'OK'; +$strOftenQuotation = 'Často uvozující znaky. Volitelně znamená, že pouze položky u kterých je to nutné (obvykle typu CHAR a VARCHAR) jsou uzavřeny do uzavíracích znaků.'; $strOperations = 'Úpravy'; $strOperator = 'Operátor'; $strOptimizeTable = 'Optimalizovat tabulku'; @@ -438,12 +448,15 @@ $strOr = 'nebo'; $strOverhead = 'Navíc'; $strOverwriteExisting = 'Přepsat existující soubor(y)'; +$strPHP40203 = 'Používáte PHP 4.2.3, které má závažnou chybu při práci s vícebajtovými znaky (mbstring), jedná se o chybu PHP číslo 19404. Nedoporučujeme používat tuto verzi PHP s phpMyAdminem.'; +$strPHPVersion = 'Verze PHP'; $strPageNumber = 'Strana číslo:'; $strPaperSize = 'Velikost stránky'; $strPartialText = 'Zkrácené texty'; +$strPassword = 'Heslo'; $strPasswordChanged = 'Heslo pro %s bylo úspěšně změněno.'; $strPasswordEmpty = 'Heslo je prázdné!'; -$strPassword = 'Heslo'; +$strPasswordHashing = 'Hašovací funkce pro heslo'; $strPasswordNotSame = 'Hesla nejsou stejná!'; $strPdfDbSchema = 'Schéma databáze "%s" - Strana %s'; $strPdfInvalidTblName = 'Tabulka "%s" neexistuje!'; @@ -453,8 +466,6 @@ $strPerMinute = 'za minutu'; $strPerSecond = 'za sekundu'; $strPersian = 'Perština'; $strPhoneBook = 'adresář'; -$strPHP40203 = 'Používáte PHP 4.2.3, které má závažnou chybu při práci s vícebajtovými znaky (mbstring), jedná se o chybu PHP číslo 19404. Nedoporučujeme používat tuto verzi PHP s phpMyAdminem.'; -$strPHPVersion = 'Verze PHP'; $strPhp = 'Zobrazit PHP kód'; $strPmaDocumentation = 'Dokumentace phpMyAdmina'; $strPmaUriError = 'Parametr $cfg[\'PmaAbsoluteUri\'] MUSÍ být nastaven v konfiguračním souboru!'; @@ -462,13 +473,13 @@ $strPolish = 'Polština'; $strPortrait = 'Na výšku'; $strPos1 = 'Začátek'; $strPrevious = 'Předchozí'; +$strPrimary = 'Primární'; $strPrimaryKeyHasBeenDropped = 'Primární klíč byl odstraněn'; $strPrimaryKeyName = 'Jméno primárního klíče musí být "PRIMARY"!'; $strPrimaryKeyWarning = '("PRIMARY" musí být jméno pouze primárního klíče!)'; -$strPrimary = 'Primární'; -$strPrintViewFull = 'Náhled k vytištění (s kompletními texty)'; -$strPrintView = 'Náhled k vytištění'; $strPrint = 'Vytisknout'; +$strPrintView = 'Náhled k vytištění'; +$strPrintViewFull = 'Náhled k vytištění (s kompletními texty)'; $strPrivDescAllPrivileges = 'Všechna oprávnění kromě GRANT.'; $strPrivDescAlter = 'Umožňuje měnit strukturu existujících tabulek.'; $strPrivDescCreateDb = 'Umožňuje vytvářet nové databáze a tabulky.'; @@ -503,8 +514,8 @@ $strPrivilegesReloaded = 'Oprávnění byla znovunačtena úspěšně.'; $strProcesslist = 'Seznam procesů'; $strPutColNames = 'Přidat jména sloupců na první řádek'; -$strQBEDel = 'smazat'; $strQBE = 'Dotaz'; +$strQBEDel = 'smazat'; $strQBEIns = 'přidat'; $strQueryFrame = 'SQL okno'; $strQueryOnDb = 'SQL dotaz na databázi %s:'; @@ -514,51 +525,63 @@ $strQueryTime = 'Dotaz zabral %01.4f sekund'; $strQueryType = 'Typ dotazu'; $strQueryWindowLock = 'Nepřepisovat tento dotaz z hlavního okna'; +$strReType = 'Heslo znovu'; $strReceived = 'Přijato'; $strRecords = 'Záznamů'; $strReferentialIntegrity = 'Zkontrolovat integritu odkazů:'; $strRefresh = 'Obnovit'; -$strRelationalSchema = 'Relační schéma'; $strRelationNotWorking = 'Některé z rozšířených funkcí phpMyAdmina nelze používat. %sZde%s zjistíte proč.'; -$strRelationsForTable = 'RELACE PRO TABULKU'; -$strRelations = 'Relace'; $strRelationView = 'Zobrazit relace'; +$strRelationalSchema = 'Relační schéma'; +$strRelations = 'Relace'; +$strRelationsForTable = 'RELACE PRO TABULKU'; $strReloadFailed = 'Znovunačtení MySQL selhalo.'; -$strReloadingThePrivileges = 'Znovunačítám oprávnění'; $strReloadMySQL = 'Znovunačtení MySQL'; +$strReloadingThePrivileges = 'Znovunačítám oprávnění'; $strRemoveSelectedUsers = 'Odstranit vybrané uživatele'; $strRenameDatabaseOK = 'Databáze %s byla přejmenována na %s'; -$strRenameTableOK = 'Tabulka %s byla přejmenována na %s'; $strRenameTable = 'Přejmenovat tabulku na'; +$strRenameTableOK = 'Tabulka %s byla přejmenována na %s'; $strRepairTable = 'Opravit tabulku'; -$strReplaceNULLBy = 'Nahradit NULL hodnoty'; $strReplace = 'Přepsat'; +$strReplaceNULLBy = 'Nahradit NULL hodnoty'; $strReplaceTable = 'Přepsat data tabulky souborem'; $strReset = 'Původní'; $strResourceLimits = 'Omezení zdrojů'; -$strReType = 'Heslo znovu'; -$strRevokeAndDeleteDescr = 'Uživatelé budou mít oprávnění "USAGE" (používání) dokud nebudou znovunačtena oprávnění.'; -$strRevokeAndDelete = 'Odebrat uživatelům veškerá oprávnění a poté je odstranit z tabulek.'; -$strRevokeMessage = 'Byla zrušena práva pro %s'; $strRevoke = 'Zrušit'; +$strRevokeAndDelete = 'Odebrat uživatelům veškerá oprávnění a poté je odstranit z tabulek.'; +$strRevokeAndDeleteDescr = 'Uživatelé budou mít oprávnění "USAGE" (používání) dokud nebudou znovunačtena oprávnění.'; +$strRevokeMessage = 'Byla zrušena práva pro %s'; $strRomanian = 'Rumunština'; $strRowLength = 'Délka řádku'; -$strRowsFrom = 'řádků začínající od'; $strRowSize = ' Velikost řádku '; +$strRows = 'Řádků'; +$strRowsFrom = 'řádků začínající od'; $strRowsModeFlippedHorizontal = 'vodorovném (otočené hlavičky)'; $strRowsModeHorizontal = 'vodorovném'; $strRowsModeOptions = 've %s režimu a opakovat hlavičky po %s řádcích.'; $strRowsModeVertical = 'svislém'; -$strRows = 'Řádků'; $strRowsStatistic = 'Statistika řádků'; -$strRunning = 'na %s'; $strRunQuery = 'Provést dotaz'; $strRunSQLQuery = 'Spustit SQL dotaz(y) na databázi %s'; +$strRunning = 'na %s'; $strRussian = 'Ruština'; -$strSaveOnServer = 'Uložit na serveru v adresáři %s'; +$strSQL = 'SQL'; +$strSQLExportCompatibility = 'Kompatibilita SQL exportu'; +$strSQLExportType = 'Typ vytvořených dotazů'; +$strSQLOptions = 'Nastavení SQL exportu'; +$strSQLParserBugMessage = 'Je možné, že jste našli chybu v SQL parseru. Prosím prozkoumejte podrobně SQL dotaz, především jestli jsou správně uvozovky a jestli nejsou proházené. Další možnost selhání je pokud nahráváte soubor s binárními daty nezapsanými v uvozovkách. Můžete také vyzkoušet příkazovou řádku MySQL. Níže uvedený výstup z MySQL serveru (pokud je nějaký) Vám také může pomoci při zkoumání problému. Pokud stále máte problémy nebo pokud SQL parser ohlásí chybu u dotazu, který na příkazové řádce funguje, prosím pokuste se zredukovat dotaz na co nejmenší, ve kterém se problém ještě vyskytne, a ohlaste chybu na stránkách phpMyAdmina spolu se sekcí VÝPIS uvedenou níže:'; +$strSQLParserUserError = 'Pravděpodobně máte v SQL dotazu chybu. Níže uvedený výstup MySQL serveru (pokud je nějaký) Vám také může pomoci při zkoumání problému'; +$strSQLQuery = 'SQL-dotaz'; +$strSQLResult = 'Výsledek SQL dotazu'; +$strSQPBugInvalidIdentifer = 'Chybný identifikátor'; +$strSQPBugUnclosedQuote = 'Neuzavřené uvozovky'; +$strSQPBugUnknownPunctuation = 'Neznámé interpunkční znaménko'; $strSave = 'Ulož'; +$strSaveOnServer = 'Uložit na serveru v adresáři %s'; $strScaleFactorSmall = 'Měřítko je příliš malé, aby se schéma vešlo na jednu stránku'; +$strSearch = 'Vyhledávání'; $strSearchFormTitle = 'Vyhledávání v databázi'; $strSearchInTables = 'V tabulkách:'; $strSearchNeedle = 'Slova nebo hodnoty, které chcete vyhledat (zástupný znak: "%"):'; @@ -568,7 +591,6 @@ $strSearchOption3 = 'přesnou frázi'; $strSearchOption4 = 'jako regulární výraz'; $strSearchResultsFor = 'Výsledky vyhledávání pro "%s" %s:'; $strSearchType = 'Najít:'; -$strSearch = 'Vyhledávání'; $strSecretRequired = 'Nastavte klíč pro šifrování cookies (blowfish_secret) v konfiguračním souboru (config.inc.php).'; $strSelectADb = 'Prosím vyberte databázi'; $strSelectAll = 'Vybrat vše'; @@ -578,9 +600,9 @@ $strSelectNumRows = 'v dotazu'; $strSelectTables = 'Vybrat tabulky'; $strSend = 'Do souboru'; $strSent = 'Odesláno'; +$strServer = 'Server'; $strServerChoice = 'Výběr serveru'; $strServerNotResponding = 'Server neodpovídá'; -$strServer = 'Server'; $strServerStatus = 'Stav serveru'; $strServerStatusUptime = 'Tento MySQL server běží %s. Čas spuštění: %s.'; $strServerTabProcesslist = 'Procesy'; @@ -590,41 +612,31 @@ $strServerVars = 'Proměnné a nastavení serveru'; $strServerVersion = 'Verze MySQL'; $strSessionValue = 'Hodnota sezení'; $strSetEnumVal = 'Pokud je sloupec typu "enum" nebo "set", zadávejte hodnoty v následujícím formátu: \'a\',\'b\',\'c\'...
Pokud potřebujete zadat zpětné lomítko ("\") nebo jednoduché uvozovky ("\'") mezi těmito hodnotami, napište před ně zpětné lomítko (příklad: \'\\\\xyz\' nebo \'a\\\'b\').'; +$strShow = 'Zobrazit'; $strShowAll = 'Zobrazit vše'; $strShowColor = 'Barevné šipky'; $strShowDatadictAs = 'Formát datového slovníku'; $strShowFullQueries = 'Zobrazit celé dotazy'; $strShowGrid = 'Zobrazit mřížku'; -$strShowingRecords = 'Zobrazeny záznamy'; $strShowPHPInfo = 'Zobrazit informace o PHP'; $strShowTableDimension = 'Rozměry tabulek'; $strShowTables = 'Zobrazit tabulky'; $strShowThisQuery = 'Zobrazit zde tento dotaz znovu'; -$strShow = 'Zobrazit'; +$strShowingRecords = 'Zobrazeny záznamy'; $strSimplifiedChinese = 'Zjednodušená čínština'; $strSingly = '(po jednom)'; $strSize = 'Velikost'; $strSlovak = 'Slovenština'; $strSlovenian = 'Slovinština'; -$strSortByKey = 'Setřídit podle klíče'; $strSort = 'Řadit'; +$strSortByKey = 'Setřídit podle klíče'; $strSpaceUsage = 'Využití místa'; $strSpanish = 'Španělština'; $strSplitWordsWithSpace = 'Slova jsou oddělena mezerou (" ").'; -$strSQLExportType = 'Typ vytvořených dotazů'; -$strSQLOptions = 'Nastavení SQL exportu'; -$strSQLParserBugMessage = 'Je možné, že jste našli chybu v SQL parseru. Prosím prozkoumejte podrobně SQL dotaz, především jestli jsou správně uvozovky a jestli nejsou proházené. Další možnost selhání je pokud nahráváte soubor s binárními daty nezapsanými v uvozovkách. Můžete také vyzkoušet příkazovou řádku MySQL. Níže uvedený výstup z MySQL serveru (pokud je nějaký) Vám také může pomoci při zkoumání problému. Pokud stále máte problémy nebo pokud SQL parser ohlásí chybu u dotazu, který na příkazové řádce funguje, prosím pokuste se zredukovat dotaz na co nejmenší, ve kterém se problém ještě vyskytne, a ohlaste chybu na stránkách phpMyAdmina spolu se sekcí VÝPIS uvedenou níže:'; -$strSQLParserUserError = 'Pravděpodobně máte v SQL dotazu chybu. Níže uvedený výstup MySQL serveru (pokud je nějaký) Vám také může pomoci při zkoumání problému'; -$strSQLQuery = 'SQL-dotaz'; -$strSQLResult = 'Výsledek SQL dotazu'; -$strSQL = 'SQL'; -$strSQPBugInvalidIdentifer = 'Chybný identifikátor'; -$strSQPBugUnclosedQuote = 'Neuzavřené uvozovky'; -$strSQPBugUnknownPunctuation = 'Neznámé interpunkční znaménko'; $strStatCheckTime = 'Poslední kontrola'; $strStatCreateTime = 'Vytvoření'; -$strStatement = 'Údaj'; $strStatUpdateTime = 'Poslední změna'; +$strStatement = 'Údaj'; $strStatus = 'Stav'; $strStrucCSV = 'CSV data'; $strStrucData = 'Strukturu a data'; @@ -641,6 +653,7 @@ $strSwedish = 'Švédština'; $strSwitchToDatabase = 'Přepnout na zkopírovanou databázi'; $strSwitchToTable = 'Přepnout na zkopírovanou tabulku'; +$strTable = 'Tabulka'; $strTableComments = 'Komentář k tabulce'; $strTableEmpty = 'Jméno tabulky je prázdné!'; $strTableHasBeenDropped = 'Tabulka %s byla odstraněna'; @@ -649,18 +662,17 @@ $strTableHasBeenFlushed = 'Vyrovnávací paměť pro tabulku %s byla vyprázdně $strTableMaintenance = ' Údržba tabulky '; $strTableOfContents = 'Obsah'; $strTableOptions = 'Parametry tabulky'; -$strTables = '%s tabulek'; $strTableStructure = 'Struktura tabulky'; -$strTable = 'Tabulka'; $strTableType = 'Typ tabulky'; +$strTables = '%s tabulek'; $strTakeIt = 'zvolit'; $strTblPrivileges = 'Oprávnění pro jednotlivé tabulky'; $strTextAreaLength = 'Tento sloupec možná nepůjde
(kvůli délce) upravit '; $strThai = 'Thajština'; $strTheContent = 'Obsah souboru byl vložen'; $strTheContents = 'Obsah souboru přepíše obsah zvolené tabulky v těch řádcích, kde je stejný primární nebo unikátní klíč.'; -$strTheme = 'Vzhled'; $strTheTerminator = 'Sloupce jsou odděleny tímto znakem.'; +$strTheme = 'Vzhled'; $strThisHost = 'Tento počítač'; $strThisNotDirectory = 'Nebyl zadán adresář'; $strThreadSuccessfullyKilled = 'Vlákno %s bylo úspěšně zabito.'; @@ -692,14 +704,19 @@ $strUnicode = 'Unicode'; $strUnique = 'Unikátní'; $strUnknown = 'neznámý'; $strUnselectAll = 'Odznačit vše'; +$strUpdComTab = 'Podívejte se prosím do dokumentace, jak aktualizovat tabulku s informacemi o sloupcích (tabulka column_comments)'; $strUpdatePrivMessage = 'Byla aktualizována oprávnění pro %s.'; $strUpdateProfileMessage = 'Přístup byl změněn.'; $strUpdateQuery = 'Aktualizovat dotaz'; -$strUpdComTab = 'Podívejte se prosím do dokumentace, jak aktualizovat tabulku s informacemi o sloupcích (tabulka column_comments)'; $strUpgrade = 'Měli byste aktualizovat %s na verzi %s nebo vyšší.'; $strUsage = 'Používá'; $strUseBackquotes = 'Použít zpětné uvozovky u jmen tabulek a sloupců'; $strUseHostTable = 'Použít tabulku s počítači'; +$strUseTabKey = 'Použijte klávesu TAB pro pohyb mezi hodnotami nebo CTRL+šipky po pohyb všemi směry.'; +$strUseTables = 'Použít tabulky'; +$strUseTextField = 'Použít textové pole'; +$strUseThisValue = 'Použít tuto hodnotu'; +$strUser = 'Uživatel'; $strUserAlreadyExists = 'Uživatel %s již existuje!'; $strUserEmpty = 'Jméno uživatele je prázdné!'; $strUserName = 'Jméno uživatele'; @@ -707,22 +724,17 @@ $strUserNotFound = 'Zvolený uživatel nebyl nalezen v tabulce oprávnění $strUserOverview = 'Přehled uživatelů'; $strUsersDeleted = 'Vybraní uživatelé byli úspěšně odstraněni.'; $strUsersHavingAccessToDb = 'Uživatelé mající přístup k "%s"'; -$strUser = 'Uživatel'; -$strUseTabKey = 'Použijte klávesu TAB pro pohyb mezi hodnotami nebo CTRL+šipky po pohyb všemi směry.'; -$strUseTables = 'Použít tabulky'; -$strUseTextField = 'Použít textové pole'; -$strUseThisValue = 'Použít tuto hodnotu'; $strValidateSQL = 'Zkontrolovat SQL'; $strValidatorError = 'SQL validátor nemohl být inicializován. Prosím zkontrolujte, jestli máte požadovaná rozšíření PHP, která jsou uvedena v %sdokumentaci%s.'; $strValue = 'Hodnota'; $strVar = 'Proměnná'; -$strViewDumpDatabases = 'Export databází'; -$strViewDumpDB = 'Export databáze'; $strViewDump = 'Export tabulky'; +$strViewDumpDB = 'Export databáze'; +$strViewDumpDatabases = 'Export databází'; -$strWebServerUploadDirectoryError = 'Adresář určený pro upload souborů nemohl být otevřen'; $strWebServerUploadDirectory = 'soubor z adresáře pro upload'; +$strWebServerUploadDirectoryError = 'Adresář určený pro upload souborů nemohl být otevřen'; $strWelcome = 'Vítejte v %s'; $strWestEuropean = 'Západní Evropa'; $strWildcard = 'maska'; @@ -739,10 +751,4 @@ $strYes = 'Ano'; $strZeroRemovesTheLimit = 'Poznámka: Nastavení těchto parametrů na 0 (nulu) odstraní omezení.'; $strZip = '"zazipováno"'; -$strPasswordHashing = 'Password Hashing'; //to translate -$strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate -$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate -$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate ?> diff --git a/lang/czech-windows-1250.inc.php b/lang/czech-windows-1250.inc.php index fd1f15b39..9766c4167 100644 --- a/lang/czech-windows-1250.inc.php +++ b/lang/czech-windows-1250.inc.php @@ -23,18 +23,17 @@ $datefmt = '%a %d. %b %Y, %H:%M'; $timespanfmt = '%s dn, %s hodin, %s minut a %s sekund'; +$strAPrimaryKey = 'V tabulce %s byl vytvoen primrn kl'; $strAbortedClients = 'Peruen'; $strAbsolutePathToDocSqlDir = 'docSQL adres'; -$strAccessDeniedExplanation = 'phpMyAdmin se pokusil pipojit k MySQL serveru, a ten odmtl pipojen. Zkontrolujte jmno serveru, uivatelsk jmno a heslo v souboru config.inc.php a ujistte se, e jsou toton s tmi, kter mte od administrtora MySQL serveru.'; $strAccessDenied = 'Pstup odepen'; +$strAccessDeniedExplanation = 'phpMyAdmin se pokusil pipojit k MySQL serveru, a ten odmtl pipojen. Zkontrolujte jmno serveru, uivatelsk jmno a heslo v souboru config.inc.php a ujistte se, e jsou toton s tmi, kter mte od administrtora MySQL serveru.'; $strAction = 'Akce'; $strAddAutoIncrement = 'Pidat hodnotu AUTO_INCREMENT'; $strAddConstraints = 'Pidat integritn omezen'; $strAddDeleteColumn = 'Pidat nebo odebrat sloupec'; $strAddDeleteRow = 'Pidat nebo odebrat dek'; $strAddDropDatabase = 'Pidat DROP DATABASE'; -$strAddedColumnComment = 'Pidn koment ke sloupci'; -$strAddedColumnRelation = 'Pidna relace pro sloupec'; $strAddFields = 'Pidat %s poloek'; $strAddHeaderComment = 'Pidat vlastn koment do hlaviky (\\n oddluje dky)'; $strAddIfNotExists = 'Pidat IF NOT EXISTS'; @@ -44,24 +43,27 @@ $strAddPrivilegesOnDb = 'P $strAddPrivilegesOnTbl = 'Pidat oprvnn pro tabulku'; $strAddSearchConditions = 'Pidat vyhledvac parametry (st dotazu po pkazu "WHERE"):'; $strAddToIndex = 'Pidat %s sloupc do indexu'; -$strAddUserMessage = 'Uivatel byl pidn.'; $strAddUser = 'Pidat novho uivatele'; +$strAddUserMessage = 'Uivatel byl pidn.'; +$strAddedColumnComment = 'Pidn koment ke sloupci'; +$strAddedColumnRelation = 'Pidna relace pro sloupec'; $strAdministration = 'Sprva'; $strAffectedRows = 'Ovlivnn dky:'; +$strAfter = 'Po %s'; $strAfterInsertBack = 'Nvrat na pedchoz strnku'; $strAfterInsertNewInsert = 'Vloit dal dek'; +$strAfterInsertNext = 'Upravit nsledujc dek'; $strAfterInsertSame = 'Nvrat na tuto strnku'; -$strAfter = 'Po %s'; -$strAllTableSameWidth = 'Pout pro vechny tabulky stejnou ku'; $strAll = 'Vechno'; +$strAllTableSameWidth = 'Pout pro vechny tabulky stejnou ku'; $strAlterOrderBy = 'Zmnit poad tabulky podle'; +$strAnIndex = 'K tabulce %s byl pidn index'; $strAnalyzeTable = 'Analyzovat tabulku'; $strAnd = 'a'; -$strAnIndex = 'K tabulce %s byl pidn index'; -$strAnyHost = 'Jakkoliv pota'; $strAny = 'Jakkoliv'; +$strAnyHost = 'Jakkoliv pota'; $strAnyUser = 'Jakkoliv uivatel'; -$strAPrimaryKey = 'V tabulce %s byl vytvoen primrn kl'; +$strApproximateCount = 'Me bt nepesn, viz FAQ 3.11'; $strArabic = 'Arabtina'; $strArmenian = 'Armntina'; $strAscending = 'Vzestupn'; @@ -75,15 +77,15 @@ $strBack = 'Zp $strBaltic = 'Baltick'; $strBeginCut = 'ZATEK VPISU'; $strBeginRaw = 'ZATEK VPISU'; -$strBinary = ' Binrn '; -$strBinaryDoNotEdit = ' Binrn - neupravujte '; -$strBinaryLog = 'Binrn log'; $strBinLogEventType = 'Typ udlosti'; $strBinLogInfo = 'Informace'; $strBinLogName = 'Jmno logu'; $strBinLogOriginalPosition = 'Pvodn pozice'; $strBinLogPosition = 'Pozice'; $strBinLogServerId = 'ID serveru'; +$strBinary = ' Binrn '; +$strBinaryDoNotEdit = ' Binrn - neupravujte '; +$strBinaryLog = 'Binrn log'; $strBookmarkAllUsers = 'Umonit vem uivatelm pouvat tuto poloku'; $strBookmarkDeleted = 'Poloka byla smazna z oblbench.'; $strBookmarkLabel = 'Nzev'; @@ -91,12 +93,13 @@ $strBookmarkOptions = 'Nastaven $strBookmarkQuery = 'Oblben SQL dotaz'; $strBookmarkThis = 'Pidat tento SQL dotaz do oblbench'; $strBookmarkView = 'Jen zobrazit'; -$strBrowseForeignValues = 'Projt hodnoty cizch kl'; $strBrowse = 'Projt'; +$strBrowseForeignValues = 'Projt hodnoty cizch kl'; $strBulgarian = 'Bulhartina'; $strBzError = 'phpMyAdminovi se nepodailo zkomprimovat vpis, protoe rozen pro kompresi bz2 je v tto verzi PHP chybn. Doporuujeme tuto kompresi vypnout (nastavit$cfg[\'BZipDump\']
v nastavench phpMyAdmina naFALSE
). Pokud chcete pouvat kompresi bz2, mli byste nainstalovat novj verzi PHP. Vce informac o tomto problmu je u popisu chyby %s.'; $strBzip = '"zabzipovno"'; +$strCSVOptions = 'Nastaven CSV exportu'; $strCalendar = 'Kalend'; $strCannotLogin = 'Nepodailo se pihlen k MySQL serveru'; $strCantLoad = 'nelze nahrt rozen %s,
zkontrolujte prosm nastaven PHP'; @@ -108,23 +111,23 @@ $strCarriage = 'N $strCaseInsensitive = 'nerozliovat velk a mal psmena'; $strCaseSensitive = 'rozliovat velk a mal psmena'; $strCentralEuropean = 'Stedn Evropa'; +$strChange = 'Zmnit'; +$strChangeCopyMode = 'Vytvoit novho uivatele se stejnmi oprvnnmi a ...'; $strChangeCopyModeCopy = '... zachovat pvodnho uivatele.'; $strChangeCopyModeDeleteAndReload = ' ... smazat uivatele a pot znovu nast oprvnn.'; $strChangeCopyModeJustDelete = ' ... smazat pvodnho uivatele ze vech tabulek.'; $strChangeCopyModeRevoke = ' ... odebrat vechna oprvnn pvodnmu uivateli a pot ho smazat.'; -$strChangeCopyMode = 'Vytvoit novho uivatele se stejnmi oprvnnmi a ...'; $strChangeCopyUser = 'Zmnit informace o uivateli / Koprovat uivatele'; $strChangeDisplay = 'Zvolte kter sloupce zobrazit'; $strChangePassword = 'Zmnit heslo'; -$strChange = 'Zmnit'; -$strCharsetOfFile = 'Znakov sada souboru:'; -$strCharsetsAndCollations = 'Znakov sady a porovnvn'; -$strCharsets = 'Znakov sady'; $strCharset = 'Znakov sada'; +$strCharsetOfFile = 'Znakov sada souboru:'; +$strCharsets = 'Znakov sady'; +$strCharsetsAndCollations = 'Znakov sady a porovnvn'; $strCheckAll = 'Zakrtnout ve'; $strCheckOverhead = 'Zakrtnout neoptimln'; -$strCheckPrivsLong = 'Zkontrolovat oprvnn pro databzi "%s".'; $strCheckPrivs = 'Zkontrolovat oprvnn'; +$strCheckPrivsLong = 'Zkontrolovat oprvnn pro databzi "%s".'; $strCheckTable = 'Zkontrolovat tabulku'; $strChoosePage = 'Zvolte strnku, kterou chcete zmnit'; $strColComFeat = 'Zobrazuji komente sloupc'; @@ -132,8 +135,9 @@ $strCollation = 'Porovn $strColumnNames = 'Nzvy sloupc'; $strColumnPrivileges = 'Oprvnn pro jednotliv sloupce'; $strCommand = 'Pkaz'; -$strCommentsForTable = 'KOMENTE PRO TABULKU'; $strComments = 'Komente'; +$strCommentsForTable = 'KOMENTE PRO TABULKU'; +$strCompatibleHashing = 'Kompatibiln s MySQL 4.0'; $strCompleteInserts = 'pln inserty'; $strCompression = 'Komprese'; $strConfigFileError = 'phpMyAdmin nemohl nast konfiguran soubor!
Tato chyba me nastat pokud v nm PHP najde chybu nebo neme tento soubor najt.
Po kliknut na nsledujc odkaz se PHP pokus pmo interpretovat tento soubor a zobraz informace o chyb, ke kter dolo. Pak opravte tuto chybu (nejastji se jedn o chybjc stednk).
Pokud zskte przdnou strnku, vechno je v podku.'; @@ -148,40 +152,24 @@ $strCopyTable = 'Kop $strCopyTableOK = 'Tabulka %s byla zkoprovna do %s.'; $strCopyTableSameNames = 'Nelze koprovat tabulku na sebe samu!'; $strCouldNotKill = 'phpMyAdminovi se nepodailo ukonit vlkno %s. Pravdpodobn jeho bh ji skonil.'; -$strCreateIndexTopic = 'Vytvoit nov index'; +$strCreate = 'Vytvoit'; $strCreateIndex = 'Vytvoit index na %s sloupcch'; +$strCreateIndexTopic = 'Vytvoit nov index'; $strCreateNewDatabase = 'Vytvoit novou databzi'; $strCreateNewTable = 'Vytvoit novou tabulku v databzi %s'; $strCreatePage = 'Vytvoit novou strnku'; $strCreatePdfFeat = 'Vytven PDF'; -$strCreate = 'Vytvoit'; $strCreationDates = 'Datum vytvoen, posledn zmny a kontroly'; $strCriteria = 'Podmnka'; $strCroatian = 'Chorvattina'; -$strCSVOptions = 'Nastaven CSV exportu'; $strCyrillic = 'Cyrilika'; $strCzech = 'etina'; $strCzechSlovak = 'etina/Sloventina'; -$strDanish = 'Dntina'; -$strDatabase = 'Databze'; -$strDatabaseEmpty = 'Jmno databze je przdn!'; -$strDatabaseExportOptions = 'Nastaven exportu databz'; -$strDatabaseHasBeenDropped = 'Databze %s byla zruena.'; -$strDatabaseNoTable = 'Tato databze neobsahuje dn tabulky!'; -$strDatabases = 'Databze'; -$strDatabasesDropped = '%s databze byla spn zruena.'; -$strDatabasesStatsDisable = 'Skrt podrobnosti'; -$strDatabasesStatsEnable = 'Zobrazit podrobnosti'; -$strDatabasesStatsHeavyTraffic = 'Poznmka: Zobrazen podrobnost o databzch me zpsobit znan zven provozu mezi webserverem a MySQL serverem.'; -$strDatabasesStats = 'Statistiky databz'; -$strData = 'Data'; -$strDataDict = 'Datov slovnk'; -$strDataOnly = ' Jen data'; $strDBComment = 'Koment k databzi: '; $strDBCopy = 'Zkoprovat databzi na'; -$strDBGContextID = 'Kontext ID'; $strDBGContext = 'Kontext'; +$strDBGContextID = 'Kontext ID'; $strDBGHits = 'Zsah'; $strDBGLine = 'dka'; $strDBGMaxTimeMs = 'Min. as, ms'; @@ -189,50 +177,65 @@ $strDBGMinTimeMs = 'Max. $strDBGModule = 'Modul'; $strDBGTimePerHitMs = 'as/Zsah, ms'; $strDBGTotalTimeMs = 'Celkov as, ms'; -$strDbPrivileges = 'Oprvnn pro jednotliv databze'; $strDBRename = 'Pejmenovat databzi na'; +$strDanish = 'Dntina'; +$strData = 'Data'; +$strDataDict = 'Datov slovnk'; +$strDataOnly = ' Jen data'; +$strDatabase = 'Databze'; +$strDatabaseEmpty = 'Jmno databze je przdn!'; +$strDatabaseExportOptions = 'Nastaven exportu databz'; +$strDatabaseHasBeenDropped = 'Databze %s byla zruena.'; +$strDatabaseNoTable = 'Tato databze neobsahuje dn tabulky!'; +$strDatabases = 'Databze'; +$strDatabasesDropped = '%s databze byla spn zruena.'; +$strDatabasesStats = 'Statistiky databz'; +$strDatabasesStatsDisable = 'Skrt podrobnosti'; +$strDatabasesStatsEnable = 'Zobrazit podrobnosti'; +$strDatabasesStatsHeavyTraffic = 'Poznmka: Zobrazen podrobnost o databzch me zpsobit znan zven provozu mezi webserverem a MySQL serverem.'; +$strDbPrivileges = 'Oprvnn pro jednotliv databze'; $strDbSpecific = 'zvisl na databzi'; -$strDefaultValueHelp = 'Vchoz hodnotu zadejte jen jednu hodnotu bez uvozovek a escapovn znak, napklad: a'; $strDefault = 'Vchoz'; +$strDefaultValueHelp = 'Vchoz hodnotu zadejte jen jednu hodnotu bez uvozovek a escapovn znak, napklad: a'; $strDefragment = 'Defragmentovat tabulku'; +$strDelOld = 'Aktuln strnka se odkazuje na tabulky, kter ji neexistuj. Chcete odstranit tyto odkazy?'; $strDelayedInserts = 'Pouvat zpodn inserty'; -$strDeleteAndFlushDescr = 'Toto je nejist een, ale natn oprvnn me trvat dlouho.'; +$strDelete = 'Smazat'; $strDeleteAndFlush = 'Odstranit uivatele a znovunast oprvnn.'; +$strDeleteAndFlushDescr = 'Toto je nejist een, ale natn oprvnn me trvat dlouho.'; $strDeleted = 'dek byl smazn'; $strDeletedRows = 'Smazan dky:'; -$strDelete = 'Smazat'; $strDeleting = 'Odstrauji %s'; -$strDelOld = 'Aktuln strnka se odkazuje na tabulky, kter ji neexistuj. Chcete odstranit tyto odkazy?'; $strDescending = 'Sestupn'; $strDescription = 'Popis'; $strDictionary = 'slovnk'; -$strDisabled = 'Vypnuto'; $strDisableForeignChecks = 'Vypnout kontrolu cizch kl'; +$strDisabled = 'Vypnuto'; $strDisplayFeat = 'Zobrazen funkc'; $strDisplayOrder = 'Seadit podle:'; $strDisplayPDF = 'Zobrazit jako schma v PDF'; $strDoAQuery = 'Provst "dotaz podle pkladu" (zstupn znak: "%")'; -$strDocu = 'Dokumentace'; $strDoYouReally = 'Opravdu si pejete vykonat pkaz'; -$strDropDatabaseStrongWarning = 'Chystte se ZRUIT celou databzi!'; +$strDocu = 'Dokumentace'; $strDrop = 'Odstranit'; +$strDropDatabaseStrongWarning = 'Chystte se ZRUIT celou databzi!'; $strDropSelectedDatabases = 'Zruit vybranou databzi'; $strDropUsersDb = 'Odstranit databze se stejnmi jmny jako uivatel.'; -$strDumpingData = 'Vypisuji data pro tabulku'; $strDumpSaved = 'Vpis byl uloen do souboru %s.'; $strDumpXRows = 'Vypsat %s dk od %s.'; +$strDumpingData = 'Vypisuji data pro tabulku'; $strDynamic = 'dynamick'; +$strEdit = 'Upravit'; $strEditPDFPages = 'Upravit PDF strnky'; $strEditPrivileges = 'Upravit oprvnn'; -$strEdit = 'Upravit'; $strEffective = 'Efektivn'; -$strEmptyResultSet = 'MySQL vrtil przdn vsledek (tj. nulov poet dk).'; $strEmpty = 'Vyprzdnit'; +$strEmptyResultSet = 'MySQL vrtil przdn vsledek (tj. nulov poet dk).'; $strEnabled = 'Zapnuto'; $strEncloseInTransaction = 'Uzavt pkazy v transakci'; -$strEndCut = 'KONEC VPISU'; $strEnd = 'Konec'; +$strEndCut = 'KONEC VPISU'; $strEndRaw = 'KONEC VPISU'; $strEnglish = 'Anglicky'; $strEnglishPrivileges = 'Poznmka: nzvy oprvnn v MySQL jsou uvdny anglicky'; @@ -248,29 +251,29 @@ $strExtendedInserts = 'Roz $strExtra = 'Extra'; $strFailedAttempts = 'Nepovedench pokus'; +$strField = 'Sloupec'; $strFieldHasBeenDropped = 'Sloupec %s byl odstrann'; +$strFields = 'Sloupce'; $strFieldsEmpty = ' Nebyl zadn poet sloupc! '; $strFieldsEnclosedBy = 'Nzvy sloupc uzaven do'; $strFieldsEscapedBy = 'Nzvy sloupc escapovny'; -$strField = 'Sloupec'; -$strFields = 'Sloupce'; $strFieldsTerminatedBy = 'Sloupce oddlen'; $strFileAlreadyExists = 'Soubor %s ji na serveru existuje, zmte jmno souboru, nebo zvolte pepsn souboru.'; $strFileCouldNotBeRead = 'Soubor nelze pest'; +$strFileNameTemplate = 'Vzor pro jmno souboru'; $strFileNameTemplateHelp = 'Pouijte __DB__ pro jmno databze, __TABLE__ pro jmno tabulky a jakkoliv parametry pro %sfunkci strftime%s pro vloen data. Ppona souboru bude automaticky pidna podle typu. Jakkoliv jin text bude zachovn.'; $strFileNameTemplateRemember = 'zapamatovat si hodnotu'; -$strFileNameTemplate = 'Vzor pro jmno souboru'; $strFixed = 'pevn'; $strFlushPrivilegesNote = 'Poznmka: phpMyAdmin zskv oprvnn pmo z tabulek MySQL. Obsah tchto tabulek se me liit od oprvnn, kter server prv pouv, pokud byly tyto tabulky upravovny. V tomto ppad je vhodn provst %sznovunaten oprvnn%s ped pokraovnm.'; $strFlushTable = 'Vyprzdnit vyrovnvac pam pro tabulku ("FLUSH")'; -$strFormat = 'Formt'; $strFormEmpty = 'Chybjc hodnota ve formuli!'; +$strFormat = 'Formt'; $strFullText = 'Cel texty'; $strFunction = 'Funkce'; $strGenBy = 'Vygeneroval'; -$strGeneralRelationFeat = 'Obecn funkce relac'; $strGenTime = 'Vygenerovno'; +$strGeneralRelationFeat = 'Obecn funkce relac'; $strGeorgian = 'Gruzntina'; $strGerman = 'Nmecky'; $strGlobal = 'globln'; @@ -288,8 +291,8 @@ $strHebrew = 'Hebrej $strHexForBinary = 'Binarn pole vypisovat estnctkov'; $strHome = 'Hlavn strana'; $strHomepageOfficial = 'Oficiln strnka phpMyAdmina'; -$strHostEmpty = 'Jmno potae je przdn!'; $strHost = 'Pota'; +$strHostEmpty = 'Jmno potae je przdn!'; $strHungarian = 'Maartina'; $strIcelandic = 'Islandtina'; @@ -302,44 +305,48 @@ $strIgnoringFile = 'Ignoruji soubor %s'; $strImportDocSQL = 'Importovat soubory docSQL'; $strImportFiles = 'Importovat soubory'; $strImportFinished = 'Import ukonen'; -$strIndexes = 'Indexy'; -$strIndexHasBeenDropped = 'Index %s byl odstrann'; +$strInUse = 'prv se pouv'; $strIndex = 'Index'; +$strIndexHasBeenDropped = 'Index %s byl odstrann'; $strIndexName = 'Jmno indexu :'; $strIndexType = 'Typ indexu :'; +$strIndexWarningMultiple = 'Pro sloupec `%s` je vytvoeno vce index'; +$strIndexWarningPrimary = 'Sloupec `%s` by neml bt zrov obsaen v PRIMARY a INDEX kli'; +$strIndexWarningTable = 'Problmy s indexy v tabulce `%s`'; +$strIndexWarningUnique = 'Sloupec `%s` by neml bt zrov obsaen v PRIMARY a UNIQUE kli'; +$strIndexes = 'Indexy'; $strInnodbStat = 'Stav InnoDB'; $strInsecureMySQL = 'Mte standardn nastaven hesla uivatele root v MySQL. Doporuujeme zmnit toto nastaven a tm podstatn zvit bezpenost Vaeho serveru.'; +$strInsert = 'Vloit'; $strInsertAsNewRow = 'Vloit jako nov dek'; $strInsertBookmarkTitle = 'Prosm zadejte nzev oblben poloky'; -$strInsertedRowId = 'Id vloenho dku:'; -$strInsertedRows = 'Vloeno dk:'; $strInsertNewRow = 'Vloit nov dek'; $strInsertTextfiles = 'Vloit textov soubory do tabulky'; -$strInsert = 'Vloit'; +$strInsertedRowId = 'Id vloenho dku:'; +$strInsertedRows = 'Vloeno dk:'; $strInstructions = 'Instrukce'; $strInternalNotNecessary = '* Intern relace nen potebn, pokud ji relace existuje v InnoDB.'; $strInternalRelations = 'Intern relace'; -$strInUse = 'prv se pouv'; $strJapanese = 'Japontina'; $strJumpToDB = 'Na databzi "%s".'; -$strJustDeleteDescr = 'Odstrann uivatel stle budou mt pistup na server dokud nebudou znovunatena oprvnn.'; $strJustDelete = 'Jen odstranit uivatele z tabulek s oprvnnmi.'; +$strJustDeleteDescr = 'Odstrann uivatel stle budou mt pistup na server dokud nebudou znovunatena oprvnn.'; $strKeepPass = 'Nemnit heslo'; $strKeyname = 'Klov nzev'; $strKill = 'Ukonit'; $strKorean = 'Korejtina'; +$strLaTeX = 'LaTeX'; +$strLaTeXOptions = 'Nastaven exportu do LaTeXu'; $strLandscape = 'Na ku'; $strLatexCaption = 'Titulek tabulky'; $strLatexContent = 'Obsah tabulky __TABLE__'; -$strLatexContinuedCaption = 'Titulek pokraovn tabulky'; $strLatexContinued = '(pokraovn)'; +$strLatexContinuedCaption = 'Titulek pokraovn tabulky'; $strLatexIncludeCaption = 'Pout titulek tabulky'; $strLatexLabel = 'Nvst'; -$strLaTeX = 'LaTeX'; -$strLaTeXOptions = 'Nastaven exportu do LaTeXu'; $strLatexStructure = 'Struktura tabulky __TABLE__'; $strLatvian = 'Lotytina'; $strLengthSet = 'Dlka/Mnoina*'; @@ -353,31 +360,33 @@ $strLoadExplanation = 'Automaticky jsou zvoleny nejvhodn $strLoadMethod = 'Parametry pro pkaz LOAD'; $strLocalhost = 'Lokln'; $strLocationTextfile = 'textov soubor'; -$strLoginInformation = 'Pihlaovn'; -$strLogin = 'Pihlen'; -$strLogout = 'Odhlsit se'; $strLogPassword = 'Heslo:'; $strLogServer = 'Server'; $strLogUsername = 'Jmno:'; +$strLogin = 'Pihlen'; +$strLoginInformation = 'Pihlaovn'; +$strLogout = 'Odhlsit se'; -$strMaximumSize = 'Maximln velikost: %s%s'; +$strMIMETypesForTable = 'MIME TYPY PRO TABULKU'; +$strMIME_MIMEtype = 'MIME typ'; $strMIME_available_mime = 'Dostupn MIME typy'; $strMIME_available_transform = 'Dostupn transformace'; $strMIME_description = 'Popis'; -$strMIME_MIMEtype = 'MIME typ'; $strMIME_nodescription = 'Pro tuto transformaci nen dostupn dn popis.
Zeptejte se autora co %s dl.'; -$strMIME_transformation_note = 'Pro seznam dostupnch parametr transformac a jejich MIME typ kliknte na %spopisy transformac%s'; -$strMIME_transformation_options_note = 'Zadejte parametry transformac v nsledujcm tvaru: \'a\',\'b\',\'c\'...
Pokud potebujete pout zptn lomtko ("\") nebo jednoduch uvozovky ("\'") mezi tmito hodnotami, vlote ped n zptn lomtko (napklad \'\\\\xyz\' nebo \'a\\\'b\').'; -$strMIME_transformation_options = 'Parametry transformace'; $strMIME_transformation = 'Transformace pi prohlen'; -$strMIMETypesForTable = 'MIME TYPY PRO TABULKU'; +$strMIME_transformation_note = 'Pro seznam dostupnch parametr transformac a jejich MIME typ kliknte na %spopisy transformac%s'; +$strMIME_transformation_options = 'Parametry transformace'; +$strMIME_transformation_options_note = 'Zadejte parametry transformac v nsledujcm tvaru: \'a\',\'b\',\'c\'...
Pokud potebujete pout zptn lomtko ("\") nebo jednoduch uvozovky ("\'") mezi tmito hodnotami, vlote ped n zptn lomtko (napklad \'\\\\xyz\' nebo \'a\\\'b\').'; $strMIME_without = 'MIME typy zobrazen kurzvou nemaj vlastn transforman funkci'; +$strMaximumSize = 'Maximln velikost: %s%s'; +$strMbExtensionMissing = 'Rozen mbstring pro PHP nebylo nalezeno a zd se, e povte vcebajtovou znakovou sadu. Bez rozen mbstring neum phpMyAdmin sprvn rozdlovat etzce a proto to me mt neekan nsledky.'; +$strMbOverloadWarning = 'V nastaven PHP mte zapnuto mbstring.func_overload. Toto nastaven nen kompatibiln s phpMyAdminem a me zpsobit pokozen dat!'; $strModifications = 'Zmny byly uloeny'; -$strModifyIndexTopic = 'Upravit index'; $strModify = 'pravy'; +$strModifyIndexTopic = 'Upravit index'; $strMoreStatusVars = 'Dal informace o stavu'; -$strMoveTableOK = 'Tabulka %s byla pesunuta do %s.'; $strMoveTable = 'Pesunout tabulku do (databze.tabulka):'; +$strMoveTableOK = 'Tabulka %s byla pesunuta do %s.'; $strMoveTableSameNames = 'Nelze pesunout tabulku na sebe samu!'; $strMultilingual = 'mnohojazyn'; $strMustSelectFile = 'Zvolte soubor, kter chcete vloit.'; @@ -393,17 +402,17 @@ $strMySQLShowVars = 'Uk $strName = 'Nzev'; $strNeedPrimaryKey = 'Pro tuto tabulku byste mli definovat primrn kl.'; $strNext = 'Dal'; -$strNoDatabasesSelected = 'Nebyla vybrna dn databze.'; +$strNo = 'Ne'; +$strNoActivity = 'Byli jste pli dlouho neaktivn (dle ne %s sekund), prosm pihlate se znovu'; $strNoDatabases = 'dn databze'; +$strNoDatabasesSelected = 'Nebyla vybrna dn databze.'; $strNoDescription = 'dn popisek'; $strNoDropDatabases = 'Pkaz "DROP DATABASE" je vypnut.'; $strNoExplain = 'Bez vysvtlen (EXPLAIN) SQL'; $strNoFrames = 'phpMyAdmin se lpe pouv v prohlei podporujcm rmy ("FRAME").'; -$strNoIndexPartsDefined = 'dn st indexu nebyla definovna!'; $strNoIndex = 'dn index nebyl definovn!'; +$strNoIndexPartsDefined = 'dn st indexu nebyla definovna!'; $strNoModification = 'dn zmna'; -$strNo = 'Ne'; -$strNone = 'dn'; $strNoOptions = 'Tento formt nem dn nastaven'; $strNoPassword = 'dn heslo'; $strNoPermission = 'Web server nem oprvnn uloit vpis do souboru %s.'; @@ -415,19 +424,20 @@ $strNoRowsSelected = 'Nebyla vybr $strNoSpace = 'Nedostatek msta pro uloen souboru %s.'; $strNoTablesFound = 'V databzi nebyla nalezena dn tabulka.'; $strNoThemeSupport = 'Nen podporovna zmna tmatu, zkontrolujte nastaven a tmata v adresi %s.'; +$strNoUsersFound = 'dn uivatel nenalezen.'; +$strNoValidateSQL = 'Bez kontroly SQL'; +$strNone = 'dn'; $strNotNumber = 'Nebylo zadno slo!'; $strNotOK = 'nen v podku'; $strNotSet = '%s tabulka nenalezena nebo nen nastavena v %s'; $strNotValidNumber = ' nen platn slo dku!'; -$strNoUsersFound = 'dn uivatel nenalezen.'; -$strNoValidateSQL = 'Bez kontroly SQL'; $strNull = 'Nulov'; $strNumSearchResultsInTable = '%s odpovdajc(ch) zznam() v tabulce %s'; $strNumSearchResultsTotal = 'Celkem: %s odpovdajc(ch) zznam()'; $strNumTables = 'Tabulek'; -$strOftenQuotation = 'asto uvozujc znaky. Voliteln znamen, e pouze poloky u kterch je to nutn (obvykle typu CHAR a VARCHAR) jsou uzaveny do uzavracch znak.'; $strOK = 'OK'; +$strOftenQuotation = 'asto uvozujc znaky. Voliteln znamen, e pouze poloky u kterch je to nutn (obvykle typu CHAR a VARCHAR) jsou uzaveny do uzavracch znak.'; $strOperations = 'pravy'; $strOperator = 'Opertor'; $strOptimizeTable = 'Optimalizovat tabulku'; @@ -437,12 +447,15 @@ $strOr = 'nebo'; $strOverhead = 'Navc'; $strOverwriteExisting = 'Pepsat existujc soubor(y)'; +$strPHP40203 = 'Pouvte PHP 4.2.3, kter m zvanou chybu pi prci s vcebajtovmi znaky (mbstring), jedn se o chybu PHP slo 19404. Nedoporuujeme pouvat tuto verzi PHP s phpMyAdminem.'; +$strPHPVersion = 'Verze PHP'; $strPageNumber = 'Strana slo:'; $strPaperSize = 'Velikost strnky'; $strPartialText = 'Zkrcen texty'; +$strPassword = 'Heslo'; $strPasswordChanged = 'Heslo pro %s bylo spn zmnno.'; $strPasswordEmpty = 'Heslo je przdn!'; -$strPassword = 'Heslo'; +$strPasswordHashing = 'Haovac funkce pro heslo'; $strPasswordNotSame = 'Hesla nejsou stejn!'; $strPdfDbSchema = 'Schma databze "%s" - Strana %s'; $strPdfInvalidTblName = 'Tabulka "%s" neexistuje!'; @@ -452,8 +465,6 @@ $strPerMinute = 'za minutu'; $strPerSecond = 'za sekundu'; $strPersian = 'Pertina'; $strPhoneBook = 'adres'; -$strPHP40203 = 'Pouvte PHP 4.2.3, kter m zvanou chybu pi prci s vcebajtovmi znaky (mbstring), jedn se o chybu PHP slo 19404. Nedoporuujeme pouvat tuto verzi PHP s phpMyAdminem.'; -$strPHPVersion = 'Verze PHP'; $strPhp = 'Zobrazit PHP kd'; $strPmaDocumentation = 'Dokumentace phpMyAdmina'; $strPmaUriError = 'Parametr $cfg[\'PmaAbsoluteUri\'] MUS bt nastaven v konfiguranm souboru!'; @@ -461,13 +472,13 @@ $strPolish = 'Pol $strPortrait = 'Na vku'; $strPos1 = 'Zatek'; $strPrevious = 'Pedchoz'; +$strPrimary = 'Primrn'; $strPrimaryKeyHasBeenDropped = 'Primrn kl byl odstrann'; $strPrimaryKeyName = 'Jmno primrnho kle mus bt "PRIMARY"!'; $strPrimaryKeyWarning = '("PRIMARY" mus bt jmno pouze primrnho kle!)'; -$strPrimary = 'Primrn'; -$strPrintViewFull = 'Nhled k vytitn (s kompletnmi texty)'; -$strPrintView = 'Nhled k vytitn'; $strPrint = 'Vytisknout'; +$strPrintView = 'Nhled k vytitn'; +$strPrintViewFull = 'Nhled k vytitn (s kompletnmi texty)'; $strPrivDescAllPrivileges = 'Vechna oprvnn krom GRANT.'; $strPrivDescAlter = 'Umouje mnit strukturu existujcch tabulek.'; $strPrivDescCreateDb = 'Umouje vytvet nov databze a tabulky.'; @@ -502,8 +513,8 @@ $strPrivilegesReloaded = 'Opr $strProcesslist = 'Seznam proces'; $strPutColNames = 'Pidat jmna sloupc na prvn dek'; -$strQBEDel = 'smazat'; $strQBE = 'Dotaz'; +$strQBEDel = 'smazat'; $strQBEIns = 'pidat'; $strQueryFrame = 'SQL okno'; $strQueryOnDb = 'SQL dotaz na databzi %s:'; @@ -513,51 +524,63 @@ $strQueryTime = 'Dotaz zabral %01.4f sekund'; $strQueryType = 'Typ dotazu'; $strQueryWindowLock = 'Nepepisovat tento dotaz z hlavnho okna'; +$strReType = 'Heslo znovu'; $strReceived = 'Pijato'; $strRecords = 'Zznam'; $strReferentialIntegrity = 'Zkontrolovat integritu odkaz:'; $strRefresh = 'Obnovit'; -$strRelationalSchema = 'Relan schma'; $strRelationNotWorking = 'Nkter z rozench funkc phpMyAdmina nelze pouvat. %sZde%s zjistte pro.'; -$strRelationsForTable = 'RELACE PRO TABULKU'; -$strRelations = 'Relace'; $strRelationView = 'Zobrazit relace'; +$strRelationalSchema = 'Relan schma'; +$strRelations = 'Relace'; +$strRelationsForTable = 'RELACE PRO TABULKU'; $strReloadFailed = 'Znovunaten MySQL selhalo.'; -$strReloadingThePrivileges = 'Znovunatm oprvnn'; $strReloadMySQL = 'Znovunaten MySQL'; +$strReloadingThePrivileges = 'Znovunatm oprvnn'; $strRemoveSelectedUsers = 'Odstranit vybran uivatele'; $strRenameDatabaseOK = 'Databze %s byla pejmenovna na %s'; -$strRenameTableOK = 'Tabulka %s byla pejmenovna na %s'; $strRenameTable = 'Pejmenovat tabulku na'; +$strRenameTableOK = 'Tabulka %s byla pejmenovna na %s'; $strRepairTable = 'Opravit tabulku'; -$strReplaceNULLBy = 'Nahradit NULL hodnoty'; $strReplace = 'Pepsat'; +$strReplaceNULLBy = 'Nahradit NULL hodnoty'; $strReplaceTable = 'Pepsat data tabulky souborem'; $strReset = 'Pvodn'; $strResourceLimits = 'Omezen zdroj'; -$strReType = 'Heslo znovu'; -$strRevokeAndDeleteDescr = 'Uivatel budou mt oprvnn "USAGE" (pouvn) dokud nebudou znovunatena oprvnn.'; -$strRevokeAndDelete = 'Odebrat uivatelm veker oprvnn a pot je odstranit z tabulek.'; -$strRevokeMessage = 'Byla zruena prva pro %s'; $strRevoke = 'Zruit'; +$strRevokeAndDelete = 'Odebrat uivatelm veker oprvnn a pot je odstranit z tabulek.'; +$strRevokeAndDeleteDescr = 'Uivatel budou mt oprvnn "USAGE" (pouvn) dokud nebudou znovunatena oprvnn.'; +$strRevokeMessage = 'Byla zruena prva pro %s'; $strRomanian = 'Rumuntina'; $strRowLength = 'Dlka dku'; -$strRowsFrom = 'dk zanajc od'; $strRowSize = ' Velikost dku '; +$strRows = 'dk'; +$strRowsFrom = 'dk zanajc od'; $strRowsModeFlippedHorizontal = 'vodorovnm (otoen hlaviky)'; $strRowsModeHorizontal = 'vodorovnm'; $strRowsModeOptions = 've %s reimu a opakovat hlaviky po %s dcch.'; $strRowsModeVertical = 'svislm'; -$strRows = 'dk'; $strRowsStatistic = 'Statistika dk'; -$strRunning = 'na %s'; $strRunQuery = 'Provst dotaz'; $strRunSQLQuery = 'Spustit SQL dotaz(y) na databzi %s'; +$strRunning = 'na %s'; $strRussian = 'Rutina'; -$strSaveOnServer = 'Uloit na serveru v adresi %s'; +$strSQL = 'SQL'; +$strSQLExportCompatibility = 'Kompatibilita SQL exportu'; +$strSQLExportType = 'Typ vytvoench dotaz'; +$strSQLOptions = 'Nastaven SQL exportu'; +$strSQLParserBugMessage = 'Je mon, e jste nali chybu v SQL parseru. Prosm prozkoumejte podrobn SQL dotaz, pedevm jestli jsou sprvn uvozovky a jestli nejsou prohzen. Dal monost selhn je pokud nahrvte soubor s binrnmi daty nezapsanmi v uvozovkch. Mete tak vyzkouet pkazovou dku MySQL. Ne uveden vstup z MySQL serveru (pokud je njak) Vm tak me pomoci pi zkoumn problmu. Pokud stle mte problmy nebo pokud SQL parser ohls chybu u dotazu, kter na pkazov dce funguje, prosm pokuste se zredukovat dotaz na co nejmen, ve kterm se problm jet vyskytne, a ohlaste chybu na strnkch phpMyAdmina spolu se sekc VPIS uvedenou ne:'; +$strSQLParserUserError = 'Pravdpodobn mte v SQL dotazu chybu. Ne uveden vstup MySQL serveru (pokud je njak) Vm tak me pomoci pi zkoumn problmu'; +$strSQLQuery = 'SQL-dotaz'; +$strSQLResult = 'Vsledek SQL dotazu'; +$strSQPBugInvalidIdentifer = 'Chybn identifiktor'; +$strSQPBugUnclosedQuote = 'Neuzaven uvozovky'; +$strSQPBugUnknownPunctuation = 'Neznm interpunkn znamnko'; $strSave = 'Ulo'; +$strSaveOnServer = 'Uloit na serveru v adresi %s'; $strScaleFactorSmall = 'Mtko je pli mal, aby se schma velo na jednu strnku'; +$strSearch = 'Vyhledvn'; $strSearchFormTitle = 'Vyhledvn v databzi'; $strSearchInTables = 'V tabulkch:'; $strSearchNeedle = 'Slova nebo hodnoty, kter chcete vyhledat (zstupn znak: "%"):'; @@ -567,7 +590,6 @@ $strSearchOption3 = 'p $strSearchOption4 = 'jako regulrn vraz'; $strSearchResultsFor = 'Vsledky vyhledvn pro "%s" %s:'; $strSearchType = 'Najt:'; -$strSearch = 'Vyhledvn'; $strSecretRequired = 'Nastavte kl pro ifrovn cookies (blowfish_secret) v konfiguranm souboru (config.inc.php).'; $strSelectADb = 'Prosm vyberte databzi'; $strSelectAll = 'Vybrat ve'; @@ -577,9 +599,9 @@ $strSelectNumRows = 'v dotazu'; $strSelectTables = 'Vybrat tabulky'; $strSend = 'Do souboru'; $strSent = 'Odeslno'; +$strServer = 'Server'; $strServerChoice = 'Vbr serveru'; $strServerNotResponding = 'Server neodpovd'; -$strServer = 'Server'; $strServerStatus = 'Stav serveru'; $strServerStatusUptime = 'Tento MySQL server b %s. as sputn: %s.'; $strServerTabProcesslist = 'Procesy'; @@ -589,41 +611,31 @@ $strServerVars = 'Prom $strServerVersion = 'Verze MySQL'; $strSessionValue = 'Hodnota sezen'; $strSetEnumVal = 'Pokud je sloupec typu "enum" nebo "set", zadvejte hodnoty v nsledujcm formtu: \'a\',\'b\',\'c\'...
Pokud potebujete zadat zptn lomtko ("\") nebo jednoduch uvozovky ("\'") mezi tmito hodnotami, napite ped n zptn lomtko (pklad: \'\\\\xyz\' nebo \'a\\\'b\').'; +$strShow = 'Zobrazit'; $strShowAll = 'Zobrazit ve'; $strShowColor = 'Barevn ipky'; $strShowDatadictAs = 'Formt datovho slovnku'; $strShowFullQueries = 'Zobrazit cel dotazy'; $strShowGrid = 'Zobrazit mku'; -$strShowingRecords = 'Zobrazeny zznamy'; $strShowPHPInfo = 'Zobrazit informace o PHP'; $strShowTableDimension = 'Rozmry tabulek'; $strShowTables = 'Zobrazit tabulky'; $strShowThisQuery = 'Zobrazit zde tento dotaz znovu'; -$strShow = 'Zobrazit'; +$strShowingRecords = 'Zobrazeny zznamy'; $strSimplifiedChinese = 'Zjednoduen ntina'; $strSingly = '(po jednom)'; $strSize = 'Velikost'; $strSlovak = 'Sloventina'; $strSlovenian = 'Slovintina'; -$strSortByKey = 'Setdit podle kle'; $strSort = 'adit'; +$strSortByKey = 'Setdit podle kle'; $strSpaceUsage = 'Vyuit msta'; $strSpanish = 'panltina'; $strSplitWordsWithSpace = 'Slova jsou oddlena mezerou (" ").'; -$strSQLExportType = 'Typ vytvoench dotaz'; -$strSQLOptions = 'Nastaven SQL exportu'; -$strSQLParserBugMessage = 'Je mon, e jste nali chybu v SQL parseru. Prosm prozkoumejte podrobn SQL dotaz, pedevm jestli jsou sprvn uvozovky a jestli nejsou prohzen. Dal monost selhn je pokud nahrvte soubor s binrnmi daty nezapsanmi v uvozovkch. Mete tak vyzkouet pkazovou dku MySQL. Ne uveden vstup z MySQL serveru (pokud je njak) Vm tak me pomoci pi zkoumn problmu. Pokud stle mte problmy nebo pokud SQL parser ohls chybu u dotazu, kter na pkazov dce funguje, prosm pokuste se zredukovat dotaz na co nejmen, ve kterm se problm jet vyskytne, a ohlaste chybu na strnkch phpMyAdmina spolu se sekc VPIS uvedenou ne:'; -$strSQLParserUserError = 'Pravdpodobn mte v SQL dotazu chybu. Ne uveden vstup MySQL serveru (pokud je njak) Vm tak me pomoci pi zkoumn problmu'; -$strSQLQuery = 'SQL-dotaz'; -$strSQLResult = 'Vsledek SQL dotazu'; -$strSQL = 'SQL'; -$strSQPBugInvalidIdentifer = 'Chybn identifiktor'; -$strSQPBugUnclosedQuote = 'Neuzaven uvozovky'; -$strSQPBugUnknownPunctuation = 'Neznm interpunkn znamnko'; $strStatCheckTime = 'Posledn kontrola'; $strStatCreateTime = 'Vytvoen'; -$strStatement = 'daj'; $strStatUpdateTime = 'Posledn zmna'; +$strStatement = 'daj'; $strStatus = 'Stav'; $strStrucCSV = 'CSV data'; $strStrucData = 'Strukturu a data'; @@ -640,6 +652,7 @@ $strSwedish = ' $strSwitchToDatabase = 'Pepnout na zkoprovanou databzi'; $strSwitchToTable = 'Pepnout na zkoprovanou tabulku'; +$strTable = 'Tabulka'; $strTableComments = 'Koment k tabulce'; $strTableEmpty = 'Jmno tabulky je przdn!'; $strTableHasBeenDropped = 'Tabulka %s byla odstranna'; @@ -648,18 +661,17 @@ $strTableHasBeenFlushed = 'Vyrovn $strTableMaintenance = ' drba tabulky '; $strTableOfContents = 'Obsah'; $strTableOptions = 'Parametry tabulky'; -$strTables = '%s tabulek'; $strTableStructure = 'Struktura tabulky'; -$strTable = 'Tabulka'; $strTableType = 'Typ tabulky'; +$strTables = '%s tabulek'; $strTakeIt = 'zvolit'; $strTblPrivileges = 'Oprvnn pro jednotliv tabulky'; $strTextAreaLength = 'Tento sloupec mon nepjde
(kvli dlce) upravit '; $strThai = 'Thajtina'; $strTheContent = 'Obsah souboru byl vloen'; $strTheContents = 'Obsah souboru pepe obsah zvolen tabulky v tch dcch, kde je stejn primrn nebo uniktn kl.'; -$strTheme = 'Vzhled'; $strTheTerminator = 'Sloupce jsou oddleny tmto znakem.'; +$strTheme = 'Vzhled'; $strThisHost = 'Tento pota'; $strThisNotDirectory = 'Nebyl zadn adres'; $strThreadSuccessfullyKilled = 'Vlkno %s bylo spn zabito.'; @@ -691,14 +703,19 @@ $strUnicode = 'Unicode'; $strUnique = 'Uniktn'; $strUnknown = 'neznm'; $strUnselectAll = 'Odznait ve'; +$strUpdComTab = 'Podvejte se prosm do dokumentace, jak aktualizovat tabulku s informacemi o sloupcch (tabulka column_comments)'; $strUpdatePrivMessage = 'Byla aktualizovna oprvnn pro %s.'; $strUpdateProfileMessage = 'Pstup byl zmnn.'; $strUpdateQuery = 'Aktualizovat dotaz'; -$strUpdComTab = 'Podvejte se prosm do dokumentace, jak aktualizovat tabulku s informacemi o sloupcch (tabulka column_comments)'; $strUpgrade = 'Mli byste aktualizovat %s na verzi %s nebo vy.'; $strUsage = 'Pouv'; $strUseBackquotes = 'Pout zptn uvozovky u jmen tabulek a sloupc'; $strUseHostTable = 'Pout tabulku s potai'; +$strUseTabKey = 'Pouijte klvesu TAB pro pohyb mezi hodnotami nebo CTRL+ipky po pohyb vemi smry.'; +$strUseTables = 'Pout tabulky'; +$strUseTextField = 'Pout textov pole'; +$strUseThisValue = 'Pout tuto hodnotu'; +$strUser = 'Uivatel'; $strUserAlreadyExists = 'Uivatel %s ji existuje!'; $strUserEmpty = 'Jmno uivatele je przdn!'; $strUserName = 'Jmno uivatele'; @@ -706,22 +723,17 @@ $strUserNotFound = 'Zvolen $strUserOverview = 'Pehled uivatel'; $strUsersDeleted = 'Vybran uivatel byli spn odstranni.'; $strUsersHavingAccessToDb = 'Uivatel majc pstup k "%s"'; -$strUser = 'Uivatel'; -$strUseTabKey = 'Pouijte klvesu TAB pro pohyb mezi hodnotami nebo CTRL+ipky po pohyb vemi smry.'; -$strUseTables = 'Pout tabulky'; -$strUseTextField = 'Pout textov pole'; -$strUseThisValue = 'Pout tuto hodnotu'; $strValidateSQL = 'Zkontrolovat SQL'; $strValidatorError = 'SQL validtor nemohl bt inicializovn. Prosm zkontrolujte, jestli mte poadovan rozen PHP, kter jsou uvedena v %sdokumentaci%s.'; $strValue = 'Hodnota'; $strVar = 'Promnn'; -$strViewDumpDatabases = 'Export databz'; -$strViewDumpDB = 'Export databze'; $strViewDump = 'Export tabulky'; +$strViewDumpDB = 'Export databze'; +$strViewDumpDatabases = 'Export databz'; -$strWebServerUploadDirectoryError = 'Adres uren pro upload soubor nemohl bt oteven'; $strWebServerUploadDirectory = 'soubor z adrese pro upload'; +$strWebServerUploadDirectoryError = 'Adres uren pro upload soubor nemohl bt oteven'; $strWelcome = 'Vtejte v %s'; $strWestEuropean = 'Zpadn Evropa'; $strWildcard = 'maska'; @@ -738,10 +750,4 @@ $strYes = 'Ano'; $strZeroRemovesTheLimit = 'Poznmka: Nastaven tchto parametr na 0 (nulu) odstran omezen.'; $strZip = '"zazipovno"'; -$strPasswordHashing = 'Password Hashing'; //to translate -$strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate -$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate -$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate ?> diff --git a/lang/danish-iso-8859-1.inc.php b/lang/danish-iso-8859-1.inc.php index 7bbfb5de7..b2f2d11d1 100644 --- a/lang/danish-iso-8859-1.inc.php +++ b/lang/danish-iso-8859-1.inc.php @@ -1,5 +1,5 @@ Dette kan ske hvis php finder en parser-fejl i den, eller php kan ikke finde filen.
Kald konfigurationsfilen direkte fra nedenstende link og ls de(n) phpfejlmeddelse(r) du fr. I de fleste tilflde mangler der et anfrselstegn eller et semikolon et sted.
Hvis du fr en blank side, er alt i orden.'; @@ -130,6 +140,7 @@ $strConnections = 'Forbindelser'; $strConstraintsForDumped = 'Begrnsninger for dumpede tabeller'; $strConstraintsForTable = 'Begrnsninger for tabel'; $strCookiesRequired = 'Herefter skal cookies vre sat til.'; +$strCopyDatabaseOK = 'Database %s er blevet kopieret til %s'; $strCopyTable = 'Kopier tabel til (database.tabel):'; $strCopyTableOK = 'Tabellen %s er nu kopieret til: %s.'; $strCopyTableSameNames = 'Kan ikke kopiere tabellen til den samme!'; @@ -174,6 +185,7 @@ $strDatabasesStats = 'Databasestatistik'; $strDatabasesStatsDisable = 'Sl Statistikker fra'; $strDatabasesStatsEnable = 'Sl Statistikker til'; $strDatabasesStatsHeavyTraffic = 'Bemrk: At sl databasestatistikkerne til her kan forrsage tung trafik mellem webserveren og MySQL-serveren.'; +$strDBCopy = 'Kopir database til'; $strDbPrivileges = 'Database-specifikke privilegier'; $strDbSpecific = 'database-specifik'; $strDefault = 'Standardvrdi'; @@ -221,6 +233,7 @@ $strEndRaw = 'SLUT R $strEnglish = 'Engelsk'; $strEnglishPrivileges = ' NB: Navne p MySQL privilegier er p engelsk '; $strError = 'Fejl'; +$strEscapeWildcards = 'Jokertegn _ og % skal vre escaped med en \ foran for at bruge dem bogstaveligt'; $strEstonian = 'Estisk'; $strExcelEdition = 'Excel-udgave'; $strExcelOptions = 'Excel-indstillinger'; @@ -276,7 +289,7 @@ $strHostEmpty = 'Der er intet v $strHungarian = 'Ungarsk'; $strIcelandic = 'Islandsk'; -$strId = 'ID'; +$strId = 'ID'; $strIdxFulltext = 'Fuldtekst'; $strIfYouWish = 'Hvis du kun nsker at importere nogle af tabellens kolonner, angives de med en kommasepareret felt liste.'; $strIgnore = 'Ignorer'; @@ -290,11 +303,16 @@ $strIndex = 'Indeks'; $strIndexHasBeenDropped = 'Indeks %s er blevet slettet'; $strIndexName = 'Indeksnavn :'; $strIndexType = 'Indekstype :'; -$strIndexes = 'Indekser'; +$strIndexWarningMultiple = 'Mere end en %s ngle blev skabt for kolonne `%s`'; +$strIndexWarningPrimary = 'PRIMARY og INDEX ngler burde ikke begge vre sat for kolonne `%s`'; +$strIndexWarningTable = 'Problemer med indeksene p tabel `%s`'; +$strIndexWarningUnique = 'UNIQUE og INDEX ngler burde ikke begge vre sat for kolonne `%s`'; +$strIndexes = 'Indeks'; $strInnodbStat = 'InnoDB status'; $strInsecureMySQL = 'Din konfigurationsfil indeholder indstillinger (root og uden kodeord) som svarer til en standard MySQL priviligeret brugerkonto. Din MySQL server krer med denne standardindstilling, er ben for indtrngen, og du br virkelig gre noget ved dette sikkerhedshul.'; $strInsert = 'Indst'; $strInsertAsNewRow = 'Indst som ny rkke'; +$strInsertBookmarkTitle = 'Indst venligst bogmrke-titel'; $strInsertNewRow = 'Indst ny rkke'; $strInsertTextfiles = 'Importer tekstfil til tabellen'; $strInsertedRowId = 'Indsat rkke-id:'; @@ -376,6 +394,7 @@ $strName = 'Navn'; $strNeedPrimaryKey = 'Du burde definere en primr ngle for denne tabel.'; $strNext = 'Nste'; $strNo = 'Nej'; +$strNoActivity = 'Ingen aktivitet i de seneste %s sekunder eller mere, log venligst ind igen'; $strNoDatabases = 'Ingen databaser'; $strNoDatabasesSelected = 'Ingen databaser valgt.'; $strNoDescription = 'ingen beskrivelse'; @@ -395,6 +414,7 @@ $strNoRights = 'Du har ikke tilstr $strNoRowsSelected = 'Ingen rkker valgt'; $strNoSpace = 'Utilstrkkeligt plads til at gemme filen %s.'; $strNoTablesFound = 'Ingen tabeller fundet i databasen.'; +$strNoThemeSupport = 'Ingen tema/layout-understttelse, tjek venligst din konfiguration og/eller dine temaer i mappen %s.'; $strNoUsersFound = 'Ingen bruger(e) fundet.'; $strNoValidateSQL = 'Spring over Validr SQL'; $strNone = 'Intet'; @@ -426,6 +446,7 @@ $strPartialText = 'Delvise tekster'; $strPassword = 'Kodeord'; $strPasswordChanged = 'Kodeordet for %s blev korrekt udskiftet.'; $strPasswordEmpty = 'Der er ikke angivet noget kodeord!'; +$strPasswordHashing = 'Kodeord Hashing'; // may be better $strPasswordNotSame = 'De to kodeord er ikke ens!'; $strPdfDbSchema = 'Skematik for databasen "%s" - Side %s'; $strPdfInvalidTblName = 'Tabellen "%s" findes ikke!'; @@ -481,6 +502,7 @@ $strPrivDescUsage = 'Ingen privilegier.'; $strPrivileges = 'Privilegier'; $strPrivilegesReloaded = 'Privilegierne blev korrekt genindlst.'; $strProcesslist = 'Procesliste'; +$strProperties = 'Egenskaber'; $strPutColNames = 'Indst feltnavne i frste rkke'; $strQBE = 'Foresp. via eks.'; @@ -562,6 +584,7 @@ $strSearchType = 'Find:'; $strSecretRequired = 'Konfigurationsfilen skal nu bruge et hemmeligt kodeord (blowfish_secret).'; $strSelectADb = 'Vlg en database'; $strSelectAll = 'Vlg alle'; +$strSelectBinaryLog = 'Vlg binrlog til gennemsyn'; $strSelectFields = 'Vlg mindst eet felt:'; $strSelectNumRows = 'i foresprgsel'; $strSelectTables = 'Vlg Tabeller'; @@ -606,7 +629,7 @@ $strStatUpdateTime = 'Sidste opdatering'; $strStatement = 'Erklringer'; $strStatus = 'Status'; $strStrucCSV = 'CSV-data'; -$strStrucData = 'Struturen og data'; +$strStrucData = 'Struktur og data'; $strStrucDrop = 'Tilfj \'DROP TABLE\''; $strStrucExcelCSV = 'CSV til MS Excel-data'; $strStrucNativeExcel = 'Fdte MS Excel-data'; @@ -617,6 +640,7 @@ $strSubmit = 'Send'; $strSuccess = 'Din SQL-foresprgsel blev udfrt korrekt'; $strSum = 'Sum'; $strSwedish = 'Svensk'; +$strSwitchToDatabase = 'Skift til den kopierede database'; $strSwitchToTable = 'Skift til den kopierede tabel'; $strTable = 'Tabel'; @@ -678,6 +702,7 @@ $strUpgrade = 'Du burde opdatere til %s %s eller senere.'; $strUsage = 'Benyttelse'; $strUseBackquotes = 'Brug \'backquotes\' p tabellers og felters navne'; $strUseHostTable = 'Brug Host Tabel'; +$strUseTabKey = 'Brug TAB tasten for at flytte dig fra vrdi til vrdi, eller CTRL+piletasterne til at flytte frit omkring'; $strUseTables = 'Benyt tabeller'; $strUseTextField = 'Brug tekstfelt'; $strUseThisValue = 'Brug denne vrdi'; @@ -714,28 +739,10 @@ $strXML = 'XML'; $strYes = 'Ja'; $strZeroRemovesTheLimit = 'Bemrk: Indstilling af disse vrdier til 0 (nul) fjerner begrnsningen.'; -$strZip = '"zipped"'; +$strZip = '"zippet"'; -$strAddFields = 'Add %s field(s)'; //to translate -$strInsertBookmarkTitle = 'Please insert bookmark title'; //to translate -$strNoThemeSupport = 'No themes support, please check your configuration and/or your themes in directory %s.'; //to translate -$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate -$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate -$strBinLogName = 'Log name'; //to translate -$strBinLogPosition = 'Position'; //to translate -$strBinLogEventType = 'Event type'; //to translate -$strBinLogServerId = 'Server ID'; //to translate -$strBinLogOriginalPosition = 'Original position'; //to translate -$strBinLogInfo = 'Information'; //to translate -$strBinaryLog = 'Binary log'; //to translate -$strSelectBinaryLog = 'Select binary log to view'; //to translate -$strDBCopy = 'Copy database to'; //to translate -$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate -$strSwitchToDatabase = 'Switch to copied database'; //to translate -$strPasswordHashing = 'Password Hashing'; //to translate -$strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate -$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate -$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/danish-utf-8.inc.php b/lang/danish-utf-8.inc.php index f2b848281..7825b7373 100644 --- a/lang/danish-utf-8.inc.php +++ b/lang/danish-utf-8.inc.php @@ -1,5 +1,5 @@ Dette kan ske hvis php finder en parser-fejl i den, eller php kan ikke finde filen.
Kald konfigurationsfilen direkte fra nedenstående link og læs de(n) phpfejlmeddelse(r) du får. I de fleste tilfælde mangler der et anførselstegn eller et semikolon et sted.
Hvis du får en blank side, er alt i orden.'; @@ -131,6 +141,7 @@ $strConnections = 'Forbindelser'; $strConstraintsForDumped = 'Begrænsninger for dumpede tabeller'; $strConstraintsForTable = 'Begrænsninger for tabel'; $strCookiesRequired = 'Herefter skal cookies være sat til.'; +$strCopyDatabaseOK = 'Database %s er blevet kopieret til %s'; $strCopyTable = 'Kopier tabel til (database.tabel):'; $strCopyTableOK = 'Tabellen %s er nu kopieret til: %s.'; $strCopyTableSameNames = 'Kan ikke kopiere tabellen til den samme!'; @@ -175,6 +186,7 @@ $strDatabasesStats = 'Databasestatistik'; $strDatabasesStatsDisable = 'Slå Statistikker fra'; $strDatabasesStatsEnable = 'Slå Statistikker til'; $strDatabasesStatsHeavyTraffic = 'Bemærk: At slå databasestatistikkerne til her kan forårsage tung trafik mellem webserveren og MySQL-serveren.'; +$strDBCopy = 'Kopiér database til'; $strDbPrivileges = 'Database-specifikke privilegier'; $strDbSpecific = 'database-specifik'; $strDefault = 'Standardværdi'; @@ -222,6 +234,7 @@ $strEndRaw = 'SLUT RÅ'; $strEnglish = 'Engelsk'; $strEnglishPrivileges = ' NB: Navne på MySQL privilegier er på engelsk '; $strError = 'Fejl'; +$strEscapeWildcards = 'Jokertegn _ og % skal være escaped med en \ foran for at bruge dem bogstaveligt'; $strEstonian = 'Estisk'; $strExcelEdition = 'Excel-udgave'; $strExcelOptions = 'Excel-indstillinger'; @@ -277,7 +290,7 @@ $strHostEmpty = 'Der er intet værtsnavn!'; $strHungarian = 'Ungarsk'; $strIcelandic = 'Islandsk'; -$strId = 'ID'; +$strId = 'ID'; $strIdxFulltext = 'Fuldtekst'; $strIfYouWish = 'Hvis du kun ønsker at importere nogle af tabellens kolonner, angives de med en kommasepareret felt liste.'; $strIgnore = 'Ignorer'; @@ -291,11 +304,16 @@ $strIndex = 'Indeks'; $strIndexHasBeenDropped = 'Indeks %s er blevet slettet'; $strIndexName = 'Indeksnavn :'; $strIndexType = 'Indekstype :'; -$strIndexes = 'Indekser'; +$strIndexWarningMultiple = 'Mere end en %s nøgle blev skabt for kolonne `%s`'; +$strIndexWarningPrimary = 'PRIMARY og INDEX nøgler burde ikke begge være sat for kolonne `%s`'; +$strIndexWarningTable = 'Problemer med indeksene på tabel `%s`'; +$strIndexWarningUnique = 'UNIQUE og INDEX nøgler burde ikke begge være sat for kolonne `%s`'; +$strIndexes = 'Indeks'; $strInnodbStat = 'InnoDB status'; $strInsecureMySQL = 'Din konfigurationsfil indeholder indstillinger (root og uden kodeord) som svarer til en standard MySQL priviligeret brugerkonto. Din MySQL server kører med denne standardindstilling, er åben for indtrængen, og du bør virkelig gøre noget ved dette sikkerhedshul.'; $strInsert = 'Indsæt'; $strInsertAsNewRow = 'Indsæt som ny række'; +$strInsertBookmarkTitle = 'Indsæt venligst bogmærke-titel'; $strInsertNewRow = 'Indsæt ny række'; $strInsertTextfiles = 'Importer tekstfil til tabellen'; $strInsertedRowId = 'Indsat række-id:'; @@ -377,6 +395,7 @@ $strName = 'Navn'; $strNeedPrimaryKey = 'Du burde definere en primær nøgle for denne tabel.'; $strNext = 'Næste'; $strNo = 'Nej'; +$strNoActivity = 'Ingen aktivitet i de seneste %s sekunder eller mere, log venligst ind igen'; $strNoDatabases = 'Ingen databaser'; $strNoDatabasesSelected = 'Ingen databaser valgt.'; $strNoDescription = 'ingen beskrivelse'; @@ -396,6 +415,7 @@ $strNoRights = 'Du har ikke tilstrækkelige rettigheder til at være her!'; $strNoRowsSelected = 'Ingen rækker valgt'; $strNoSpace = 'Utilstrækkeligt plads til at gemme filen %s.'; $strNoTablesFound = 'Ingen tabeller fundet i databasen.'; +$strNoThemeSupport = 'Ingen tema/layout-understøttelse, tjek venligst din konfiguration og/eller dine temaer i mappen %s.'; $strNoUsersFound = 'Ingen bruger(e) fundet.'; $strNoValidateSQL = 'Spring over Validér SQL'; $strNone = 'Intet'; @@ -427,6 +447,7 @@ $strPartialText = 'Delvise tekster'; $strPassword = 'Kodeord'; $strPasswordChanged = 'Kodeordet for %s blev korrekt udskiftet.'; $strPasswordEmpty = 'Der er ikke angivet noget kodeord!'; +$strPasswordHashing = 'Kodeord Hashing'; // may be better $strPasswordNotSame = 'De to kodeord er ikke ens!'; $strPdfDbSchema = 'Skematik for databasen "%s" - Side %s'; $strPdfInvalidTblName = 'Tabellen "%s" findes ikke!'; @@ -482,6 +503,7 @@ $strPrivDescUsage = 'Ingen privilegier.'; $strPrivileges = 'Privilegier'; $strPrivilegesReloaded = 'Privilegierne blev korrekt genindlæst.'; $strProcesslist = 'Procesliste'; +$strProperties = 'Egenskaber'; $strPutColNames = 'Indsæt feltnavne i første række'; $strQBE = 'Foresp. via eks.'; @@ -563,6 +585,7 @@ $strSearchType = 'Find:'; $strSecretRequired = 'Konfigurationsfilen skal nu bruge et hemmeligt kodeord (blowfish_secret).'; $strSelectADb = 'Vælg en database'; $strSelectAll = 'Vælg alle'; +$strSelectBinaryLog = 'Vælg binærlog til gennemsyn'; $strSelectFields = 'Vælg mindst eet felt:'; $strSelectNumRows = 'i forespørgsel'; $strSelectTables = 'Vælg Tabeller'; @@ -607,7 +630,7 @@ $strStatUpdateTime = 'Sidste opdatering'; $strStatement = 'Erklæringer'; $strStatus = 'Status'; $strStrucCSV = 'CSV-data'; -$strStrucData = 'Struturen og data'; +$strStrucData = 'Struktur og data'; $strStrucDrop = 'Tilføj \'DROP TABLE\''; $strStrucExcelCSV = 'CSV til MS Excel-data'; $strStrucNativeExcel = 'Fødte MS Excel-data'; @@ -618,6 +641,7 @@ $strSubmit = 'Send'; $strSuccess = 'Din SQL-forespørgsel blev udført korrekt'; $strSum = 'Sum'; $strSwedish = 'Svensk'; +$strSwitchToDatabase = 'Skift til den kopierede database'; $strSwitchToTable = 'Skift til den kopierede tabel'; $strTable = 'Tabel'; @@ -679,6 +703,7 @@ $strUpgrade = 'Du burde opdatere til %s %s eller senere.'; $strUsage = 'Benyttelse'; $strUseBackquotes = 'Brug \'backquotes\' på tabellers og felters navne'; $strUseHostTable = 'Brug Host Tabel'; +$strUseTabKey = 'Brug TAB tasten for at flytte dig fra værdi til værdi, eller CTRL+piletasterne til at flytte frit omkring'; $strUseTables = 'Benyt tabeller'; $strUseTextField = 'Brug tekstfelt'; $strUseThisValue = 'Brug denne værdi'; @@ -715,28 +740,10 @@ $strXML = 'XML'; $strYes = 'Ja'; $strZeroRemovesTheLimit = 'Bemærk: Indstilling af disse værdier til 0 (nul) fjerner begrænsningen.'; -$strZip = '"zipped"'; +$strZip = '"zippet"'; -$strAddFields = 'Add %s field(s)'; //to translate -$strInsertBookmarkTitle = 'Please insert bookmark title'; //to translate -$strNoThemeSupport = 'No themes support, please check your configuration and/or your themes in directory %s.'; //to translate -$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate -$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate -$strBinLogName = 'Log name'; //to translate -$strBinLogPosition = 'Position'; //to translate -$strBinLogEventType = 'Event type'; //to translate -$strBinLogServerId = 'Server ID'; //to translate -$strBinLogOriginalPosition = 'Original position'; //to translate -$strBinLogInfo = 'Information'; //to translate -$strBinaryLog = 'Binary log'; //to translate -$strSelectBinaryLog = 'Select binary log to view'; //to translate -$strDBCopy = 'Copy database to'; //to translate -$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate -$strSwitchToDatabase = 'Switch to copied database'; //to translate -$strPasswordHashing = 'Password Hashing'; //to translate -$strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate -$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate -$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/dutch-iso-8859-1.inc.php b/lang/dutch-iso-8859-1.inc.php index 07b00fa23..33afef52c 100644 --- a/lang/dutch-iso-8859-1.inc.php +++ b/lang/dutch-iso-8859-1.inc.php @@ -742,4 +742,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/dutch-utf-8.inc.php b/lang/dutch-utf-8.inc.php index 8b5aad5a5..7da26a4c0 100644 --- a/lang/dutch-utf-8.inc.php +++ b/lang/dutch-utf-8.inc.php @@ -743,4 +743,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/english-iso-8859-1.inc.php b/lang/english-iso-8859-1.inc.php index 88b2c12d7..d09573e31 100644 --- a/lang/english-iso-8859-1.inc.php +++ b/lang/english-iso-8859-1.inc.php @@ -17,6 +17,7 @@ $month = array('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'O $datefmt = '%B %d, %Y at %I:%M %p'; $timespanfmt = '%s days, %s hours, %s minutes and %s seconds'; +$strAPrimaryKey = 'A primary key has been added on %s'; $strAbortedClients = 'Aborted'; $strAbsolutePathToDocSqlDir = 'Please enter the absolute path on webserver to docSQL directory'; $strAccessDenied = 'Access denied'; @@ -27,8 +28,6 @@ $strAddConstraints = 'Add constraints'; $strAddDeleteColumn = 'Add/Delete Field Columns'; $strAddDeleteRow = 'Add/Delete Criteria Row'; $strAddDropDatabase = 'Add DROP DATABASE'; -$strAddedColumnComment = 'Added comment for column'; -$strAddedColumnRelation = 'Added relation for column'; $strAddFields = 'Add %s field(s)'; $strAddHeaderComment = 'Add custom comment into header (\\n splits lines)'; $strAddIfNotExists = 'Add IF NOT EXISTS'; @@ -40,22 +39,25 @@ $strAddSearchConditions = 'Add search conditions (body of the "where" clause):'; $strAddToIndex = 'Add to index %s column(s)'; $strAddUser = 'Add a new User'; $strAddUserMessage = 'You have added a new user.'; +$strAddedColumnComment = 'Added comment for column'; +$strAddedColumnRelation = 'Added relation for column'; $strAdministration = 'Administration'; $strAffectedRows = 'Affected rows:'; $strAfter = 'After %s'; $strAfterInsertBack = 'Go back to previous page'; $strAfterInsertNewInsert = 'Insert another new row'; +$strAfterInsertNext = 'Edit next row'; $strAfterInsertSame = 'Go back to this page'; $strAll = 'All'; $strAllTableSameWidth = 'display all Tables with same width?'; $strAlterOrderBy = 'Alter table order by'; +$strAnIndex = 'An index has been added on %s'; $strAnalyzeTable = 'Analyze table'; $strAnd = 'And'; -$strAnIndex = 'An index has been added on %s'; $strAny = 'Any'; $strAnyHost = 'Any host'; $strAnyUser = 'Any user'; -$strAPrimaryKey = 'A primary key has been added on %s'; +$strApproximateCount = 'May be approximate. See FAQ 3.11'; $strArabic = 'Arabic'; $strArmenian = 'Armenian'; $strAscending = 'Ascending'; @@ -69,15 +71,15 @@ $strBack = 'Back'; $strBaltic = 'Baltic'; $strBeginCut = 'BEGIN CUT'; $strBeginRaw = 'BEGIN RAW'; -$strBinary = 'Binary'; -$strBinaryDoNotEdit = 'Binary - do not edit'; -$strBinaryLog = 'Binary log'; $strBinLogEventType = 'Event type'; $strBinLogInfo = 'Information'; $strBinLogName = 'Log name'; $strBinLogOriginalPosition = 'Original position'; $strBinLogPosition = 'Position'; $strBinLogServerId = 'Server ID'; +$strBinary = 'Binary'; +$strBinaryDoNotEdit = 'Binary - do not edit'; +$strBinaryLog = 'Binary log'; $strBookmarkAllUsers = 'Let every user access this bookmark'; $strBookmarkDeleted = 'The bookmark has been deleted.'; $strBookmarkLabel = 'Label'; @@ -91,6 +93,7 @@ $strBulgarian = 'Bulgarian'; $strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the$cfg[\'BZipDump\']
directive in your phpMyAdmin configuration file toFALSE
. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; $strBzip = '"bzipped"'; +$strCSVOptions = 'CSV options'; $strCalendar = 'Calendar'; $strCannotLogin = 'Cannot login to MySQL server'; $strCantLoad = 'cannot load %s extension,
please check PHP Configuration'; @@ -103,8 +106,8 @@ $strCaseInsensitive = 'case-insensitive'; $strCaseSensitive = 'case-sensitive'; $strCentralEuropean = 'Central European'; $strChange = 'Change'; -$strChangeCopyModeCopy = '... keep the old one.'; $strChangeCopyMode = 'Create a new user with the same privileges and ...'; +$strChangeCopyModeCopy = '... keep the old one.'; $strChangeCopyModeDeleteAndReload = ' ... delete the old one from the user tables and reload the privileges afterwards.'; $strChangeCopyModeJustDelete = ' ... delete the old one from the user tables.'; $strChangeCopyModeRevoke = ' ... revoke all active privileges from the old one and delete it afterwards.'; @@ -113,8 +116,8 @@ $strChangeDisplay = 'Choose Field to display'; $strChangePassword = 'Change password'; $strCharset = 'Charset'; $strCharsetOfFile = 'Character set of the file:'; -$strCharsetsAndCollations = 'Character Sets and Collations'; $strCharsets = 'Charsets'; +$strCharsetsAndCollations = 'Character Sets and Collations'; $strCheckAll = 'Check All'; $strCheckOverhead = 'Check overheaded'; $strCheckPrivs = 'Check Privileges'; @@ -128,6 +131,7 @@ $strColumnPrivileges = 'Column-specific privileges'; $strCommand = 'Command'; $strComments = 'Comments'; $strCommentsForTable = 'COMMENTS FOR TABLE'; +$strCompatibleHashing = 'MySQL 4.0 compatible'; $strCompleteInserts = 'Complete inserts'; $strCompression = 'Compression'; $strConfigFileError = 'phpMyAdmin was unable to read your configuration file!
This might happen if php finds a parse error in it or php cannot find the file.
Please call the configuration file directly using the link below and read the php error message(s) that you receive. In most cases a quote or a semicolon is missing somewhere.
If you receive a blank page, everything is fine.'; @@ -152,26 +156,10 @@ $strCreatePdfFeat = 'Creation of PDFs'; $strCreationDates = 'Creation/Update/Check dates'; $strCriteria = 'Criteria'; $strCroatian = 'Croatian'; -$strCSVOptions = 'CSV options'; $strCyrillic = 'Cyrillic'; $strCzech = 'Czech'; $strCzechSlovak = 'Czech-Slovak'; -$strDanish = 'Danish'; -$strDatabase = 'Database'; -$strDatabaseEmpty = 'The database name is empty!'; -$strDatabaseExportOptions = 'Database export options'; -$strDatabaseHasBeenDropped = 'Database %s has been dropped.'; -$strDatabaseNoTable = 'This database contains no table!'; -$strDatabases = 'Databases'; -$strDatabasesDropped = '%s databases have been dropped successfully.'; -$strDatabasesStats = 'Databases statistics'; -$strDatabasesStatsDisable = 'Disable Statistics'; -$strDatabasesStatsEnable = 'Enable Statistics'; -$strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here might cause heavy traffic between the webserver and the MySQL one.'; -$strData = 'Data'; -$strDataDict = 'Data Dictionary'; -$strDataOnly = 'Data only'; $strDBComment = 'Database comment: '; $strDBCopy = 'Copy database to'; $strDBGContext = 'Context'; @@ -183,38 +171,53 @@ $strDBGMinTimeMs = 'Min time, ms'; $strDBGModule = 'Module'; $strDBGTimePerHitMs = 'Time/Hit, ms'; $strDBGTotalTimeMs = 'Total time, ms'; -$strDbPrivileges = 'Database-specific privileges'; $strDBRename = 'Rename database to'; +$strDanish = 'Danish'; +$strData = 'Data'; +$strDataDict = 'Data Dictionary'; +$strDataOnly = 'Data only'; +$strDatabase = 'Database'; +$strDatabaseEmpty = 'The database name is empty!'; +$strDatabaseExportOptions = 'Database export options'; +$strDatabaseHasBeenDropped = 'Database %s has been dropped.'; +$strDatabaseNoTable = 'This database contains no table!'; +$strDatabases = 'Databases'; +$strDatabasesDropped = '%s databases have been dropped successfully.'; +$strDatabasesStats = 'Databases statistics'; +$strDatabasesStatsDisable = 'Disable Statistics'; +$strDatabasesStatsEnable = 'Enable Statistics'; +$strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here might cause heavy traffic between the webserver and the MySQL one.'; +$strDbPrivileges = 'Database-specific privileges'; $strDbSpecific = 'database-specific'; $strDefault = 'Default'; $strDefaultValueHelp = 'For default values, please enter just a single value, without backslash escaping or quotes, using this format: a'; $strDefragment = 'Defragment table'; +$strDelOld = 'The current Page has References to Tables that no longer exist. Would you like to delete those References?'; $strDelayedInserts = 'Use delayed inserts'; +$strDelete = 'Delete'; $strDeleteAndFlush = 'Delete the users and reload the privileges afterwards.'; $strDeleteAndFlushDescr = 'This is the cleanest way, but reloading the privileges may take a while.'; -$strDelete = 'Delete'; -$strDeletedRows = 'Deleted rows:'; $strDeleted = 'The row has been deleted'; +$strDeletedRows = 'Deleted rows:'; $strDeleting = 'Deleting %s'; -$strDelOld = 'The current Page has References to Tables that no longer exist. Would you like to delete those References?'; $strDescending = 'Descending'; $strDescription = 'Description'; $strDictionary = 'dictionary'; -$strDisabled = 'Disabled'; $strDisableForeignChecks = 'Disable foreign key checks'; +$strDisabled = 'Disabled'; $strDisplayFeat = 'Display Features'; $strDisplayOrder = 'Display order:'; $strDisplayPDF = 'Display PDF schema'; $strDoAQuery = 'Do a "query by example" (wildcard: "%")'; -$strDocu = 'Documentation'; $strDoYouReally = 'Do you really want to '; -$strDropDatabaseStrongWarning = 'You are about to DESTROY a complete database!'; +$strDocu = 'Documentation'; $strDrop = 'Drop'; +$strDropDatabaseStrongWarning = 'You are about to DESTROY a complete database!'; $strDropSelectedDatabases = 'Drop Selected Databases'; $strDropUsersDb = 'Drop the databases that have the same names as the users.'; -$strDumpingData = 'Dumping data for table'; $strDumpSaved = 'Dump has been saved to file %s.'; $strDumpXRows = 'Dump %s row(s) starting at record # %s.'; +$strDumpingData = 'Dumping data for table'; $strDynamic = 'dynamic'; $strEdit = 'Edit'; @@ -225,8 +228,8 @@ $strEmpty = 'Empty'; $strEmptyResultSet = 'MySQL returned an empty result set (i.e. zero rows).'; $strEnabled = 'Enabled'; $strEncloseInTransaction = 'Enclose export in a transaction'; -$strEndCut = 'END CUT'; $strEnd = 'End'; +$strEndCut = 'END CUT'; $strEndRaw = 'END RAW'; $strEnglish = 'English'; $strEnglishPrivileges = ' Note: MySQL privilege names are expressed in English '; @@ -244,10 +247,10 @@ $strExtra = 'Extra'; $strFailedAttempts = 'Failed attempts'; $strField = 'Field'; $strFieldHasBeenDropped = 'Field %s has been dropped'; +$strFields = 'Fields'; $strFieldsEmpty = ' The field count is empty! '; $strFieldsEnclosedBy = 'Fields enclosed by'; $strFieldsEscapedBy = 'Fields escaped by'; -$strFields = 'Fields'; $strFieldsTerminatedBy = 'Fields terminated by'; $strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; $strFileCouldNotBeRead = 'File could not be read'; @@ -257,14 +260,14 @@ $strFileNameTemplateRemember = 'remember template'; $strFixed = 'fixed'; $strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of these tables may differ from the privileges the server uses, if they have been changed manually. In this case, you should %sreload the privileges%s before you continue.'; $strFlushTable = 'Flush the table ("FLUSH")'; -$strFormat = 'Format'; $strFormEmpty = 'Missing value in the form !'; +$strFormat = 'Format'; $strFullText = 'Full Texts'; $strFunction = 'Function'; $strGenBy = 'Generated by'; -$strGeneralRelationFeat = 'General relation features'; $strGenTime = 'Generation Time'; +$strGeneralRelationFeat = 'General relation features'; $strGeorgian = 'Georgian'; $strGerman = 'German'; $strGlobal = 'global'; @@ -282,8 +285,8 @@ $strHebrew = 'Hebrew'; $strHexForBinary = 'Use hexadecimal for binary fields'; $strHome = 'Home'; $strHomepageOfficial = 'Official phpMyAdmin Homepage'; -$strHostEmpty = 'The host name is empty!'; $strHost = 'Host'; +$strHostEmpty = 'The host name is empty!'; $strHungarian = 'Hungarian'; $strIcelandic = 'Icelandic'; @@ -296,44 +299,48 @@ $strIgnoringFile = 'Ignoring file %s'; $strImportDocSQL = 'Import docSQL Files'; $strImportFiles = 'Import files'; $strImportFinished = 'Import finished'; -$strIndexes = 'Indexes'; -$strIndexHasBeenDropped = 'Index %s has been dropped'; +$strInUse = 'in use'; $strIndex = 'Index'; +$strIndexHasBeenDropped = 'Index %s has been dropped'; $strIndexName = 'Index name :'; $strIndexType = 'Index type :'; +$strIndexWarningMultiple = 'More than one %s key was created for column `%s`'; +$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`'; +$strIndexWarningTable = 'Problems with indexes of table `%s`'; +$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`'; +$strIndexes = 'Indexes'; $strInnodbStat = 'InnoDB Status'; $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; +$strInsert = 'Insert'; $strInsertAsNewRow = 'Insert as a new row'; $strInsertBookmarkTitle = 'Please insert bookmark title'; -$strInsertedRowId = 'Inserted row id:'; -$strInsertedRows = 'Inserted rows:'; -$strInsert = 'Insert'; $strInsertNewRow = 'Insert new row'; $strInsertTextfiles = 'Insert data from a textfile into table'; +$strInsertedRowId = 'Inserted row id:'; +$strInsertedRows = 'Inserted rows:'; $strInstructions = 'Instructions'; $strInternalNotNecessary = '* An internal relation is not necessary when it exists also in InnoDB.'; $strInternalRelations = 'Internal relations'; -$strInUse = 'in use'; $strJapanese = 'Japanese'; $strJumpToDB = 'Jump to database "%s".'; -$strJustDeleteDescr = 'The "deleted" users will still be able to access the server as usual until the privileges are reloaded.'; $strJustDelete = 'Just delete the users from the privilege tables.'; +$strJustDeleteDescr = 'The "deleted" users will still be able to access the server as usual until the privileges are reloaded.'; $strKeepPass = 'Do not change the password'; $strKeyname = 'Keyname'; $strKill = 'Kill'; $strKorean = 'Korean'; +$strLaTeX = 'LaTeX'; +$strLaTeXOptions = 'LaTeX options'; $strLandscape = 'Landscape'; $strLatexCaption = 'Table caption'; $strLatexContent = 'Content of table __TABLE__'; -$strLatexContinuedCaption = 'Continued table caption'; $strLatexContinued = '(continued)'; +$strLatexContinuedCaption = 'Continued table caption'; $strLatexIncludeCaption = 'Include table caption'; $strLatexLabel = 'Label key'; -$strLaTeX = 'LaTeX'; -$strLaTeXOptions = 'LaTeX options'; $strLatexStructure = 'Structure of table __TABLE__'; $strLatvian = 'Latvian'; $strLengthSet = 'Length/Values*'; @@ -347,28 +354,30 @@ $strLoadExplanation = 'The best method is checked by default, but you can change $strLoadMethod = 'LOAD method'; $strLocalhost = 'Local'; $strLocationTextfile = 'Location of the textfile'; -$strLoginInformation = 'Login Information'; -$strLogin = 'Login'; -$strLogout = 'Log out'; $strLogPassword = 'Password:'; $strLogServer = 'Server'; $strLogUsername = 'Username:'; +$strLogin = 'Login'; +$strLoginInformation = 'Login Information'; +$strLogout = 'Log out'; -$strMaximumSize = 'Max: %s%s'; +$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; +$strMIME_MIMEtype = 'MIME-type'; $strMIME_available_mime = 'Available MIME-types'; $strMIME_available_transform = 'Available transformations'; $strMIME_description = 'Description'; -$strMIME_MIMEtype = 'MIME-type'; $strMIME_nodescription = 'No Description is available for this transformation.
Please ask the author, what %s does.'; $strMIME_transformation = 'Browser transformation'; $strMIME_transformation_note = 'For a list of available transformation options and their MIME-type transformations, click on %stransformation descriptions%s'; -$strMIME_transformation_options_note = 'Please enter the values for transformation options using this format: \'a\',\'b\',\'c\'...
If you ever need to put a backslash ("\") or a single quote ("\'") amongst those values, backslash it (for example \'\\\\xyz\' or \'a\\\'b\').'; $strMIME_transformation_options = 'Transformation options'; -$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; +$strMIME_transformation_options_note = 'Please enter the values for transformation options using this format: \'a\',\'b\',\'c\'...
If you ever need to put a backslash ("\") or a single quote ("\'") amongst those values, backslash it (for example \'\\\\xyz\' or \'a\\\'b\').'; $strMIME_without = 'MIME-types printed in italics do not have a seperate transformation function'; +$strMaximumSize = 'Max: %s%s'; +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; $strModifications = 'Modifications have been saved'; -$strModifyIndexTopic = 'Modify an index'; $strModify = 'Modify'; +$strModifyIndexTopic = 'Modify an index'; $strMoreStatusVars = 'More status variables'; $strMoveTable = 'Move table to (database.table):'; $strMoveTableOK = 'Table %s has been moved to %s.'; @@ -387,6 +396,8 @@ $strMySQLShowVars = 'Show MySQL system variables'; $strName = 'Name'; $strNeedPrimaryKey = 'You should define a primary key for this table.'; $strNext = 'Next'; +$strNo = 'No'; +$strNoActivity = 'No activity since %s seconds or more, please login again'; $strNoDatabases = 'No databases'; $strNoDatabasesSelected = 'No databases selected.'; $strNoDescription = 'no Description'; @@ -396,8 +407,6 @@ $strNoFrames = 'phpMyAdmin is more friendly with a frames-capable browser $strNoIndex = 'No index defined!'; $strNoIndexPartsDefined = 'No index parts defined!'; $strNoModification = 'No change'; -$strNone = 'None'; -$strNo = 'No'; $strNoOptions = 'This format has no options'; $strNoPassword = 'No Password'; $strNoPermission = 'The web server does not have permission to save the file %s.'; @@ -409,19 +418,20 @@ $strNoRowsSelected = 'No rows selected'; $strNoSpace = 'Insufficient space to save the file %s.'; $strNoTablesFound = 'No tables found in database.'; $strNoThemeSupport = 'No themes support, please check your configuration and/or your themes in directory %s.'; +$strNoUsersFound = 'No user(s) found.'; +$strNoValidateSQL = 'Skip Validate SQL'; +$strNone = 'None'; $strNotNumber = 'This is not a number!'; $strNotOK = 'not OK'; $strNotSet = '%s table not found or not set in %s'; $strNotValidNumber = ' is not a valid row number!'; -$strNoUsersFound = 'No user(s) found.'; -$strNoValidateSQL = 'Skip Validate SQL'; $strNull = 'Null'; $strNumSearchResultsInTable = '%s match(es) inside table %s'; $strNumSearchResultsTotal = 'Total: %s match(es)'; $strNumTables = 'Tables'; -$strOftenQuotation = 'Often quotation marks. OPTIONALLY means that only char and varchar fields are enclosed by the "enclosed by"-character.'; $strOK = 'OK'; +$strOftenQuotation = 'Often quotation marks. OPTIONALLY means that only char and varchar fields are enclosed by the "enclosed by"-character.'; $strOperations = 'Operations'; $strOperator = 'Operator'; $strOptimizeTable = 'Optimize table'; @@ -431,13 +441,16 @@ $strOr = 'Or'; $strOverhead = 'Overhead'; $strOverwriteExisting = 'Overwrite existing file(s)'; +$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; +$strPHPVersion = 'PHP Version'; $strPageNumber = 'Page number:'; $strPaperSize = 'Paper size'; $strPartialText = 'Partial Texts'; +$strPassword = 'Password'; $strPasswordChanged = 'The Password for %s was changed successfully.'; $strPasswordEmpty = 'The password is empty!'; +$strPasswordHashing = 'Password Hashing'; $strPasswordNotSame = 'The passwords aren\'t the same!'; -$strPassword = 'Password'; $strPdfDbSchema = 'Schema of the the "%s" database - Page %s'; $strPdfInvalidTblName = 'The "%s" table doesn\'t exist!'; $strPdfNoTables = 'No tables'; @@ -446,22 +459,20 @@ $strPerMinute = 'per minute'; $strPerSecond = 'per second'; $strPersian = 'Persian'; $strPhoneBook = 'phone book'; -$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; $strPhp = 'Create PHP Code'; -$strPHPVersion = 'PHP Version'; $strPmaDocumentation = 'phpMyAdmin documentation'; $strPmaUriError = 'The $cfg[\'PmaAbsoluteUri\'] directive MUST be set in your configuration file!'; $strPolish = 'Polish'; $strPortrait = 'Portrait'; $strPos1 = 'Begin'; $strPrevious = 'Previous'; +$strPrimary = 'Primary'; $strPrimaryKeyHasBeenDropped = 'The primary key has been dropped'; $strPrimaryKeyName = 'The name of the primary key must be... PRIMARY!'; $strPrimaryKeyWarning = '("PRIMARY" must be the name of and only of a primary key!)'; -$strPrimary = 'Primary'; $strPrint = 'Print'; -$strPrintViewFull = 'Print view (with full texts)'; $strPrintView = 'Print view'; +$strPrintViewFull = 'Print view (with full texts)'; $strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; $strPrivDescAlter = 'Allows altering the structure of existing tables.'; $strPrivDescCreateDb = 'Allows creating new databases and tables.'; @@ -496,9 +507,9 @@ $strPrivilegesReloaded = 'The privileges were reloaded successfully.'; $strProcesslist = 'Process list'; $strPutColNames = 'Put fields names at first row'; +$strQBE = 'Query'; $strQBEDel = 'Del'; $strQBEIns = 'Ins'; -$strQBE = 'Query'; $strQueryFrame = 'Query window'; $strQueryOnDb = 'SQL-query on database %s:'; $strQuerySQLHistory = 'SQL-history'; @@ -507,51 +518,63 @@ $strQueryTime = 'Query took %01.4f sec'; $strQueryType = 'Query type'; $strQueryWindowLock = 'Do not overwrite this query from outside the window'; +$strReType = 'Re-type'; $strReceived = 'Received'; $strRecords = 'Records'; $strReferentialIntegrity = 'Check referential integrity:'; $strRefresh = 'Refresh'; -$strRelationalSchema = 'Relational schema'; $strRelationNotWorking = 'The additional Features for working with linked Tables have been deactivated. To find out why click %shere%s.'; -$strRelationsForTable = 'RELATIONS FOR TABLE'; -$strRelations = 'Relations'; $strRelationView = 'Relation view'; +$strRelationalSchema = 'Relational schema'; +$strRelations = 'Relations'; +$strRelationsForTable = 'RELATIONS FOR TABLE'; $strReloadFailed = 'MySQL reload failed.'; -$strReloadingThePrivileges = 'Reloading the privileges'; $strReloadMySQL = 'Reload MySQL'; +$strReloadingThePrivileges = 'Reloading the privileges'; $strRemoveSelectedUsers = 'Remove selected users'; $strRenameDatabaseOK = 'Database %s has been renamed to %s'; -$strRenameTableOK = 'Table %s has been renamed to %s'; $strRenameTable = 'Rename table to'; +$strRenameTableOK = 'Table %s has been renamed to %s'; $strRepairTable = 'Repair table'; -$strReplaceNULLBy = 'Replace NULL by'; $strReplace = 'Replace'; +$strReplaceNULLBy = 'Replace NULL by'; $strReplaceTable = 'Replace table data with file'; $strReset = 'Reset'; $strResourceLimits = 'Resource limits'; -$strReType = 'Re-type'; -$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; -$strRevokeAndDelete = 'Revoke all active privileges from the users and delete them afterwards.'; -$strRevokeMessage = 'You have revoked the privileges for %s'; $strRevoke = 'Revoke'; +$strRevokeAndDelete = 'Revoke all active privileges from the users and delete them afterwards.'; +$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; +$strRevokeMessage = 'You have revoked the privileges for %s'; $strRomanian = 'Romanian'; $strRowLength = 'Row length'; -$strRowsFrom = 'row(s) starting from record #'; $strRowSize = ' Row size '; +$strRows = 'Rows'; +$strRowsFrom = 'row(s) starting from record #'; $strRowsModeFlippedHorizontal = 'horizontal (rotated headers)'; $strRowsModeHorizontal = 'horizontal'; $strRowsModeOptions = 'in %s mode and repeat headers after %s cells'; $strRowsModeVertical = 'vertical'; -$strRows = 'Rows'; $strRowsStatistic = 'Row Statistic'; -$strRunning = 'running on %s'; $strRunQuery = 'Submit Query'; $strRunSQLQuery = 'Run SQL query/queries on database %s'; +$strRunning = 'running on %s'; $strRussian = 'Russian'; -$strSaveOnServer = 'Save on server in %s directory'; +$strSQL = 'SQL'; +$strSQLExportCompatibility = 'SQL export compatibility'; +$strSQLExportType = 'Export type'; +$strSQLOptions = 'SQL options'; +$strSQLParserBugMessage = 'There is a chance that you may have found a bug in the SQL parser. Please examine your query closely, and check that the quotes are correct and not mis-matched. Other possible failure causes may be that you are uploading a file with binary outside of a quoted text area. You can also try your query on the MySQL command line interface. The MySQL server error output below, if there is any, may also help you in diagnosing the problem. If you still have problems or if the parser fails where the command line interface succeeds, please reduce your SQL query input to the single query that causes problems, and submit a bug report with the data chunk in the CUT section below:'; +$strSQLParserUserError = 'There seems to be an error in your SQL query. The MySQL server error output below, if there is any, may also help you in diagnosing the problem'; +$strSQLQuery = 'SQL-query'; +$strSQLResult = 'SQL result'; +$strSQPBugInvalidIdentifer = 'Invalid Identifer'; +$strSQPBugUnclosedQuote = 'Unclosed quote'; +$strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; $strSave = 'Save'; +$strSaveOnServer = 'Save on server in %s directory'; $strScaleFactorSmall = 'The scale factor is too small to fit the schema on one page'; +$strSearch = 'Search'; $strSearchFormTitle = 'Search in database'; $strSearchInTables = 'Inside table(s):'; $strSearchNeedle = 'Word(s) or value(s) to search for (wildcard: "%"):'; @@ -560,7 +583,6 @@ $strSearchOption2 = 'all words'; $strSearchOption3 = 'the exact phrase'; $strSearchOption4 = 'as regular expression'; $strSearchResultsFor = 'Search results for "%s" %s:'; -$strSearch = 'Search'; $strSearchType = 'Find:'; $strSecretRequired = 'The configuration file now needs a secret passphrase (blowfish_secret).'; $strSelectADb = 'Please select a database'; @@ -571,9 +593,9 @@ $strSelectNumRows = 'in query'; $strSelectTables = 'Select Tables'; $strSend = 'Save as file'; $strSent = 'Sent'; +$strServer = 'Server'; $strServerChoice = 'Server Choice'; $strServerNotResponding = 'The server is not responding'; -$strServer = 'Server'; $strServerStatus = 'Runtime Information'; $strServerStatusUptime = 'This MySQL server has been running for %s. It started up on %s.'; $strServerTabProcesslist = 'Processes'; @@ -583,41 +605,31 @@ $strServerVars = 'Server variables and settings'; $strServerVersion = 'Server version'; $strSessionValue = 'Session value'; $strSetEnumVal = 'If field type is "enum" or "set", please enter the values using this format: \'a\',\'b\',\'c\'...
If you ever need to put a backslash ("\") or a single quote ("\'") amongst those values, backslash it (for example \'\\\\xyz\' or \'a\\\'b\').'; +$strShow = 'Show'; $strShowAll = 'Show all'; $strShowColor = 'Show color'; $strShowDatadictAs = 'Data Dictionary Format'; $strShowFullQueries = 'Show Full Queries'; $strShowGrid = 'Show grid'; -$strShowingRecords = 'Showing rows'; $strShowPHPInfo = 'Show PHP information'; -$strShow = 'Show'; $strShowTableDimension = 'Show dimension of tables'; $strShowTables = 'Show tables'; $strShowThisQuery = ' Show this query here again '; +$strShowingRecords = 'Showing rows'; $strSimplifiedChinese = 'Simplified Chinese'; $strSingly = '(singly)'; $strSize = 'Size'; $strSlovak = 'Slovak'; $strSlovenian = 'Slovenian'; -$strSortByKey = 'Sort by key'; $strSort = 'Sort'; +$strSortByKey = 'Sort by key'; $strSpaceUsage = 'Space usage'; $strSpanish = 'Spanish'; $strSplitWordsWithSpace = 'Words are separated by a space character (" ").'; -$strSQLExportType = 'Export type'; -$strSQLOptions = 'SQL options'; -$strSQLParserBugMessage = 'There is a chance that you may have found a bug in the SQL parser. Please examine your query closely, and check that the quotes are correct and not mis-matched. Other possible failure causes may be that you are uploading a file with binary outside of a quoted text area. You can also try your query on the MySQL command line interface. The MySQL server error output below, if there is any, may also help you in diagnosing the problem. If you still have problems or if the parser fails where the command line interface succeeds, please reduce your SQL query input to the single query that causes problems, and submit a bug report with the data chunk in the CUT section below:'; -$strSQLParserUserError = 'There seems to be an error in your SQL query. The MySQL server error output below, if there is any, may also help you in diagnosing the problem'; -$strSQLQuery = 'SQL-query'; -$strSQLResult = 'SQL result'; -$strSQL = 'SQL'; -$strSQPBugInvalidIdentifer = 'Invalid Identifer'; -$strSQPBugUnclosedQuote = 'Unclosed quote'; -$strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; $strStatCheckTime = 'Last check'; $strStatCreateTime = 'Creation'; -$strStatement = 'Statements'; $strStatUpdateTime = 'Last update'; +$strStatement = 'Statements'; $strStatus = 'Status'; $strStrucCSV = 'CSV data'; $strStrucData = 'Structure and data'; @@ -634,6 +646,7 @@ $strSwedish = 'Swedish'; $strSwitchToDatabase = 'Switch to copied database'; $strSwitchToTable = 'Switch to copied table'; +$strTable = 'Table'; $strTableComments = 'Table comments'; $strTableEmpty = 'The table name is empty!'; $strTableHasBeenDropped = 'Table %s has been dropped'; @@ -642,18 +655,17 @@ $strTableHasBeenFlushed = 'Table %s has been flushed'; $strTableMaintenance = 'Table maintenance'; $strTableOfContents = 'Table of contents'; $strTableOptions = 'Table options'; -$strTables = '%s table(s)'; $strTableStructure = 'Table structure for table'; -$strTable = 'Table'; $strTableType = 'Table type'; +$strTables = '%s table(s)'; $strTakeIt = 'take it'; $strTblPrivileges = 'Table-specific privileges'; $strTextAreaLength = ' Because of its length,
this field might not be editable '; $strThai = 'Thai'; -$strTheContents = 'The contents of the file replaces the contents of the selected table for rows with identical primary or unique key.'; $strTheContent = 'The content of your file has been inserted.'; -$strTheme = 'Theme / Style'; +$strTheContents = 'The contents of the file replaces the contents of the selected table for rows with identical primary or unique key.'; $strTheTerminator = 'The terminator of the fields.'; +$strTheme = 'Theme / Style'; $strThisHost = 'This Host'; $strThisNotDirectory = 'This was not a directory'; $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; @@ -685,14 +697,19 @@ $strUnicode = 'Unicode'; $strUnique = 'Unique'; $strUnknown = 'unknown'; $strUnselectAll = 'Unselect All'; +$strUpdComTab = 'Please see Documentation on how to update your Column_comments Table'; $strUpdatePrivMessage = 'You have updated the privileges for %s.'; $strUpdateProfileMessage = 'The profile has been updated.'; $strUpdateQuery = 'Update Query'; -$strUpdComTab = 'Please see Documentation on how to update your Column_comments Table'; $strUpgrade = 'You should upgrade to %s %s or later.'; $strUsage = 'Usage'; $strUseBackquotes = 'Enclose table and field names with backquotes'; $strUseHostTable = 'Use Host Table'; +$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; +$strUseTables = 'Use Tables'; +$strUseTextField = 'Use text field'; +$strUseThisValue = 'Use this value'; +$strUser = 'User'; $strUserAlreadyExists = 'The user %s already exists!'; $strUserEmpty = 'The user name is empty!'; $strUserName = 'User name'; @@ -700,22 +717,17 @@ $strUserNotFound = 'The selected user was not found in the privilege table.'; $strUserOverview = 'User overview'; $strUsersDeleted = 'The selected users have been deleted successfully.'; $strUsersHavingAccessToDb = 'Users having access to "%s"'; -$strUser = 'User'; -$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; -$strUseTables = 'Use Tables'; -$strUseTextField = 'Use text field'; -$strUseThisValue = 'Use this value'; $strValidateSQL = 'Validate SQL'; $strValidatorError = 'The SQL validator could not be initialized. Please check if you have installed the necessary php extensions as described in the %sdocumentation%s.'; $strValue = 'Value'; $strVar = 'Variable'; -$strViewDumpDatabases = 'View dump (schema) of databases'; -$strViewDumpDB = 'View dump (schema) of database'; $strViewDump = 'View dump (schema) of table'; +$strViewDumpDB = 'View dump (schema) of database'; +$strViewDumpDatabases = 'View dump (schema) of databases'; -$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; $strWebServerUploadDirectory = 'web-server upload directory'; +$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; $strWelcome = 'Welcome to %s'; $strWestEuropean = 'West European'; $strWildcard = 'wildcard'; @@ -732,10 +744,4 @@ $strYes = 'Yes'; $strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; $strZip = '"zipped"'; -$strPasswordHashing = 'Password Hashing'; //to translate -$strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate -$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate -$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate ?> diff --git a/lang/english-utf-8.inc.php b/lang/english-utf-8.inc.php index 9e3827133..75e46cf47 100644 --- a/lang/english-utf-8.inc.php +++ b/lang/english-utf-8.inc.php @@ -18,6 +18,7 @@ $month = array('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'O $datefmt = '%B %d, %Y at %I:%M %p'; $timespanfmt = '%s days, %s hours, %s minutes and %s seconds'; +$strAPrimaryKey = 'A primary key has been added on %s'; $strAbortedClients = 'Aborted'; $strAbsolutePathToDocSqlDir = 'Please enter the absolute path on webserver to docSQL directory'; $strAccessDenied = 'Access denied'; @@ -28,8 +29,6 @@ $strAddConstraints = 'Add constraints'; $strAddDeleteColumn = 'Add/Delete Field Columns'; $strAddDeleteRow = 'Add/Delete Criteria Row'; $strAddDropDatabase = 'Add DROP DATABASE'; -$strAddedColumnComment = 'Added comment for column'; -$strAddedColumnRelation = 'Added relation for column'; $strAddFields = 'Add %s field(s)'; $strAddHeaderComment = 'Add custom comment into header (\\n splits lines)'; $strAddIfNotExists = 'Add IF NOT EXISTS'; @@ -41,22 +40,25 @@ $strAddSearchConditions = 'Add search conditions (body of the "where" clause):'; $strAddToIndex = 'Add to index %s column(s)'; $strAddUser = 'Add a new User'; $strAddUserMessage = 'You have added a new user.'; +$strAddedColumnComment = 'Added comment for column'; +$strAddedColumnRelation = 'Added relation for column'; $strAdministration = 'Administration'; $strAffectedRows = 'Affected rows:'; $strAfter = 'After %s'; $strAfterInsertBack = 'Go back to previous page'; $strAfterInsertNewInsert = 'Insert another new row'; +$strAfterInsertNext = 'Edit next row'; $strAfterInsertSame = 'Go back to this page'; $strAll = 'All'; $strAllTableSameWidth = 'display all Tables with same width?'; $strAlterOrderBy = 'Alter table order by'; +$strAnIndex = 'An index has been added on %s'; $strAnalyzeTable = 'Analyze table'; $strAnd = 'And'; -$strAnIndex = 'An index has been added on %s'; $strAny = 'Any'; $strAnyHost = 'Any host'; $strAnyUser = 'Any user'; -$strAPrimaryKey = 'A primary key has been added on %s'; +$strApproximateCount = 'May be approximate. See FAQ 3.11'; $strArabic = 'Arabic'; $strArmenian = 'Armenian'; $strAscending = 'Ascending'; @@ -70,15 +72,15 @@ $strBack = 'Back'; $strBaltic = 'Baltic'; $strBeginCut = 'BEGIN CUT'; $strBeginRaw = 'BEGIN RAW'; -$strBinary = 'Binary'; -$strBinaryDoNotEdit = 'Binary - do not edit'; -$strBinaryLog = 'Binary log'; $strBinLogEventType = 'Event type'; $strBinLogInfo = 'Information'; $strBinLogName = 'Log name'; $strBinLogOriginalPosition = 'Original position'; $strBinLogPosition = 'Position'; $strBinLogServerId = 'Server ID'; +$strBinary = 'Binary'; +$strBinaryDoNotEdit = 'Binary - do not edit'; +$strBinaryLog = 'Binary log'; $strBookmarkAllUsers = 'Let every user access this bookmark'; $strBookmarkDeleted = 'The bookmark has been deleted.'; $strBookmarkLabel = 'Label'; @@ -92,6 +94,7 @@ $strBulgarian = 'Bulgarian'; $strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the$cfg[\'BZipDump\']
directive in your phpMyAdmin configuration file toFALSE
. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; $strBzip = '"bzipped"'; +$strCSVOptions = 'CSV options'; $strCalendar = 'Calendar'; $strCannotLogin = 'Cannot login to MySQL server'; $strCantLoad = 'cannot load %s extension,
please check PHP Configuration'; @@ -104,8 +107,8 @@ $strCaseInsensitive = 'case-insensitive'; $strCaseSensitive = 'case-sensitive'; $strCentralEuropean = 'Central European'; $strChange = 'Change'; -$strChangeCopyModeCopy = '... keep the old one.'; $strChangeCopyMode = 'Create a new user with the same privileges and ...'; +$strChangeCopyModeCopy = '... keep the old one.'; $strChangeCopyModeDeleteAndReload = ' ... delete the old one from the user tables and reload the privileges afterwards.'; $strChangeCopyModeJustDelete = ' ... delete the old one from the user tables.'; $strChangeCopyModeRevoke = ' ... revoke all active privileges from the old one and delete it afterwards.'; @@ -114,8 +117,8 @@ $strChangeDisplay = 'Choose Field to display'; $strChangePassword = 'Change password'; $strCharset = 'Charset'; $strCharsetOfFile = 'Character set of the file:'; -$strCharsetsAndCollations = 'Character Sets and Collations'; $strCharsets = 'Charsets'; +$strCharsetsAndCollations = 'Character Sets and Collations'; $strCheckAll = 'Check All'; $strCheckOverhead = 'Check overheaded'; $strCheckPrivs = 'Check Privileges'; @@ -129,6 +132,7 @@ $strColumnPrivileges = 'Column-specific privileges'; $strCommand = 'Command'; $strComments = 'Comments'; $strCommentsForTable = 'COMMENTS FOR TABLE'; +$strCompatibleHashing = 'MySQL 4.0 compatible'; $strCompleteInserts = 'Complete inserts'; $strCompression = 'Compression'; $strConfigFileError = 'phpMyAdmin was unable to read your configuration file!
This might happen if php finds a parse error in it or php cannot find the file.
Please call the configuration file directly using the link below and read the php error message(s) that you receive. In most cases a quote or a semicolon is missing somewhere.
If you receive a blank page, everything is fine.'; @@ -153,26 +157,10 @@ $strCreatePdfFeat = 'Creation of PDFs'; $strCreationDates = 'Creation/Update/Check dates'; $strCriteria = 'Criteria'; $strCroatian = 'Croatian'; -$strCSVOptions = 'CSV options'; $strCyrillic = 'Cyrillic'; $strCzech = 'Czech'; $strCzechSlovak = 'Czech-Slovak'; -$strDanish = 'Danish'; -$strDatabase = 'Database'; -$strDatabaseEmpty = 'The database name is empty!'; -$strDatabaseExportOptions = 'Database export options'; -$strDatabaseHasBeenDropped = 'Database %s has been dropped.'; -$strDatabaseNoTable = 'This database contains no table!'; -$strDatabases = 'Databases'; -$strDatabasesDropped = '%s databases have been dropped successfully.'; -$strDatabasesStats = 'Databases statistics'; -$strDatabasesStatsDisable = 'Disable Statistics'; -$strDatabasesStatsEnable = 'Enable Statistics'; -$strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here might cause heavy traffic between the webserver and the MySQL one.'; -$strData = 'Data'; -$strDataDict = 'Data Dictionary'; -$strDataOnly = 'Data only'; $strDBComment = 'Database comment: '; $strDBCopy = 'Copy database to'; $strDBGContext = 'Context'; @@ -184,38 +172,53 @@ $strDBGMinTimeMs = 'Min time, ms'; $strDBGModule = 'Module'; $strDBGTimePerHitMs = 'Time/Hit, ms'; $strDBGTotalTimeMs = 'Total time, ms'; -$strDbPrivileges = 'Database-specific privileges'; $strDBRename = 'Rename database to'; +$strDanish = 'Danish'; +$strData = 'Data'; +$strDataDict = 'Data Dictionary'; +$strDataOnly = 'Data only'; +$strDatabase = 'Database'; +$strDatabaseEmpty = 'The database name is empty!'; +$strDatabaseExportOptions = 'Database export options'; +$strDatabaseHasBeenDropped = 'Database %s has been dropped.'; +$strDatabaseNoTable = 'This database contains no table!'; +$strDatabases = 'Databases'; +$strDatabasesDropped = '%s databases have been dropped successfully.'; +$strDatabasesStats = 'Databases statistics'; +$strDatabasesStatsDisable = 'Disable Statistics'; +$strDatabasesStatsEnable = 'Enable Statistics'; +$strDatabasesStatsHeavyTraffic = 'Note: Enabling the Database statistics here might cause heavy traffic between the webserver and the MySQL one.'; +$strDbPrivileges = 'Database-specific privileges'; $strDbSpecific = 'database-specific'; $strDefault = 'Default'; $strDefaultValueHelp = 'For default values, please enter just a single value, without backslash escaping or quotes, using this format: a'; $strDefragment = 'Defragment table'; +$strDelOld = 'The current Page has References to Tables that no longer exist. Would you like to delete those References?'; $strDelayedInserts = 'Use delayed inserts'; +$strDelete = 'Delete'; $strDeleteAndFlush = 'Delete the users and reload the privileges afterwards.'; $strDeleteAndFlushDescr = 'This is the cleanest way, but reloading the privileges may take a while.'; -$strDelete = 'Delete'; -$strDeletedRows = 'Deleted rows:'; $strDeleted = 'The row has been deleted'; +$strDeletedRows = 'Deleted rows:'; $strDeleting = 'Deleting %s'; -$strDelOld = 'The current Page has References to Tables that no longer exist. Would you like to delete those References?'; $strDescending = 'Descending'; $strDescription = 'Description'; $strDictionary = 'dictionary'; -$strDisabled = 'Disabled'; $strDisableForeignChecks = 'Disable foreign key checks'; +$strDisabled = 'Disabled'; $strDisplayFeat = 'Display Features'; $strDisplayOrder = 'Display order:'; $strDisplayPDF = 'Display PDF schema'; $strDoAQuery = 'Do a "query by example" (wildcard: "%")'; -$strDocu = 'Documentation'; $strDoYouReally = 'Do you really want to '; -$strDropDatabaseStrongWarning = 'You are about to DESTROY a complete database!'; +$strDocu = 'Documentation'; $strDrop = 'Drop'; +$strDropDatabaseStrongWarning = 'You are about to DESTROY a complete database!'; $strDropSelectedDatabases = 'Drop Selected Databases'; $strDropUsersDb = 'Drop the databases that have the same names as the users.'; -$strDumpingData = 'Dumping data for table'; $strDumpSaved = 'Dump has been saved to file %s.'; $strDumpXRows = 'Dump %s row(s) starting at record # %s.'; +$strDumpingData = 'Dumping data for table'; $strDynamic = 'dynamic'; $strEdit = 'Edit'; @@ -226,8 +229,8 @@ $strEmpty = 'Empty'; $strEmptyResultSet = 'MySQL returned an empty result set (i.e. zero rows).'; $strEnabled = 'Enabled'; $strEncloseInTransaction = 'Enclose export in a transaction'; -$strEndCut = 'END CUT'; $strEnd = 'End'; +$strEndCut = 'END CUT'; $strEndRaw = 'END RAW'; $strEnglish = 'English'; $strEnglishPrivileges = ' Note: MySQL privilege names are expressed in English '; @@ -245,10 +248,10 @@ $strExtra = 'Extra'; $strFailedAttempts = 'Failed attempts'; $strField = 'Field'; $strFieldHasBeenDropped = 'Field %s has been dropped'; +$strFields = 'Fields'; $strFieldsEmpty = ' The field count is empty! '; $strFieldsEnclosedBy = 'Fields enclosed by'; $strFieldsEscapedBy = 'Fields escaped by'; -$strFields = 'Fields'; $strFieldsTerminatedBy = 'Fields terminated by'; $strFileAlreadyExists = 'File %s already exists on server, change filename or check overwrite option.'; $strFileCouldNotBeRead = 'File could not be read'; @@ -258,14 +261,14 @@ $strFileNameTemplateRemember = 'remember template'; $strFixed = 'fixed'; $strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of these tables may differ from the privileges the server uses, if they have been changed manually. In this case, you should %sreload the privileges%s before you continue.'; $strFlushTable = 'Flush the table ("FLUSH")'; -$strFormat = 'Format'; $strFormEmpty = 'Missing value in the form !'; +$strFormat = 'Format'; $strFullText = 'Full Texts'; $strFunction = 'Function'; $strGenBy = 'Generated by'; -$strGeneralRelationFeat = 'General relation features'; $strGenTime = 'Generation Time'; +$strGeneralRelationFeat = 'General relation features'; $strGeorgian = 'Georgian'; $strGerman = 'German'; $strGlobal = 'global'; @@ -283,8 +286,8 @@ $strHebrew = 'Hebrew'; $strHexForBinary = 'Use hexadecimal for binary fields'; $strHome = 'Home'; $strHomepageOfficial = 'Official phpMyAdmin Homepage'; -$strHostEmpty = 'The host name is empty!'; $strHost = 'Host'; +$strHostEmpty = 'The host name is empty!'; $strHungarian = 'Hungarian'; $strIcelandic = 'Icelandic'; @@ -297,44 +300,48 @@ $strIgnoringFile = 'Ignoring file %s'; $strImportDocSQL = 'Import docSQL Files'; $strImportFiles = 'Import files'; $strImportFinished = 'Import finished'; -$strIndexes = 'Indexes'; -$strIndexHasBeenDropped = 'Index %s has been dropped'; +$strInUse = 'in use'; $strIndex = 'Index'; +$strIndexHasBeenDropped = 'Index %s has been dropped'; $strIndexName = 'Index name :'; $strIndexType = 'Index type :'; +$strIndexWarningMultiple = 'More than one %s key was created for column `%s`'; +$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`'; +$strIndexWarningTable = 'Problems with indexes of table `%s`'; +$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`'; +$strIndexes = 'Indexes'; $strInnodbStat = 'InnoDB Status'; $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; +$strInsert = 'Insert'; $strInsertAsNewRow = 'Insert as a new row'; $strInsertBookmarkTitle = 'Please insert bookmark title'; -$strInsertedRowId = 'Inserted row id:'; -$strInsertedRows = 'Inserted rows:'; -$strInsert = 'Insert'; $strInsertNewRow = 'Insert new row'; $strInsertTextfiles = 'Insert data from a textfile into table'; +$strInsertedRowId = 'Inserted row id:'; +$strInsertedRows = 'Inserted rows:'; $strInstructions = 'Instructions'; $strInternalNotNecessary = '* An internal relation is not necessary when it exists also in InnoDB.'; $strInternalRelations = 'Internal relations'; -$strInUse = 'in use'; $strJapanese = 'Japanese'; $strJumpToDB = 'Jump to database "%s".'; -$strJustDeleteDescr = 'The "deleted" users will still be able to access the server as usual until the privileges are reloaded.'; $strJustDelete = 'Just delete the users from the privilege tables.'; +$strJustDeleteDescr = 'The "deleted" users will still be able to access the server as usual until the privileges are reloaded.'; $strKeepPass = 'Do not change the password'; $strKeyname = 'Keyname'; $strKill = 'Kill'; $strKorean = 'Korean'; +$strLaTeX = 'LaTeX'; +$strLaTeXOptions = 'LaTeX options'; $strLandscape = 'Landscape'; $strLatexCaption = 'Table caption'; $strLatexContent = 'Content of table __TABLE__'; -$strLatexContinuedCaption = 'Continued table caption'; $strLatexContinued = '(continued)'; +$strLatexContinuedCaption = 'Continued table caption'; $strLatexIncludeCaption = 'Include table caption'; $strLatexLabel = 'Label key'; -$strLaTeX = 'LaTeX'; -$strLaTeXOptions = 'LaTeX options'; $strLatexStructure = 'Structure of table __TABLE__'; $strLatvian = 'Latvian'; $strLengthSet = 'Length/Values*'; @@ -348,28 +355,30 @@ $strLoadExplanation = 'The best method is checked by default, but you can change $strLoadMethod = 'LOAD method'; $strLocalhost = 'Local'; $strLocationTextfile = 'Location of the textfile'; -$strLoginInformation = 'Login Information'; -$strLogin = 'Login'; -$strLogout = 'Log out'; $strLogPassword = 'Password:'; $strLogServer = 'Server'; $strLogUsername = 'Username:'; +$strLogin = 'Login'; +$strLoginInformation = 'Login Information'; +$strLogout = 'Log out'; -$strMaximumSize = 'Max: %s%s'; +$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; +$strMIME_MIMEtype = 'MIME-type'; $strMIME_available_mime = 'Available MIME-types'; $strMIME_available_transform = 'Available transformations'; $strMIME_description = 'Description'; -$strMIME_MIMEtype = 'MIME-type'; $strMIME_nodescription = 'No Description is available for this transformation.
Please ask the author, what %s does.'; $strMIME_transformation = 'Browser transformation'; $strMIME_transformation_note = 'For a list of available transformation options and their MIME-type transformations, click on %stransformation descriptions%s'; -$strMIME_transformation_options_note = 'Please enter the values for transformation options using this format: \'a\',\'b\',\'c\'...
If you ever need to put a backslash ("\") or a single quote ("\'") amongst those values, backslash it (for example \'\\\\xyz\' or \'a\\\'b\').'; $strMIME_transformation_options = 'Transformation options'; -$strMIMETypesForTable = 'MIME TYPES FOR TABLE'; +$strMIME_transformation_options_note = 'Please enter the values for transformation options using this format: \'a\',\'b\',\'c\'...
If you ever need to put a backslash ("\") or a single quote ("\'") amongst those values, backslash it (for example \'\\\\xyz\' or \'a\\\'b\').'; $strMIME_without = 'MIME-types printed in italics do not have a seperate transformation function'; +$strMaximumSize = 'Max: %s%s'; +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; $strModifications = 'Modifications have been saved'; -$strModifyIndexTopic = 'Modify an index'; $strModify = 'Modify'; +$strModifyIndexTopic = 'Modify an index'; $strMoreStatusVars = 'More status variables'; $strMoveTable = 'Move table to (database.table):'; $strMoveTableOK = 'Table %s has been moved to %s.'; @@ -388,6 +397,8 @@ $strMySQLShowVars = 'Show MySQL system variables'; $strName = 'Name'; $strNeedPrimaryKey = 'You should define a primary key for this table.'; $strNext = 'Next'; +$strNo = 'No'; +$strNoActivity = 'No activity since %s seconds or more, please login again'; $strNoDatabases = 'No databases'; $strNoDatabasesSelected = 'No databases selected.'; $strNoDescription = 'no Description'; @@ -397,8 +408,6 @@ $strNoFrames = 'phpMyAdmin is more friendly with a frames-capable browser $strNoIndex = 'No index defined!'; $strNoIndexPartsDefined = 'No index parts defined!'; $strNoModification = 'No change'; -$strNone = 'None'; -$strNo = 'No'; $strNoOptions = 'This format has no options'; $strNoPassword = 'No Password'; $strNoPermission = 'The web server does not have permission to save the file %s.'; @@ -410,19 +419,20 @@ $strNoRowsSelected = 'No rows selected'; $strNoSpace = 'Insufficient space to save the file %s.'; $strNoTablesFound = 'No tables found in database.'; $strNoThemeSupport = 'No themes support, please check your configuration and/or your themes in directory %s.'; +$strNoUsersFound = 'No user(s) found.'; +$strNoValidateSQL = 'Skip Validate SQL'; +$strNone = 'None'; $strNotNumber = 'This is not a number!'; $strNotOK = 'not OK'; $strNotSet = '%s table not found or not set in %s'; $strNotValidNumber = ' is not a valid row number!'; -$strNoUsersFound = 'No user(s) found.'; -$strNoValidateSQL = 'Skip Validate SQL'; $strNull = 'Null'; $strNumSearchResultsInTable = '%s match(es) inside table %s'; $strNumSearchResultsTotal = 'Total: %s match(es)'; $strNumTables = 'Tables'; -$strOftenQuotation = 'Often quotation marks. OPTIONALLY means that only char and varchar fields are enclosed by the "enclosed by"-character.'; $strOK = 'OK'; +$strOftenQuotation = 'Often quotation marks. OPTIONALLY means that only char and varchar fields are enclosed by the "enclosed by"-character.'; $strOperations = 'Operations'; $strOperator = 'Operator'; $strOptimizeTable = 'Optimize table'; @@ -432,13 +442,16 @@ $strOr = 'Or'; $strOverhead = 'Overhead'; $strOverwriteExisting = 'Overwrite existing file(s)'; +$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; +$strPHPVersion = 'PHP Version'; $strPageNumber = 'Page number:'; $strPaperSize = 'Paper size'; $strPartialText = 'Partial Texts'; +$strPassword = 'Password'; $strPasswordChanged = 'The Password for %s was changed successfully.'; $strPasswordEmpty = 'The password is empty!'; +$strPasswordHashing = 'Password Hashing'; $strPasswordNotSame = 'The passwords aren\'t the same!'; -$strPassword = 'Password'; $strPdfDbSchema = 'Schema of the the "%s" database - Page %s'; $strPdfInvalidTblName = 'The "%s" table doesn\'t exist!'; $strPdfNoTables = 'No tables'; @@ -447,22 +460,20 @@ $strPerMinute = 'per minute'; $strPerSecond = 'per second'; $strPersian = 'Persian'; $strPhoneBook = 'phone book'; -$strPHP40203 = 'You are using PHP 4.2.3, which has a serious bug with multi-byte strings (mbstring). See PHP bug report 19404. This version of PHP is not recommended for use with phpMyAdmin.'; $strPhp = 'Create PHP Code'; -$strPHPVersion = 'PHP Version'; $strPmaDocumentation = 'phpMyAdmin documentation'; $strPmaUriError = 'The $cfg[\'PmaAbsoluteUri\'] directive MUST be set in your configuration file!'; $strPolish = 'Polish'; $strPortrait = 'Portrait'; $strPos1 = 'Begin'; $strPrevious = 'Previous'; +$strPrimary = 'Primary'; $strPrimaryKeyHasBeenDropped = 'The primary key has been dropped'; $strPrimaryKeyName = 'The name of the primary key must be... PRIMARY!'; $strPrimaryKeyWarning = '("PRIMARY" must be the name of and only of a primary key!)'; -$strPrimary = 'Primary'; $strPrint = 'Print'; -$strPrintViewFull = 'Print view (with full texts)'; $strPrintView = 'Print view'; +$strPrintViewFull = 'Print view (with full texts)'; $strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; $strPrivDescAlter = 'Allows altering the structure of existing tables.'; $strPrivDescCreateDb = 'Allows creating new databases and tables.'; @@ -497,9 +508,9 @@ $strPrivilegesReloaded = 'The privileges were reloaded successfully.'; $strProcesslist = 'Process list'; $strPutColNames = 'Put fields names at first row'; +$strQBE = 'Query'; $strQBEDel = 'Del'; $strQBEIns = 'Ins'; -$strQBE = 'Query'; $strQueryFrame = 'Query window'; $strQueryOnDb = 'SQL-query on database %s:'; $strQuerySQLHistory = 'SQL-history'; @@ -508,51 +519,63 @@ $strQueryTime = 'Query took %01.4f sec'; $strQueryType = 'Query type'; $strQueryWindowLock = 'Do not overwrite this query from outside the window'; +$strReType = 'Re-type'; $strReceived = 'Received'; $strRecords = 'Records'; $strReferentialIntegrity = 'Check referential integrity:'; $strRefresh = 'Refresh'; -$strRelationalSchema = 'Relational schema'; $strRelationNotWorking = 'The additional Features for working with linked Tables have been deactivated. To find out why click %shere%s.'; -$strRelationsForTable = 'RELATIONS FOR TABLE'; -$strRelations = 'Relations'; $strRelationView = 'Relation view'; +$strRelationalSchema = 'Relational schema'; +$strRelations = 'Relations'; +$strRelationsForTable = 'RELATIONS FOR TABLE'; $strReloadFailed = 'MySQL reload failed.'; -$strReloadingThePrivileges = 'Reloading the privileges'; $strReloadMySQL = 'Reload MySQL'; +$strReloadingThePrivileges = 'Reloading the privileges'; $strRemoveSelectedUsers = 'Remove selected users'; $strRenameDatabaseOK = 'Database %s has been renamed to %s'; -$strRenameTableOK = 'Table %s has been renamed to %s'; $strRenameTable = 'Rename table to'; +$strRenameTableOK = 'Table %s has been renamed to %s'; $strRepairTable = 'Repair table'; -$strReplaceNULLBy = 'Replace NULL by'; $strReplace = 'Replace'; +$strReplaceNULLBy = 'Replace NULL by'; $strReplaceTable = 'Replace table data with file'; $strReset = 'Reset'; $strResourceLimits = 'Resource limits'; -$strReType = 'Re-type'; -$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; -$strRevokeAndDelete = 'Revoke all active privileges from the users and delete them afterwards.'; -$strRevokeMessage = 'You have revoked the privileges for %s'; $strRevoke = 'Revoke'; +$strRevokeAndDelete = 'Revoke all active privileges from the users and delete them afterwards.'; +$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; +$strRevokeMessage = 'You have revoked the privileges for %s'; $strRomanian = 'Romanian'; $strRowLength = 'Row length'; -$strRowsFrom = 'row(s) starting from record #'; $strRowSize = ' Row size '; +$strRows = 'Rows'; +$strRowsFrom = 'row(s) starting from record #'; $strRowsModeFlippedHorizontal = 'horizontal (rotated headers)'; $strRowsModeHorizontal = 'horizontal'; $strRowsModeOptions = 'in %s mode and repeat headers after %s cells'; $strRowsModeVertical = 'vertical'; -$strRows = 'Rows'; $strRowsStatistic = 'Row Statistic'; -$strRunning = 'running on %s'; $strRunQuery = 'Submit Query'; $strRunSQLQuery = 'Run SQL query/queries on database %s'; +$strRunning = 'running on %s'; $strRussian = 'Russian'; -$strSaveOnServer = 'Save on server in %s directory'; +$strSQL = 'SQL'; +$strSQLExportCompatibility = 'SQL export compatibility'; +$strSQLExportType = 'Export type'; +$strSQLOptions = 'SQL options'; +$strSQLParserBugMessage = 'There is a chance that you may have found a bug in the SQL parser. Please examine your query closely, and check that the quotes are correct and not mis-matched. Other possible failure causes may be that you are uploading a file with binary outside of a quoted text area. You can also try your query on the MySQL command line interface. The MySQL server error output below, if there is any, may also help you in diagnosing the problem. If you still have problems or if the parser fails where the command line interface succeeds, please reduce your SQL query input to the single query that causes problems, and submit a bug report with the data chunk in the CUT section below:'; +$strSQLParserUserError = 'There seems to be an error in your SQL query. The MySQL server error output below, if there is any, may also help you in diagnosing the problem'; +$strSQLQuery = 'SQL-query'; +$strSQLResult = 'SQL result'; +$strSQPBugInvalidIdentifer = 'Invalid Identifer'; +$strSQPBugUnclosedQuote = 'Unclosed quote'; +$strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; $strSave = 'Save'; +$strSaveOnServer = 'Save on server in %s directory'; $strScaleFactorSmall = 'The scale factor is too small to fit the schema on one page'; +$strSearch = 'Search'; $strSearchFormTitle = 'Search in database'; $strSearchInTables = 'Inside table(s):'; $strSearchNeedle = 'Word(s) or value(s) to search for (wildcard: "%"):'; @@ -561,7 +584,6 @@ $strSearchOption2 = 'all words'; $strSearchOption3 = 'the exact phrase'; $strSearchOption4 = 'as regular expression'; $strSearchResultsFor = 'Search results for "%s" %s:'; -$strSearch = 'Search'; $strSearchType = 'Find:'; $strSecretRequired = 'The configuration file now needs a secret passphrase (blowfish_secret).'; $strSelectADb = 'Please select a database'; @@ -572,9 +594,9 @@ $strSelectNumRows = 'in query'; $strSelectTables = 'Select Tables'; $strSend = 'Save as file'; $strSent = 'Sent'; +$strServer = 'Server'; $strServerChoice = 'Server Choice'; $strServerNotResponding = 'The server is not responding'; -$strServer = 'Server'; $strServerStatus = 'Runtime Information'; $strServerStatusUptime = 'This MySQL server has been running for %s. It started up on %s.'; $strServerTabProcesslist = 'Processes'; @@ -584,41 +606,31 @@ $strServerVars = 'Server variables and settings'; $strServerVersion = 'Server version'; $strSessionValue = 'Session value'; $strSetEnumVal = 'If field type is "enum" or "set", please enter the values using this format: \'a\',\'b\',\'c\'...
If you ever need to put a backslash ("\") or a single quote ("\'") amongst those values, backslash it (for example \'\\\\xyz\' or \'a\\\'b\').'; +$strShow = 'Show'; $strShowAll = 'Show all'; $strShowColor = 'Show color'; $strShowDatadictAs = 'Data Dictionary Format'; $strShowFullQueries = 'Show Full Queries'; $strShowGrid = 'Show grid'; -$strShowingRecords = 'Showing rows'; $strShowPHPInfo = 'Show PHP information'; -$strShow = 'Show'; $strShowTableDimension = 'Show dimension of tables'; $strShowTables = 'Show tables'; $strShowThisQuery = ' Show this query here again '; +$strShowingRecords = 'Showing rows'; $strSimplifiedChinese = 'Simplified Chinese'; $strSingly = '(singly)'; $strSize = 'Size'; $strSlovak = 'Slovak'; $strSlovenian = 'Slovenian'; -$strSortByKey = 'Sort by key'; $strSort = 'Sort'; +$strSortByKey = 'Sort by key'; $strSpaceUsage = 'Space usage'; $strSpanish = 'Spanish'; $strSplitWordsWithSpace = 'Words are separated by a space character (" ").'; -$strSQLExportType = 'Export type'; -$strSQLOptions = 'SQL options'; -$strSQLParserBugMessage = 'There is a chance that you may have found a bug in the SQL parser. Please examine your query closely, and check that the quotes are correct and not mis-matched. Other possible failure causes may be that you are uploading a file with binary outside of a quoted text area. You can also try your query on the MySQL command line interface. The MySQL server error output below, if there is any, may also help you in diagnosing the problem. If you still have problems or if the parser fails where the command line interface succeeds, please reduce your SQL query input to the single query that causes problems, and submit a bug report with the data chunk in the CUT section below:'; -$strSQLParserUserError = 'There seems to be an error in your SQL query. The MySQL server error output below, if there is any, may also help you in diagnosing the problem'; -$strSQLQuery = 'SQL-query'; -$strSQLResult = 'SQL result'; -$strSQL = 'SQL'; -$strSQPBugInvalidIdentifer = 'Invalid Identifer'; -$strSQPBugUnclosedQuote = 'Unclosed quote'; -$strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; $strStatCheckTime = 'Last check'; $strStatCreateTime = 'Creation'; -$strStatement = 'Statements'; $strStatUpdateTime = 'Last update'; +$strStatement = 'Statements'; $strStatus = 'Status'; $strStrucCSV = 'CSV data'; $strStrucData = 'Structure and data'; @@ -635,6 +647,7 @@ $strSwedish = 'Swedish'; $strSwitchToDatabase = 'Switch to copied database'; $strSwitchToTable = 'Switch to copied table'; +$strTable = 'Table'; $strTableComments = 'Table comments'; $strTableEmpty = 'The table name is empty!'; $strTableHasBeenDropped = 'Table %s has been dropped'; @@ -643,18 +656,17 @@ $strTableHasBeenFlushed = 'Table %s has been flushed'; $strTableMaintenance = 'Table maintenance'; $strTableOfContents = 'Table of contents'; $strTableOptions = 'Table options'; -$strTables = '%s table(s)'; $strTableStructure = 'Table structure for table'; -$strTable = 'Table'; $strTableType = 'Table type'; +$strTables = '%s table(s)'; $strTakeIt = 'take it'; $strTblPrivileges = 'Table-specific privileges'; $strTextAreaLength = ' Because of its length,
this field might not be editable '; $strThai = 'Thai'; -$strTheContents = 'The contents of the file replaces the contents of the selected table for rows with identical primary or unique key.'; $strTheContent = 'The content of your file has been inserted.'; -$strTheme = 'Theme / Style'; +$strTheContents = 'The contents of the file replaces the contents of the selected table for rows with identical primary or unique key.'; $strTheTerminator = 'The terminator of the fields.'; +$strTheme = 'Theme / Style'; $strThisHost = 'This Host'; $strThisNotDirectory = 'This was not a directory'; $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; @@ -686,14 +698,19 @@ $strUnicode = 'Unicode'; $strUnique = 'Unique'; $strUnknown = 'unknown'; $strUnselectAll = 'Unselect All'; +$strUpdComTab = 'Please see Documentation on how to update your Column_comments Table'; $strUpdatePrivMessage = 'You have updated the privileges for %s.'; $strUpdateProfileMessage = 'The profile has been updated.'; $strUpdateQuery = 'Update Query'; -$strUpdComTab = 'Please see Documentation on how to update your Column_comments Table'; $strUpgrade = 'You should upgrade to %s %s or later.'; $strUsage = 'Usage'; $strUseBackquotes = 'Enclose table and field names with backquotes'; $strUseHostTable = 'Use Host Table'; +$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; +$strUseTables = 'Use Tables'; +$strUseTextField = 'Use text field'; +$strUseThisValue = 'Use this value'; +$strUser = 'User'; $strUserAlreadyExists = 'The user %s already exists!'; $strUserEmpty = 'The user name is empty!'; $strUserName = 'User name'; @@ -701,22 +718,17 @@ $strUserNotFound = 'The selected user was not found in the privilege table.'; $strUserOverview = 'User overview'; $strUsersDeleted = 'The selected users have been deleted successfully.'; $strUsersHavingAccessToDb = 'Users having access to "%s"'; -$strUser = 'User'; -$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; -$strUseTables = 'Use Tables'; -$strUseTextField = 'Use text field'; -$strUseThisValue = 'Use this value'; $strValidateSQL = 'Validate SQL'; $strValidatorError = 'The SQL validator could not be initialized. Please check if you have installed the necessary php extensions as described in the %sdocumentation%s.'; $strValue = 'Value'; $strVar = 'Variable'; -$strViewDumpDatabases = 'View dump (schema) of databases'; -$strViewDumpDB = 'View dump (schema) of database'; $strViewDump = 'View dump (schema) of table'; +$strViewDumpDB = 'View dump (schema) of database'; +$strViewDumpDatabases = 'View dump (schema) of databases'; -$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; $strWebServerUploadDirectory = 'web-server upload directory'; +$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; $strWelcome = 'Welcome to %s'; $strWestEuropean = 'West European'; $strWildcard = 'wildcard'; @@ -733,10 +745,4 @@ $strYes = 'Yes'; $strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; $strZip = '"zipped"'; -$strPasswordHashing = 'Password Hashing'; //to translate -$strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate -$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate -$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate ?> diff --git a/lang/estonian-iso-8859-1.inc.php b/lang/estonian-iso-8859-1.inc.php index e9e2e59a8..0e30aa4be 100644 --- a/lang/estonian-iso-8859-1.inc.php +++ b/lang/estonian-iso-8859-1.inc.php @@ -738,4 +738,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/estonian-utf-8.inc.php b/lang/estonian-utf-8.inc.php index d82b61663..5561b8ec7 100644 --- a/lang/estonian-utf-8.inc.php +++ b/lang/estonian-utf-8.inc.php @@ -739,4 +739,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/finnish-iso-8859-1.inc.php b/lang/finnish-iso-8859-1.inc.php index 9af7e913c..1feee9f5f 100644 --- a/lang/finnish-iso-8859-1.inc.php +++ b/lang/finnish-iso-8859-1.inc.php @@ -763,4 +763,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/finnish-utf-8.inc.php b/lang/finnish-utf-8.inc.php index 7e1a577f1..b36b50f78 100644 --- a/lang/finnish-utf-8.inc.php +++ b/lang/finnish-utf-8.inc.php @@ -764,4 +764,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/french-iso-8859-1.inc.php b/lang/french-iso-8859-1.inc.php index 52a4d16b3..553ff94de 100644 --- a/lang/french-iso-8859-1.inc.php +++ b/lang/french-iso-8859-1.inc.php @@ -57,6 +57,7 @@ $strAnd = 'et'; $strAny = 'N\'importe quel'; $strAnyHost = 'Tout serveur'; $strAnyUser = 'Tout utilisateur'; +$strApproximateCount = 'Peut tre approximatif. Voir FAQ 3.11'; $strArabic = 'arabe'; $strArmenian = 'armnien'; $strAscending = 'Croissant'; @@ -70,8 +71,15 @@ $strBack = 'Retour'; $strBaltic = 'baltique'; $strBeginCut = 'Dbut de la section couper'; $strBeginRaw = 'Dbut des informations sur l\'anomalie'; +$strBinLogEventType = 'Type d\'vnement'; +$strBinLogInfo = 'Information'; +$strBinLogName = 'Nom du log binaire'; +$strBinLogOriginalPosition = 'Position d\'origine'; +$strBinLogPosition = 'Position'; +$strBinLogServerId = 'ID du serveur'; $strBinary = 'Binaire'; $strBinaryDoNotEdit = 'Binaire - ne pas diter'; +$strBinaryLog = 'Log binaire'; $strBookmarkAllUsers = 'Signet visible pour les autres utilisateurs'; $strBookmarkDeleted = 'Le signet a t effac.'; $strBookmarkLabel = 'Intitul'; @@ -123,6 +131,7 @@ $strColumnPrivileges = 'Privil $strCommand = 'Commande'; $strComments = 'Commentaires'; $strCommentsForTable = 'COMMENTAIRES POUR LA TABLE'; +$strCompatibleHashing = 'compatible MySQL 4.0'; $strCompleteInserts = 'Insertions compltes'; $strCompression = 'Compression'; $strConfigFileError = 'phpMyAdmin n\'a pu lire votre fichier de configuration!
Il est possible qu\'il contienne une erreur de syntaxe, ou que PHP soit incapable de le trouver
l\'aide du lien suivant, vous pouvez vrifier le message d\'erreur gnr par PHP;
la plupart du temps, un apostrophe ou un point-virgule sont manquants.
Si vous recevez une page blanche, aucune erreur n\'a t dtecte.'; @@ -132,6 +141,7 @@ $strConnections = 'Connexions'; $strConstraintsForDumped = 'Contraintes pour les tables exportes'; $strConstraintsForTable = 'Contraintes pour la table'; $strCookiesRequired = 'Vous devez accepter les cookies pour poursuivre.'; +$strCopyDatabaseOK = 'La base de donnes %s a t copie sur %s'; $strCopyTable = 'Copier la table vers (base.table) :'; $strCopyTableOK = 'La table %s a t copie vers %s.'; $strCopyTableSameNames = 'On ne peut copier la table sur elle-mme!'; @@ -151,6 +161,7 @@ $strCzech = 'tch $strCzechSlovak = 'tchque-slovaque'; $strDBComment = 'Commentaire sur la base de donnes: '; +$strDBCopy = 'Copier la base de donnes vers:'; $strDBGContext = 'Contexte'; $strDBGContextID = 'Identificateur de contexte'; $strDBGHits = 'Occurences'; @@ -293,6 +304,11 @@ $strIndex = 'Index'; $strIndexHasBeenDropped = 'L\'index %s a t effac'; $strIndexName = 'Nom de la clef :'; $strIndexType = 'Type de clef :'; +$strIndexWarningMultiple = 'Plus d\'un index de type %s existe pour la colonne `%s`'; +$strIndexWarningPrimary = 'La colonne `%s` ne devrait pas faire partie la fois d\'une cl primaire et d\'une cl index'; +$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`'; +$strIndexWarningTable = 'Il y a des problmes avec les index de la table `%s`'; +$strIndexWarningUnique = 'La colonne `%s` ne devrait pas faire partie la fois d\'une cl unique et d\'une cl index'; $strIndexes = 'Index'; $strInnodbStat = 'tat InnoDB'; $strInsecureMySQL = 'Votre fichier de configuration fait rfrence l\'utilisateur root sans mot de passe, ce qui correspond la valeur par dfaut de MySQL. Votre serveur MySQL est donc ouvert aux intrusions, et vous devriez corriger ce problme de scurit.'; @@ -380,6 +396,7 @@ $strName = 'Nom'; $strNeedPrimaryKey = 'Vous devriez dfinir une cl primaire pour cette table.'; $strNext = 'Suivant'; $strNo = 'Non'; +$strNoActivity = 'Aucune activit depuis %s secondes ou plus, veuillez vous reconnecter'; $strNoDatabases = 'Aucune base de donnes'; $strNoDatabasesSelected = 'Aucune base de donnes n\'a t slectionne.'; $strNoDescription = 'pas de description'; @@ -431,6 +448,7 @@ $strPartialText = 'Textes r $strPassword = 'Mot de passe'; $strPasswordChanged = 'Le mot de passe de %s a t chang.'; $strPasswordEmpty = 'Le mot de passe est vide'; +$strPasswordHashing = 'Hachage du mot de passe'; $strPasswordNotSame = 'Les mots de passe doivent tre identiques'; $strPdfDbSchema = 'Schema de la base "%s" - Page %s'; $strPdfInvalidTblName = 'La table "%s" n\'existe pas !'; @@ -567,6 +585,7 @@ $strSearchType = 'Type de recherche :'; $strSecretRequired = 'Vous devez ajouter dans le fichier de configuration une phrase de passe secrte (blowfish_secret).'; $strSelectADb = 'Choisissez une base de donnes'; $strSelectAll = 'Tout slectionner'; +$strSelectBinaryLog = 'Slectionnez le log binaire consulter'; $strSelectFields = 'Choisir les champs afficher (au moins un)'; $strSelectNumRows = 'dans la requte'; $strSelectTables = 'Choisissez les tables'; @@ -622,7 +641,8 @@ $strSubmit = 'Ex $strSuccess = 'Votre requte SQL a t excute avec succs'; $strSum = 'Somme'; $strSwedish = 'sudois'; -$strSwitchToTable = 'Se rendre la table copie'; +$strSwitchToDatabase = 'Aller la base de donnes copie'; +$strSwitchToTable = 'Aller la table copie'; $strTable = 'Table'; $strTableComments = 'Commentaires sur la table'; @@ -722,21 +742,8 @@ $strYes = 'Oui'; $strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enlve la limite.'; $strZip = '"zipp"'; -$strBinLogName = 'Log name'; //to translate -$strBinLogPosition = 'Position'; //to translate -$strBinLogEventType = 'Event type'; //to translate -$strBinLogServerId = 'Server ID'; //to translate -$strBinLogOriginalPosition = 'Original position'; //to translate -$strBinLogInfo = 'Information'; //to translate -$strBinaryLog = 'Binary log'; //to translate -$strSelectBinaryLog = 'Select binary log to view'; //to translate -$strDBCopy = 'Copy database to'; //to translate -$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate -$strSwitchToDatabase = 'Switch to copied database'; //to translate -$strPasswordHashing = 'Password Hashing'; //to translate -$strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate -$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate -$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/french-utf-8.inc.php b/lang/french-utf-8.inc.php index e50d7c07d..4dd1429f5 100644 --- a/lang/french-utf-8.inc.php +++ b/lang/french-utf-8.inc.php @@ -58,6 +58,7 @@ $strAnd = 'et'; $strAny = 'N\'importe quel'; $strAnyHost = 'Tout serveur'; $strAnyUser = 'Tout utilisateur'; +$strApproximateCount = 'Peut être approximatif. Voir FAQ 3.11'; $strArabic = 'arabe'; $strArmenian = 'arménien'; $strAscending = 'Croissant'; @@ -71,8 +72,15 @@ $strBack = 'Retour'; $strBaltic = 'baltique'; $strBeginCut = 'Début de la section à couper'; $strBeginRaw = 'Début des informations sur l\'anomalie'; +$strBinLogEventType = 'Type d\'évènement'; +$strBinLogInfo = 'Information'; +$strBinLogName = 'Nom du log binaire'; +$strBinLogOriginalPosition = 'Position d\'origine'; +$strBinLogPosition = 'Position'; +$strBinLogServerId = 'ID du serveur'; $strBinary = 'Binaire'; $strBinaryDoNotEdit = 'Binaire - ne pas éditer'; +$strBinaryLog = 'Log binaire'; $strBookmarkAllUsers = 'Signet visible pour les autres utilisateurs'; $strBookmarkDeleted = 'Le signet a été effacé.'; $strBookmarkLabel = 'Intitulé'; @@ -124,6 +132,7 @@ $strColumnPrivileges = 'Privilèges de colonnes'; $strCommand = 'Commande'; $strComments = 'Commentaires'; $strCommentsForTable = 'COMMENTAIRES POUR LA TABLE'; +$strCompatibleHashing = 'compatible MySQL 4.0'; $strCompleteInserts = 'Insertions complètes'; $strCompression = 'Compression'; $strConfigFileError = 'phpMyAdmin n\'a pu lire votre fichier de configuration!
Il est possible qu\'il contienne une erreur de syntaxe, ou que PHP soit incapable de le trouver
À l\'aide du lien suivant, vous pouvez vérifier le message d\'erreur généré par PHP;
la plupart du temps, un apostrophe ou un point-virgule sont manquants.
Si vous recevez une page blanche, aucune erreur n\'a été détectée.'; @@ -133,6 +142,7 @@ $strConnections = 'Connexions'; $strConstraintsForDumped = 'Contraintes pour les tables exportées'; $strConstraintsForTable = 'Contraintes pour la table'; $strCookiesRequired = 'Vous devez accepter les cookies pour poursuivre.'; +$strCopyDatabaseOK = 'La base de données %s a été copiée sur %s'; $strCopyTable = 'Copier la table vers (base.table) :'; $strCopyTableOK = 'La table %s a été copiée vers %s.'; $strCopyTableSameNames = 'On ne peut copier la table sur elle-même!'; @@ -152,6 +162,7 @@ $strCzech = 'tchèque'; $strCzechSlovak = 'tchèque-slovaque'; $strDBComment = 'Commentaire sur la base de données: '; +$strDBCopy = 'Copier la base de données vers:'; $strDBGContext = 'Contexte'; $strDBGContextID = 'Identificateur de contexte'; $strDBGHits = 'Occurences'; @@ -294,6 +305,11 @@ $strIndex = 'Index'; $strIndexHasBeenDropped = 'L\'index %s a été effacé'; $strIndexName = 'Nom de la clef :'; $strIndexType = 'Type de clef :'; +$strIndexWarningMultiple = 'Plus d\'un index de type %s existe pour la colonne `%s`'; +$strIndexWarningPrimary = 'La colonne `%s` ne devrait pas faire partie à la fois d\'une clé primaire et d\'une clé index'; +$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`'; +$strIndexWarningTable = 'Il y a des problèmes avec les index de la table `%s`'; +$strIndexWarningUnique = 'La colonne `%s` ne devrait pas faire partie à la fois d\'une clé unique et d\'une clé index'; $strIndexes = 'Index'; $strInnodbStat = 'État InnoDB'; $strInsecureMySQL = 'Votre fichier de configuration fait référence à l\'utilisateur root sans mot de passe, ce qui correspond à la valeur par défaut de MySQL. Votre serveur MySQL est donc ouvert aux intrusions, et vous devriez corriger ce problème de sécurité.'; @@ -381,6 +397,7 @@ $strName = 'Nom'; $strNeedPrimaryKey = 'Vous devriez définir une clé primaire pour cette table.'; $strNext = 'Suivant'; $strNo = 'Non'; +$strNoActivity = 'Aucune activité depuis %s secondes ou plus, veuillez vous reconnecter'; $strNoDatabases = 'Aucune base de données'; $strNoDatabasesSelected = 'Aucune base de données n\'a été sélectionnée.'; $strNoDescription = 'pas de description'; @@ -432,6 +449,7 @@ $strPartialText = 'Textes réduits'; $strPassword = 'Mot de passe'; $strPasswordChanged = 'Le mot de passe de %s a été changé.'; $strPasswordEmpty = 'Le mot de passe est vide'; +$strPasswordHashing = 'Hachage du mot de passe'; $strPasswordNotSame = 'Les mots de passe doivent être identiques'; $strPdfDbSchema = 'Schema de la base "%s" - Page %s'; $strPdfInvalidTblName = 'La table "%s" n\'existe pas !'; @@ -568,6 +586,7 @@ $strSearchType = 'Type de recherche :'; $strSecretRequired = 'Vous devez ajouter dans le fichier de configuration une phrase de passe secrète (blowfish_secret).'; $strSelectADb = 'Choisissez une base de données'; $strSelectAll = 'Tout sélectionner'; +$strSelectBinaryLog = 'Sélectionnez le log binaire à consulter'; $strSelectFields = 'Choisir les champs à afficher (au moins un)'; $strSelectNumRows = 'dans la requête'; $strSelectTables = 'Choisissez les tables'; @@ -623,7 +642,8 @@ $strSubmit = 'Exécuter'; $strSuccess = 'Votre requête SQL a été exécutée avec succès'; $strSum = 'Somme'; $strSwedish = 'suédois'; -$strSwitchToTable = 'Se rendre à la table copiée'; +$strSwitchToDatabase = 'Aller à la base de données copiée'; +$strSwitchToTable = 'Aller à la table copiée'; $strTable = 'Table'; $strTableComments = 'Commentaires sur la table'; @@ -723,21 +743,8 @@ $strYes = 'Oui'; $strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enlève la limite.'; $strZip = '"zippé"'; -$strBinLogName = 'Log name'; //to translate -$strBinLogPosition = 'Position'; //to translate -$strBinLogEventType = 'Event type'; //to translate -$strBinLogServerId = 'Server ID'; //to translate -$strBinLogOriginalPosition = 'Original position'; //to translate -$strBinLogInfo = 'Information'; //to translate -$strBinaryLog = 'Binary log'; //to translate -$strSelectBinaryLog = 'Select binary log to view'; //to translate -$strDBCopy = 'Copy database to'; //to translate -$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate -$strSwitchToDatabase = 'Switch to copied database'; //to translate -$strPasswordHashing = 'Password Hashing'; //to translate -$strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate -$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate -$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/galician-iso-8859-1.inc.php b/lang/galician-iso-8859-1.inc.php index 7f4631139..72615cf54 100644 --- a/lang/galician-iso-8859-1.inc.php +++ b/lang/galician-iso-8859-1.inc.php @@ -61,6 +61,7 @@ $strAnd = 'E'; $strAny = 'Calquer'; $strAnyHost = 'Calquer servidor'; $strAnyUser = 'Calquer usuario'; +$strApproximateCount = 'Pode ser aproximado. Consulte a FAQ 3.11'; $strArabic = 'rabe'; $strArmenian = 'Armenio'; $strAscending = 'Ascendente'; @@ -74,8 +75,15 @@ $strBack = 'Voltar'; $strBaltic = 'Bltico'; $strBeginCut = 'COMEZA O RECORTE'; $strBeginRaw = 'COMEZA O TEXTO SIMPLE ("RAW")'; +$strBinLogEventType = 'Tipo de evento'; +$strBinLogInfo = 'Informacin'; +$strBinLogName = 'Nome do ficheiro de rexistro'; +$strBinLogOriginalPosition = 'Posicin orixinal'; +$strBinLogPosition = 'Posicin'; +$strBinLogServerId = 'ID do servidor'; $strBinary = ' Binario '; $strBinaryDoNotEdit = ' Binario - non editar '; +$strBinaryLog = 'Ficheiro de rexistro binario'; $strBookmarkAllUsers = 'Permitir que calquer usuario poida acceder a este marcador'; $strBookmarkDeleted = 'Eliminouse o marcador.'; $strBookmarkLabel = 'Nome'; @@ -127,6 +135,7 @@ $strColumnPrivileges = 'Privilexios proprios de columna'; $strCommand = 'Comando'; $strComments = 'Comentarios'; $strCommentsForTable = 'COMENTARIOS PARA A TABELA'; +$strCompatibleHashing = 'Compatbel co MySQL 4.0'; $strCompleteInserts = 'Insercins completas'; $strCompression = 'Compresin'; $strConfigFileError = 'phpMyAdmin non puido ler o seu ficheiro de configuracin
Isto podera deberse a que php atopou un erro nel ou a que php non puido atopar o ficheiro.
Invoque o ficheiro de configuracin directamente mediante o vnculo que hai mis abaixo e lea a mensaxe de erro de php que receba. Na maiora dos casos simplesmente faltan unha aspa ou un ponto e vrcula
Se recebe unha pxina en branco que todo est ben.'; @@ -136,6 +145,7 @@ $strConnections = 'Conexi $strConstraintsForDumped = 'Limitacins para os volcados das tabelas'; $strConstraintsForTable = 'Limitacins para a tabela'; $strCookiesRequired = 'A partir de aqui debe permitir cookies.'; +$strCopyDatabaseOK = 'A base de dastos %s copiouse para %s'; $strCopyTable = 'Copiar a tabela a (base_de_datos.tabela):'; $strCopyTableOK = 'Tabela \$table copiada para \$new_name.'; $strCopyTableSameNames = 'Non se pode copiar unha tabela sobre si mesma'; @@ -143,7 +153,7 @@ $strCouldNotKill = 'phpMyAdmin foi incapaz de finalizar o f $strCreate = 'Crear'; $strCreateIndex = 'Crear un ndice en %s colunas'; $strCreateIndexTopic = 'Crear un novo ndice'; -$strCreateNewDatabase = 'Crear un novo banco de datos'; +$strCreateNewDatabase = 'Crear unha nova base de datos'; $strCreateNewTable = 'Crear unha tabela nova na base de datos %s'; $strCreatePage = 'Crear unha pxina nova'; $strCreatePdfFeat = 'Creacin de PDFs'; @@ -155,6 +165,7 @@ $strCzech = 'Checo'; $strCzechSlovak = 'Checo-eslovaco'; $strDBComment = 'Comentario da base de datos: '; +$strDBCopy = 'Copiar a base de datos para'; $strDBGContext = 'Contexto'; $strDBGContextID = 'ID do contexto'; $strDBGHits = 'Hits'; @@ -176,7 +187,7 @@ $strDatabaseHasBeenDropped = 'A base de datos %s foi eliminada.'; $strDatabaseNoTable = 'Esta base de datos non contn nengunha tabela'; $strDatabases = 'Bancos de Datos'; $strDatabasesDropped = 'Eliminronse %s bases de datos sen problemas.'; -$strDatabasesStats = 'Estatsticas dos bancos de datos'; +$strDatabasesStats = 'Estatsticas das bases de datos'; $strDatabasesStatsDisable = 'Deshabilitar as estatsticas'; $strDatabasesStatsEnable = 'Habilitar as estatsticas'; $strDatabasesStatsHeavyTraffic = 'Nota: De habilitar as estatsticas da base de datos, ocasionar que se produza un trfico denso entre o servidor web e o de MySQL.'; @@ -227,6 +238,7 @@ $strEndRaw = 'FIN DO TEXTO SIMPLE ("RAW")'; $strEnglish = 'Inglés'; $strEnglishPrivileges = ' Nota: os nomes de privilexios do MySQL estn en ingls'; $strError = 'Erro'; +$strEscapeWildcards = 'Os caracteres comodn _ e % deberanse escapar con \ para podelos usar literalmente'; $strEstonian = 'Estonio'; $strExcelEdition = 'Edicin mediante MS-Excel'; $strExcelOptions = 'Opcins de Excel'; @@ -296,6 +308,10 @@ $strIndex = ' $strIndexHasBeenDropped = 'Eliminouse o ndice %s'; $strIndexName = 'Nome do ndice :'; $strIndexType = 'Tipo de ndice :'; +$strIndexWarningMultiple = 'Creouse mis dunha chave %s para a columna `%s`'; +$strIndexWarningPrimary = 'Non se lle deberan asignar ambas as das chaves PRIMARY e INDEX columna `%s`'; +$strIndexWarningTable = 'Problemas cos ndices da tabela `%s`'; +$strIndexWarningUnique = 'Non se lle deberan asignar ambas as das chaves UNIQUE e INDEX columna `%s`'; $strIndexes = 'ndices'; $strInnodbStat = 'Estado de InnoDB'; $strInsecureMySQL = 'O seu ficheiro de configuracin contn axustes (en concreto, o usurio root non ten contrasinal) que corresponden coa conta con todos os privilexios que MySQL fai por omisin. O seu servidor de MySQL est a rodar con esta configuracin, est aberto a intrusins e habera que mirar de solucionar este problema de seguranza.'; @@ -306,7 +322,7 @@ $strInsertNewRow = 'Inserir un novo rexistro'; $strInsertTextfiles = 'Inserir un arquivo de texto na tabela'; $strInsertedRowId = 'Identificador da fila inserida:'; $strInsertedRows = 'Filas inseridas:'; -$strInstructions = 'Instruccins'; +$strInstructions = 'Instrucins'; $strInternalNotNecessary = '* Non se precisa dunha relacin interna cando existe tamn en InnoDB.'; $strInternalRelations = 'Relacins internas'; @@ -383,10 +399,11 @@ $strName = 'Nome'; $strNeedPrimaryKey = 'Deberia definir unha chave primaria para esta tabela.'; $strNext = 'Seguinte'; $strNo = 'Non'; -$strNoDatabases = 'Non hai nengn banco de datos'; +$strNoActivity = 'Non se rexistrou actividade algunha desde hai %s segundos ou mis. Ter que entrar de novo'; +$strNoDatabases = 'Non hai nengunha base de datos'; $strNoDatabasesSelected = 'Non hai nengunha base de datos seleccionada.'; $strNoDescription = 'sen descricin'; -$strNoDropDatabases = 'Os comandos "Eliminar banco de datos" non estn permitidos.'; +$strNoDropDatabases = 'Os comandos "Eliminar a base de datos" non estn permitidos.'; $strNoExplain = 'Saltar a explicacion de SQL'; $strNoFrames = 'phpMyAdmin usa-se mellor cun navegador que acepte molduras.'; $strNoIndex = 'Non se definiu un ndice'; @@ -401,7 +418,7 @@ $strNoQuery = 'Non hai procura SQL!'; $strNoRights = 'Non ten direitos suficientes para estar aqu agora!'; $strNoRowsSelected = 'Non hai fileiras seleccionadas'; $strNoSpace = 'Non hai espacio para gardar o ficheiro %s.'; -$strNoTablesFound = 'Non se achou nengunha tabela no banco de datos'; +$strNoTablesFound = 'Non se achou nengunha tabela na base de datos'; $strNoThemeSupport = 'Non ten a funcionalidade dos temas. Comprobe a configuracin e/ou os seus temas no directorio %s.'; $strNoUsersFound = 'Non se achou nengun(s) usuario(s).'; $strNoValidateSQL = 'Saltarse a validacion de'; @@ -434,6 +451,7 @@ $strPartialText = 'Textos parciais'; $strPassword = 'Contrasinal'; $strPasswordChanged = 'Modificou-se sen problemas o contrasinal de %s.'; $strPasswordEmpty = 'O contrasinal est vaco!'; +$strPasswordHashing = 'Hash do contrasinal'; $strPasswordNotSame = 'Os contrasinais non son os mesmos!'; $strPdfDbSchema = 'Esquema da base de datos "%s" - Pxina %s'; $strPdfInvalidTblName = 'Non existe a tabela "%s".'; @@ -495,7 +513,7 @@ $strQBE = 'Procurar pondo un exemplo ("QBE")'; $strQBEDel = 'Eliminar'; $strQBEIns = 'Inserir'; $strQueryFrame = 'Xanela de procuras'; -$strQueryOnDb = 'Procura tipo SQL no banco de datos %s:'; +$strQueryOnDb = 'Procura tipo SQL na base de datos %s:'; $strQuerySQLHistory = 'Historial de SQL'; $strQueryStatistics = 'Estatstica das procuras: Desde que se iniciou, environselle ao servidor %s procuras.'; $strQueryTime = 'A pesquisa levou %01.4f segundos'; @@ -570,6 +588,7 @@ $strSearchType = 'Atopar:'; $strSecretRequired = 'O ficheiro de configuracin agora necesita un contrasinal secreto (blowfish_secret).'; $strSelectADb = 'Seleccione unha base de dados'; $strSelectAll = 'Seleccionar todo'; +$strSelectBinaryLog = 'Seleccione o ficheiro de rexistro binario que quer ver'; $strSelectFields = 'Seleccione os campos (mnimo 1)'; $strSelectNumRows = 'a procurar'; $strSelectTables = 'Seleccionar tabelas'; @@ -614,17 +633,18 @@ $strStatUpdateTime = 'Actualizaci $strStatement = 'Informacins'; $strStatus = 'Estado'; $strStrucCSV = 'Datos CSV'; -$strStrucData = 'Estructura e datos'; +$strStrucData = 'Estrutura e datos'; $strStrucDrop = 'Adicionar \'Eliminar tabela anterior se existe\''; $strStrucExcelCSV = 'CSV (para datos de MS Excel)'; $strStrucNativeExcel = 'Datos nativos de MS Excel'; -$strStrucOnly = 'S a estructura'; -$strStructPropose = 'Propor unha estructura para a tabela'; -$strStructure = 'Estructura'; +$strStrucOnly = 'S a estrutura'; +$strStructPropose = 'Propor unha estrutura para a tabela'; +$strStructure = 'Estrutura'; $strSubmit = 'Submeter'; $strSuccess = 'O seu comando de SQL executou-se com xito'; $strSum = 'Suma'; $strSwedish = 'Sueco'; +$strSwitchToDatabase = 'Pasar base de datos copiada'; $strSwitchToTable = 'Ir ? tabela copiada'; $strTable = 'Tabela'; @@ -636,7 +656,7 @@ $strTableHasBeenFlushed = 'Fechouse a tabela %s'; $strTableMaintenance = 'Tabela de manutencin'; $strTableOfContents = 'Table of contents'; $strTableOptions = 'Opcins de tabela'; -$strTableStructure = 'Estructura da tabela'; +$strTableStructure = 'Estrutura da tabela'; $strTableType = 'Tipo da tabela'; $strTables = '%s tabela(s)'; $strTakeIt = 'colle-o'; @@ -686,6 +706,7 @@ $strUpgrade = 'Deberia actualizar a %s %s ou posterior.'; $strUsage = 'Uso'; $strUseBackquotes = 'Protexer os nomes das tabelas e dos campos con " ` "'; $strUseHostTable = 'Usar a tabela de Host'; +$strUseTabKey = 'Use a tecla do tabulador para moverse de valor en valor ou a tecla CONTROL combinada cunha flecha para moverse a calquer sitio'; $strUseTables = 'Usar as tabelas'; $strUseTextField = 'Use campo de texto'; $strUseThisValue = 'Usar este valor'; @@ -703,7 +724,7 @@ $strValidatorError = 'Non foi posible iniciar o comprobador de SQL. Comprobe que $strValue = 'Valor'; $strVar = 'Variable'; $strViewDump = 'Ver o esquema do volcado da tabela'; -$strViewDumpDB = 'Ver o esquema do volcado do banco de datos'; +$strViewDumpDB = 'Ver o esquema do volcado da base de datos'; $strViewDumpDatabases = 'Ver o volcado das bases de datos'; $strWebServerUploadDirectory = 'directorio de subida (upload) do servidor web'; @@ -724,23 +745,8 @@ $strYes = 'Si'; $strZeroRemovesTheLimit = 'Nota: Se estas opcins se configuran como 0 (cero) elimina-se o limite.'; $strZip = 'comprimido no formato "zip"'; -$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate -$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate -$strBinLogName = 'Log name'; //to translate -$strBinLogPosition = 'Position'; //to translate -$strBinLogEventType = 'Event type'; //to translate -$strBinLogServerId = 'Server ID'; //to translate -$strBinLogOriginalPosition = 'Original position'; //to translate -$strBinLogInfo = 'Information'; //to translate -$strBinaryLog = 'Binary log'; //to translate -$strSelectBinaryLog = 'Select binary log to view'; //to translate -$strDBCopy = 'Copy database to'; //to translate -$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate -$strSwitchToDatabase = 'Switch to copied database'; //to translate -$strPasswordHashing = 'Password Hashing'; //to translate -$strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate -$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate -$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/galician-utf-8.inc.php b/lang/galician-utf-8.inc.php index c93f53275..e3c946052 100644 --- a/lang/galician-utf-8.inc.php +++ b/lang/galician-utf-8.inc.php @@ -62,6 +62,7 @@ $strAnd = 'E'; $strAny = 'Calquer'; $strAnyHost = 'Calquer servidor'; $strAnyUser = 'Calquer usuario'; +$strApproximateCount = 'Pode ser aproximado. Consulte a FAQ 3.11'; $strArabic = 'Árabe'; $strArmenian = 'Armenio'; $strAscending = 'Ascendente'; @@ -75,8 +76,15 @@ $strBack = 'Voltar'; $strBaltic = 'Báltico'; $strBeginCut = 'COMEZA O RECORTE'; $strBeginRaw = 'COMEZA O TEXTO SIMPLE ("RAW")'; +$strBinLogEventType = 'Tipo de evento'; +$strBinLogInfo = 'Información'; +$strBinLogName = 'Nome do ficheiro de rexistro'; +$strBinLogOriginalPosition = 'Posición orixinal'; +$strBinLogPosition = 'Posición'; +$strBinLogServerId = 'ID do servidor'; $strBinary = ' Binario '; $strBinaryDoNotEdit = ' Binario - non editar '; +$strBinaryLog = 'Ficheiro de rexistro binario'; $strBookmarkAllUsers = 'Permitir que calquer usuario poida acceder a este marcador'; $strBookmarkDeleted = 'Eliminouse o marcador.'; $strBookmarkLabel = 'Nome'; @@ -128,6 +136,7 @@ $strColumnPrivileges = 'Privilexios proprios de columna'; $strCommand = 'Comando'; $strComments = 'Comentarios'; $strCommentsForTable = 'COMENTARIOS PARA A TABELA'; +$strCompatibleHashing = 'Compatíbel co MySQL 4.0'; $strCompleteInserts = 'Insercións completas'; $strCompression = 'Compresión'; $strConfigFileError = 'phpMyAdmin non puido ler o seu ficheiro de configuración
Isto podería deberse a que php atopou un erro nel ou a que php non puido atopar o ficheiro.
Invoque o ficheiro de configuración directamente mediante o vínculo que hai máis abaixo e lea a mensaxe de erro de php que receba. Na maioría dos casos simplesmente faltan unha aspa ou un ponto e vírcula
Se recebe unha páxina en branco é que todo está ben.'; @@ -137,6 +146,7 @@ $strConnections = 'Conexións'; $strConstraintsForDumped = 'Limitacións para os volcados das tabelas'; $strConstraintsForTable = 'Limitacións para a tabela'; $strCookiesRequired = 'A partir de aqui debe permitir cookies.'; +$strCopyDatabaseOK = 'A base de dastos %s copiouse para %s'; $strCopyTable = 'Copiar a tabela a (base_de_datos.tabela):'; $strCopyTableOK = 'Tabela \$table copiada para \$new_name.'; $strCopyTableSameNames = 'Non se pode copiar unha tabela sobre si mesma'; @@ -144,7 +154,7 @@ $strCouldNotKill = 'phpMyAdmin foi incapaz de finalizar o fío %s. Probablement $strCreate = 'Crear'; $strCreateIndex = 'Crear un índice en %s colunas'; $strCreateIndexTopic = 'Crear un novo índice'; -$strCreateNewDatabase = 'Crear un novo banco de datos'; +$strCreateNewDatabase = 'Crear unha nova base de datos'; $strCreateNewTable = 'Crear unha tabela nova na base de datos %s'; $strCreatePage = 'Crear unha páxina nova'; $strCreatePdfFeat = 'Creación de PDFs'; @@ -156,6 +166,7 @@ $strCzech = 'Checo'; $strCzechSlovak = 'Checo-eslovaco'; $strDBComment = 'Comentario da base de datos: '; +$strDBCopy = 'Copiar a base de datos para'; $strDBGContext = 'Contexto'; $strDBGContextID = 'ID do contexto'; $strDBGHits = 'Hits'; @@ -177,7 +188,7 @@ $strDatabaseHasBeenDropped = 'A base de datos %s foi eliminada.'; $strDatabaseNoTable = 'Esta base de datos non contén nengunha tabela'; $strDatabases = 'Bancos de Datos'; $strDatabasesDropped = 'Elimináronse %s bases de datos sen problemas.'; -$strDatabasesStats = 'Estatísticas dos bancos de datos'; +$strDatabasesStats = 'Estatísticas das bases de datos'; $strDatabasesStatsDisable = 'Deshabilitar as estatísticas'; $strDatabasesStatsEnable = 'Habilitar as estatísticas'; $strDatabasesStatsHeavyTraffic = 'Nota: De habilitar as estatísticas da base de datos, ocasionará que se produza un tráfico denso entre o servidor web e o de MySQL.'; @@ -228,6 +239,7 @@ $strEndRaw = 'FIN DO TEXTO SIMPLE ("RAW")'; $strEnglish = 'Inglés'; $strEnglishPrivileges = ' Nota: os nomes de privilexios do MySQL están en inglés'; $strError = 'Erro'; +$strEscapeWildcards = 'Os caracteres comodín _ e % deberíanse escapar con \ para podelos usar literalmente'; $strEstonian = 'Estonio'; $strExcelEdition = 'Edición mediante MS-Excel'; $strExcelOptions = 'Opcións de Excel'; @@ -297,6 +309,10 @@ $strIndex = 'Índice'; $strIndexHasBeenDropped = 'Eliminouse o índice %s'; $strIndexName = 'Nome do índice :'; $strIndexType = 'Tipo de índice :'; +$strIndexWarningMultiple = 'Creouse máis dunha chave %s para a columna `%s`'; +$strIndexWarningPrimary = 'Non se lle deberían asignar ambas as dúas chaves PRIMARY e INDEX á columna `%s`'; +$strIndexWarningTable = 'Problemas cos índices da tabela `%s`'; +$strIndexWarningUnique = 'Non se lle deberían asignar ambas as dúas chaves UNIQUE e INDEX á columna `%s`'; $strIndexes = 'Índices'; $strInnodbStat = 'Estado de InnoDB'; $strInsecureMySQL = 'O seu ficheiro de configuración contén axustes (en concreto, o usuário root non ten contrasinal) que corresponden coa conta con todos os privilexios que MySQL fai por omisión. O seu servidor de MySQL está a rodar con esta configuración, está aberto a intrusións e habería que mirar de solucionar este problema de seguranza.'; @@ -307,7 +323,7 @@ $strInsertNewRow = 'Inserir un novo rexistro'; $strInsertTextfiles = 'Inserir un arquivo de texto na tabela'; $strInsertedRowId = 'Identificador da fila inserida:'; $strInsertedRows = 'Filas inseridas:'; -$strInstructions = 'Instruccións'; +$strInstructions = 'Instrucións'; $strInternalNotNecessary = '* Non se precisa dunha relación interna cando existe tamén en InnoDB.'; $strInternalRelations = 'Relacións internas'; @@ -384,10 +400,11 @@ $strName = 'Nome'; $strNeedPrimaryKey = 'Deberia definir unha chave primaria para esta tabela.'; $strNext = 'Seguinte'; $strNo = 'Non'; -$strNoDatabases = 'Non hai nengún banco de datos'; +$strNoActivity = 'Non se rexistrou actividade algunha desde hai %s segundos ou máis. Terá que entrar de novo'; +$strNoDatabases = 'Non hai nengunha base de datos'; $strNoDatabasesSelected = 'Non hai nengunha base de datos seleccionada.'; $strNoDescription = 'sen descrición'; -$strNoDropDatabases = 'Os comandos "Eliminar banco de datos" non están permitidos.'; +$strNoDropDatabases = 'Os comandos "Eliminar a base de datos" non están permitidos.'; $strNoExplain = 'Saltar a explicacion de SQL'; $strNoFrames = 'phpMyAdmin usa-se mellor cun navegador que acepte molduras.'; $strNoIndex = 'Non se definiu un índice'; @@ -402,7 +419,7 @@ $strNoQuery = 'Non hai procura SQL!'; $strNoRights = 'Non ten direitos suficientes para estar aquí agora!'; $strNoRowsSelected = 'Non hai fileiras seleccionadas'; $strNoSpace = 'Non hai espacio para gardar o ficheiro %s.'; -$strNoTablesFound = 'Non se achou nengunha tabela no banco de datos'; +$strNoTablesFound = 'Non se achou nengunha tabela na base de datos'; $strNoThemeSupport = 'Non ten a funcionalidade dos temas. Comprobe a configuración e/ou os seus temas no directorio %s.'; $strNoUsersFound = 'Non se achou nengun(s) usuario(s).'; $strNoValidateSQL = 'Saltarse a validacion de'; @@ -435,6 +452,7 @@ $strPartialText = 'Textos parciais'; $strPassword = 'Contrasinal'; $strPasswordChanged = 'Modificou-se sen problemas o contrasinal de %s.'; $strPasswordEmpty = 'O contrasinal está vacío!'; +$strPasswordHashing = 'Hash do contrasinal'; $strPasswordNotSame = 'Os contrasinais non son os mesmos!'; $strPdfDbSchema = 'Esquema da base de datos "%s" - Páxina %s'; $strPdfInvalidTblName = 'Non existe a tabela "%s".'; @@ -496,7 +514,7 @@ $strQBE = 'Procurar pondo un exemplo ("QBE")'; $strQBEDel = 'Eliminar'; $strQBEIns = 'Inserir'; $strQueryFrame = 'Xanela de procuras'; -$strQueryOnDb = 'Procura tipo SQL no banco de datos %s:'; +$strQueryOnDb = 'Procura tipo SQL na base de datos %s:'; $strQuerySQLHistory = 'Historial de SQL'; $strQueryStatistics = 'Estatística das procuras: Desde que se iniciou, enviáronselle ao servidor %s procuras.'; $strQueryTime = 'A pesquisa levou %01.4f segundos'; @@ -571,6 +589,7 @@ $strSearchType = 'Atopar:'; $strSecretRequired = 'O ficheiro de configuración agora necesita un contrasinal secreto (blowfish_secret).'; $strSelectADb = 'Seleccione unha base de dados'; $strSelectAll = 'Seleccionar todo'; +$strSelectBinaryLog = 'Seleccione o ficheiro de rexistro binario que quer ver'; $strSelectFields = 'Seleccione os campos (mínimo 1)'; $strSelectNumRows = 'a procurar'; $strSelectTables = 'Seleccionar tabelas'; @@ -615,17 +634,18 @@ $strStatUpdateTime = 'Actualización máis recente'; $strStatement = 'Informacións'; $strStatus = 'Estado'; $strStrucCSV = 'Datos CSV'; -$strStrucData = 'Estructura e datos'; +$strStrucData = 'Estrutura e datos'; $strStrucDrop = 'Adicionar \'Eliminar tabela anterior se existe\''; $strStrucExcelCSV = 'CSV (para datos de MS Excel)'; $strStrucNativeExcel = 'Datos nativos de MS Excel'; -$strStrucOnly = 'Só a estructura'; -$strStructPropose = 'Propor unha estructura para a tabela'; -$strStructure = 'Estructura'; +$strStrucOnly = 'Só a estrutura'; +$strStructPropose = 'Propor unha estrutura para a tabela'; +$strStructure = 'Estrutura'; $strSubmit = 'Submeter'; $strSuccess = 'O seu comando de SQL executou-se com éxito'; $strSum = 'Suma'; $strSwedish = 'Sueco'; +$strSwitchToDatabase = 'Pasar á base de datos copiada'; $strSwitchToTable = 'Ir ? tabela copiada'; $strTable = 'Tabela'; @@ -637,7 +657,7 @@ $strTableHasBeenFlushed = 'Fechouse a tabela %s'; $strTableMaintenance = 'Tabela de manutención'; $strTableOfContents = 'Table of contents'; $strTableOptions = 'Opcións de tabela'; -$strTableStructure = 'Estructura da tabela'; +$strTableStructure = 'Estrutura da tabela'; $strTableType = 'Tipo da tabela'; $strTables = '%s tabela(s)'; $strTakeIt = 'colle-o'; @@ -687,6 +707,7 @@ $strUpgrade = 'Deberia actualizar a %s %s ou posterior.'; $strUsage = 'Uso'; $strUseBackquotes = 'Protexer os nomes das tabelas e dos campos con " ` "'; $strUseHostTable = 'Usar a tabela de Host'; +$strUseTabKey = 'Use a tecla do tabulador para moverse de valor en valor ou a tecla CONTROL combinada cunha flecha para moverse a calquer sitio'; $strUseTables = 'Usar as tabelas'; $strUseTextField = 'Use campo de texto'; $strUseThisValue = 'Usar este valor'; @@ -704,7 +725,7 @@ $strValidatorError = 'Non foi posible iniciar o comprobador de SQL. Comprobe que $strValue = 'Valor'; $strVar = 'Variable'; $strViewDump = 'Ver o esquema do volcado da tabela'; -$strViewDumpDB = 'Ver o esquema do volcado do banco de datos'; +$strViewDumpDB = 'Ver o esquema do volcado da base de datos'; $strViewDumpDatabases = 'Ver o volcado das bases de datos'; $strWebServerUploadDirectory = 'directorio de subida (upload) do servidor web'; @@ -725,23 +746,8 @@ $strYes = 'Si'; $strZeroRemovesTheLimit = 'Nota: Se estas opcións se configuran como 0 (cero) elimina-se o limite.'; $strZip = 'comprimido no formato "zip"'; -$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate -$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate -$strBinLogName = 'Log name'; //to translate -$strBinLogPosition = 'Position'; //to translate -$strBinLogEventType = 'Event type'; //to translate -$strBinLogServerId = 'Server ID'; //to translate -$strBinLogOriginalPosition = 'Original position'; //to translate -$strBinLogInfo = 'Information'; //to translate -$strBinaryLog = 'Binary log'; //to translate -$strSelectBinaryLog = 'Select binary log to view'; //to translate -$strDBCopy = 'Copy database to'; //to translate -$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate -$strSwitchToDatabase = 'Switch to copied database'; //to translate -$strPasswordHashing = 'Password Hashing'; //to translate -$strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate -$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate -$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/georgian-utf-8.inc.php b/lang/georgian-utf-8.inc.php index f1b926343..47ecc5146 100644 --- a/lang/georgian-utf-8.inc.php +++ b/lang/georgian-utf-8.inc.php @@ -767,4 +767,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/german-iso-8859-1.inc.php b/lang/german-iso-8859-1.inc.php index 4ba3349d9..56993854a 100644 --- a/lang/german-iso-8859-1.inc.php +++ b/lang/german-iso-8859-1.inc.php @@ -746,4 +746,10 @@ $strIndexWarningPrimary = 'INDEX und PRIMARY Index-Typen sollten nicht gleichzei $strIndexWarningUnique = 'INDEX und UNIQUE Index-Typen sollten nicht gleichzeitig fr die Spalte `%s` gesetzt sein'; $strIndexWarningMultiple = 'Es sollte nicht mehr als ein Index des Typs %s fr die Spalte `%s` gesetzt sein'; $strIndexWarningTable = 'Warnungen bei den Indizen der Tabelle `%s`'; +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/german-utf-8.inc.php b/lang/german-utf-8.inc.php index a66256768..3cde918c0 100644 --- a/lang/german-utf-8.inc.php +++ b/lang/german-utf-8.inc.php @@ -747,4 +747,10 @@ $strIndexWarningPrimary = 'INDEX und PRIMARY Index-Typen sollten nicht gleichzei $strIndexWarningUnique = 'INDEX und UNIQUE Index-Typen sollten nicht gleichzeitig für die Spalte `%s` gesetzt sein'; $strIndexWarningMultiple = 'Es sollte nicht mehr als ein Index des Typs %s für die Spalte `%s` gesetzt sein'; $strIndexWarningTable = 'Warnungen bei den Indizen der Tabelle `%s`'; +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/greek-iso-8859-7.inc.php b/lang/greek-iso-8859-7.inc.php index cf3e0a70f..ac05537d4 100644 --- a/lang/greek-iso-8859-7.inc.php +++ b/lang/greek-iso-8859-7.inc.php @@ -747,4 +747,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/greek-utf-8.inc.php b/lang/greek-utf-8.inc.php index 0ffd94aab..3a735b76b 100644 --- a/lang/greek-utf-8.inc.php +++ b/lang/greek-utf-8.inc.php @@ -748,4 +748,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/hebrew-iso-8859-8-i.inc.php b/lang/hebrew-iso-8859-8-i.inc.php index fde0b33dd..5fcbb9e8f 100644 --- a/lang/hebrew-iso-8859-8-i.inc.php +++ b/lang/hebrew-iso-8859-8-i.inc.php @@ -763,4 +763,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/hebrew-utf-8.inc.php b/lang/hebrew-utf-8.inc.php index fe79b9ed5..69ec7e7c5 100644 --- a/lang/hebrew-utf-8.inc.php +++ b/lang/hebrew-utf-8.inc.php @@ -764,4 +764,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/hindi-utf-8.inc.php b/lang/hindi-utf-8.inc.php index 59fcc413b..354b2fd50 100644 --- a/lang/hindi-utf-8.inc.php +++ b/lang/hindi-utf-8.inc.php @@ -771,4 +771,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/hungarian-iso-8859-2.inc.php b/lang/hungarian-iso-8859-2.inc.php index 493d24462..93e366e1d 100644 --- a/lang/hungarian-iso-8859-2.inc.php +++ b/lang/hungarian-iso-8859-2.inc.php @@ -745,4 +745,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/hungarian-utf-8.inc.php b/lang/hungarian-utf-8.inc.php index 2af11e7e8..ebfc38c88 100644 --- a/lang/hungarian-utf-8.inc.php +++ b/lang/hungarian-utf-8.inc.php @@ -746,4 +746,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/indonesian-iso-8859-1.inc.php b/lang/indonesian-iso-8859-1.inc.php index f4f09e376..9878d2ffe 100644 --- a/lang/indonesian-iso-8859-1.inc.php +++ b/lang/indonesian-iso-8859-1.inc.php @@ -18,7 +18,7 @@ $datefmt = '%d. %B %Y jam %H:%M'; $timespanfmt = '%s hari, %s jam, %s menit dan %s detik'; $strAPrimaryKey = 'Primary key telah ditambahkan pada %s'; -$strAbortedClients = 'Dibatalkan'; +$strAbortedClients = 'Pembatalan'; $strAbsolutePathToDocSqlDir = 'Silakan menentukan Absolute Path pada webserver yang menunjuk ke direktori docSQL'; $strAccessDenied = 'Akses ditolak'; $strAccessDeniedExplanation = 'phpMyAdmin telah berusaha untuk membuka koneksi ke server MySQL tetapi koneksi ditolak oleh server. Silakan periksa kembali nama host, nama pengguna dan kata sandi pada file config.inc.php untuk memastikan kecocokannya dengan informasi yang telah diberikan oleh administrator server MySQL.'; @@ -28,9 +28,10 @@ $strAddConstraints = 'Menambahkan pembatas'; $strAddDeleteColumn = 'Menambahkan/Hapus kolom'; $strAddDeleteRow = 'Menambahkan/Hapus baris'; $strAddDropDatabase = 'Menambahkan DROP DATABASE'; -$strAddHeaderComment = 'Menambahkan komentar sendiri pada Header (\\n membelahkan garis)'; -$strAddIfNotExists = 'Menambahkan IF NOT EXISTS'; -$strAddIntoComments = 'Menambahkan pada komentar'; +$strAddFields = 'Menambahkan %s field(s)'; +$strAddHeaderComment = 'Menambahkan komentar individual pada Header (\\n membelahkan garis)'; +$strAddIfNotExists = 'Berikut IF \'NOT EXISTS\''; +$strAddIntoComments = 'Penambahkan pada komentar:'; $strAddNewField = 'Menambahkan field baru'; $strAddPrivilegesOnDb = 'Menambahkan hak (privileges) pada database berikut'; $strAddPrivilegesOnTbl = 'Menambahkan hak (privileges) pada tabel berikut'; @@ -42,9 +43,9 @@ $strAddedColumnComment = 'Komentar untuk kolum telah ditambahkan'; $strAddedColumnRelation = 'Relasi untuk kolum telah ditambahkan'; $strAdministration = 'Administrasi'; $strAffectedRows = 'Baris yang terlibat:'; -$strAfter = 'Sisipkan setelah %s'; -$strAfterInsertBack = 'Kembali'; -$strAfterInsertNewInsert = 'Sisipkan baris baru'; +$strAfter = 'sisipkan setelah %s'; +$strAfterInsertBack = 'kembali'; +$strAfterInsertNewInsert = 'sisipkan baris baru berikutnya'; $strAfterInsertSame = 'Kembali ke halaman ini'; $strAll = 'Semua'; $strAllTableSameWidth = 'Tampilkan seluruh tabel dengan lebar yang sama?'; @@ -54,7 +55,8 @@ $strAnalyzeTable = 'Analisa tabel'; $strAnd = 'dan'; $strAny = 'Setiap'; $strAnyHost = 'Setiap host'; -$strAnyUser = 'Setiap pemakai'; +$strAnyUser = 'Setiap pengguna'; +$strApproximateCount = 'Kemungkinan hanya perkiraan saja. Lihat FAQ 3.11'; $strArabic = 'Bahasa Arab'; $strArmenian = 'Bahasa Armenia'; $strAscending = 'Urutan menaik'; @@ -68,14 +70,21 @@ $strBack = 'Kembali'; $strBaltic = 'Bahasa Baltik'; $strBeginCut = 'Mulai potong (CUT)'; $strBeginRaw = 'MULAI mentah (RAW)'; +$strBinLogEventType = 'Tipe Kejadian'; +$strBinLogInfo = 'Informasi'; +$strBinLogName = 'Catat nama'; +$strBinLogOriginalPosition = 'Posisi aslinya'; +$strBinLogPosition = 'Posisi'; +$strBinLogServerId = 'ID Server'; $strBinary = 'Binari'; $strBinaryDoNotEdit = 'Binari - jangan di-edit'; -$strBookmarkAllUsers = 'Izinkan kepada seluruh pemakai untuk mengakses Bookmark ini'; -$strBookmarkDeleted = 'Bookmark telah dihapus.'; +$strBinaryLog = 'Log binari'; +$strBookmarkAllUsers = 'Izinkan semua pengguna untuk mengakses simpanan ini'; +$strBookmarkDeleted = 'Penyimpanan telah dihapus.'; $strBookmarkLabel = 'Judul'; -$strBookmarkOptions = 'Pilihan untuk Bookmark'; -$strBookmarkQuery = 'Bookmark query SQL '; -$strBookmarkThis = 'Bookmark SQL-query ini'; +$strBookmarkOptions = 'Pilihan untuk simpan'; +$strBookmarkQuery = 'Ingat pada pencarian SQL '; +$strBookmarkThis = 'Simpan pencarian SQL ini'; $strBookmarkView = 'Hanya melihat'; $strBrowse = 'Browse'; $strBrowseForeignValues = 'Menjelajahi nilai luar'; @@ -90,38 +99,39 @@ $strCantLoad = 'gagal loading ekstensi %s,
mohon periksa kembali konfiguras $strCantLoadRecodeIconv = 'Gagal loading iconv atau perubahan kode extension untuk konversi charset diperlukan. Silakan konfigurasikan php untuk menggunakan extensions yang diperlukan atau matikan fasilitas konversi Charset pada phpMyAdmin.'; $strCantRenameIdxToPrimary = 'Gagal ubah nama Indeks ke PRIMARY!'; $strCantUseRecodeIconv = 'Gagal menggunakan iconv, libiconv atau fungsi recode_string selama ekstensi masih dalam keadaan di-load. Periksa kembali konfigurasi PHP.'; -$strCardinality = 'Huruf besar atau kecil'; +$strCardinality = 'Bilangan Pokok'; $strCarriage = 'Di baris baru: \\r'; $strCaseInsensitive = 'peka terhadap huruf besar/kecil'; $strCaseSensitive = 'tidak peka terhadap huruf besar/kecil'; $strCentralEuropean = 'Eropa Tengah'; $strChange = 'Ubah'; -$strChangeCopyMode = 'Ciptakan pemakai baru dengan hak-hak yang sama dan ...'; +$strChangeCopyMode = 'Ciptakan pengguna baru dengan hak-hak yang sama dan ...'; $strChangeCopyModeCopy = '... mempertahankan yang lama.'; $strChangeCopyModeDeleteAndReload = ' ... hapuskan yang lama dari User Table, kemudian reload hak-hak.'; $strChangeCopyModeJustDelete = ' ... hapus yang lama dari User Table.'; $strChangeCopyModeRevoke = ' ... cabut seluruh hak yang aktif, kemudian hapuskan yang lama.'; -$strChangeCopyUser = 'Ubah informasi Login / Salip pemakai'; +$strChangeCopyUser = 'Ubah informasi Login / Salip pengguna'; $strChangeDisplay = 'Pilih Field untuk ditampilkan'; $strChangePassword = 'Ubah Kata Sandi'; $strCharset = 'Perangkat karakter (Charset)'; -$strCharsetOfFile = 'Kumpulan karakter (Character Set) dari file:'; -$strCharsets = 'Pilihan Karakter'; -$strCharsetsAndCollations = 'Pilihan karakter dan pembandingan'; -$strCheckAll = 'Tandakan semua'; +$strCharsetOfFile = 'Penyusunan karakter dalam file:'; +$strCharsets = 'Penyusunan Karakter'; +$strCharsetsAndCollations = 'Penyusunan karakter dan tabel urutan'; +$strCheckAll = 'Pilih semua'; $strCheckOverhead = 'Periksa Overheaded'; $strCheckPrivs = 'Periksa hak-hak'; $strCheckPrivsLong = 'Periksa hak-hak untuk database "%s".'; $strCheckTable = 'Periksa tabel'; $strChoosePage = 'Silakan pilih halaman untuk diubah'; $strColComFeat = 'Tampilkan komentar kolom'; -$strCollation = 'Pembandingan'; +$strCollation = 'Penyortiran'; $strColumnNames = 'Nama kolom'; $strColumnPrivileges = 'Hak (privileges) khusus terhadap kolum'; $strCommand = 'Perintah'; $strComments = 'Komentar'; $strCommentsForTable = 'KOMENTAR UNTUK TABEL'; -$strCompleteInserts = 'Penyisipan lengkap'; +$strCompatibleHashing = 'MySQL 4.0 compatible'; +$strCompleteInserts = 'INSERT lengkap'; $strCompression = 'Kompresi'; $strConfigFileError = 'phpMyAdmin gagal membaca file konfigurasi!
Hal ini diakibatkan oleh Parse Error atau file tidak ditemukan.
Silakan bukakan file konfigurasi dengan cara mengunakan link dibawah ini. Mohon perhatikan PHP Error Message(s) yang akan ditampilkan. Seringkali sebuah tanda kutip atau titik-koma ketinggalan.
Jika muncul sebuah halaman kosong, artinya tidak ada masalah.'; $strConfigureTableCoord = 'Silakan konfigurasikan koordinasi bagi tabel %s'; @@ -130,6 +140,7 @@ $strConnections = 'Koneksi'; $strConstraintsForDumped = 'Ketidakleluasaan untuk tabel pelimpahan (Dumped Tables)'; $strConstraintsForTable = 'Ketidakleluasaan untuk tabel'; $strCookiesRequired = 'Mulai dari sini Cookies harus diaktifkan.'; +$strCopyDatabaseOK = 'Database %s telah disalin ke %s'; $strCopyTable = 'Salin tabel ke (database.nama tabel):'; $strCopyTableOK = 'Tabel %s telah disalin ke %s.'; $strCopyTableSameNames = 'Penyalinan tabel pada diri-sendiri tidak bisa dilakukan!'; @@ -149,6 +160,7 @@ $strCzech = 'Bahasa Ceko'; $strCzechSlovak = 'Cecko-Slovakia'; $strDBComment = 'Komentar Database: '; +$strDBCopy = 'Salin database ke'; $strDBGContext = 'Susunan'; $strDBGContextID = 'Susunan ID'; $strDBGHits = 'Hits'; @@ -180,28 +192,28 @@ $strDefault = 'Default'; $strDefaultValueHelp = 'Untuk nilai (value) default cukup diisi single value saja tanpa menggunakan backslash, escaping atau quotes dan dengan menggunakan format sbb.: a'; $strDefragment = 'Defragmentasikan tabel'; $strDelOld = 'Halaman ini berisi referensi tentang tabel yang sudah tidak ada. Apakah Anda ingin hapus referensi yang bersangkutan?'; -$strDelayedInserts = 'Gunakan Delayed Inserts'; +$strDelayedInserts = 'Gunakan perintah INSERT memperlambat'; $strDelete = 'Hapus'; -$strDeleteAndFlush = 'Hapus pemakai dan Reload hak-hak (Privileges).'; +$strDeleteAndFlush = 'Hapus pengguna, lantas Reload hak-hak (Privileges).'; $strDeleteAndFlushDescr = 'Ini cara yang terbaik tetapi akan memakan waktu cukup lama.'; $strDeleted = 'Baris telah dihapus'; $strDeletedRows = 'Baris yang dihapus:'; $strDeleting = 'Menghapus %s'; -$strDescending = 'Menurun'; +$strDescending = 'Urutan menurun'; $strDescription = 'Deskripsi'; $strDictionary = 'kamus'; -$strDisableForeignChecks = 'Matikan pengechekan kunci asing'; +$strDisableForeignChecks = 'Tanpa pemeriksaan kunci asing'; $strDisabled = 'Tidak aktif'; $strDisplayFeat = 'Tampilkan ciri-ciri'; -$strDisplayOrder = 'Urutan tampilan berdasarkan:'; +$strDisplayOrder = 'Urut tampilan berdasarkan:'; $strDisplayPDF = 'Tampilkan skema PDF'; -$strDoAQuery = 'Cari berdasarkan data contoh ("query by example") (wildcard: "%")'; +$strDoAQuery = 'cari berdasarkan data contoh ("query by example") (wildcard: "%")'; $strDoYouReally = 'Apakah anda ingin '; $strDocu = 'Dokumentasi'; -$strDrop = 'Hapus Field ini'; -$strDropDatabaseStrongWarning = 'Anda akan MENGHAPUSKAN SELURUH database!'; +$strDrop = 'Hapus'; +$strDropDatabaseStrongWarning = 'Anda akan MENGHAPUS SELURUH database!'; $strDropSelectedDatabases = 'Hapus database pilihan'; -$strDropUsersDb = 'Hapus database yang memiliki nama yang sama dengan pemakainya.'; +$strDropUsersDb = 'Hapus database yang memiliki nama yang sama dengan pengguna.'; $strDumpSaved = 'Dump (Skema) disimpan pada file %s.'; $strDumpXRows = 'Dump %s baris bermula pada baris %s.'; $strDumpingData = 'Dumping data untuk tabel'; @@ -211,7 +223,7 @@ $strEdit = 'Ubah'; $strEditPDFPages = 'Ubah halaman PDF'; $strEditPrivileges = 'Ubah hak akses (privilege)'; $strEffective = 'Efektif'; -$strEmpty = 'Hapus semua Record'; +$strEmpty = 'Mengosongkan'; $strEmptyResultSet = 'MySQL balikkan hasil kosong (a.k. baris yang kosong).'; $strEnabled = 'Aktif'; $strEncloseInTransaction = 'Menyertakan ekspor dalam transaksi'; @@ -219,18 +231,19 @@ $strEnd = 'Terakhir'; $strEndCut = 'Akhiri potong (CUT)'; $strEndRaw = 'AKHIRI mentah (RAW)'; $strEnglish = 'Bahasa Ingris'; -$strEnglishPrivileges = ' Catatan: Nama privilege MySQL adalah dalam bahasa Ingris '; +$strEnglishPrivileges = ' Catatan: Nama privilege MySQL dalam bahasa Ingris '; $strError = 'Error'; +$strEscapeWildcards = 'Wildcard _ dan % sebaiknya diakhiri dengan tanda \ untuk mengunakannya secara harfiah'; $strEstonian = 'Bahasa Estonia'; $strExcelEdition = 'Edisi Excel'; $strExcelOptions = 'Pilihan Excel'; $strExecuteBookmarked = 'Eksekusikan pencarian dengan mengikuti penunjuk halaman'; $strExplain = 'Terangkan SQL'; $strExport = 'Ekspor'; -$strExtendedInserts = 'Penyisipan diperluas'; +$strExtendedInserts = 'INSERT memperluas'; $strExtra = 'Ekstra'; -$strFailedAttempts = 'Percobaan yang telah gagal'; +$strFailedAttempts = 'Gagal'; $strField = 'Field'; $strFieldHasBeenDropped = 'Field %s telah dihapus'; $strFields = 'Field'; @@ -240,11 +253,11 @@ $strFieldsEscapedBy = 'Field dikembalikan oleh'; $strFieldsTerminatedBy = 'Fields diputus oleh'; $strFileAlreadyExists = 'File %s sudah ada pada server. Gantikan nama file atau periksa pilihan Overwrite.'; $strFileCouldNotBeRead = 'Gagal membaca File'; -$strFileNameTemplate = 'Template nama file'; +$strFileNameTemplate = 'Konvensi nama file'; $strFileNameTemplateHelp = 'Gunakan__DB__sebagai nama Database,__TABLE__sebagai nama tabel dan %sany strftime%s sebagai spesifikasi waktu. Ekstensi akan ditambahkan secara otomatis. Teks lainnya akan dipertahankan.'; -$strFileNameTemplateRemember = 'ingat template'; +$strFileNameTemplateRemember = 'ingat konvensi'; $strFixed = 'telah diperbaiki'; -$strFlushPrivilegesNote = 'Perhatian: phpMyAdmin mengambil data tentang hak-hak dari pemakai secara langsung dari tabel Hak Istimewa (Privileges) MySQL. Isi dari tabel tersebut bisa berbeda dari Hak Istimewa (Privileges) yang digunakan oleh Server bila pernah diubah. Bila begitu disarankan untuk %sReload Hak Istimewa (Privileges)%s sebelum melanjut.'; +$strFlushPrivilegesNote = 'Perhatian: phpMyAdmin membaca data tentang pengguna secara langsung dari tabel profil pengguna MySQL. Isi dari tabel bisa saja berbeda dengan profil pengguna yang digunakan oleh Server pada saat ini bila tabel tsb. pernah diubah secara manual. Disarankan untuk %sme-reload profil pengguna%s sebelum melanjut.'; $strFlushTable = 'Tutup tabel ("FLUSH")'; $strFormEmpty = 'Data dalam form kurang !'; $strFormat = 'Format'; @@ -260,15 +273,15 @@ $strGlobal = 'global'; $strGlobalPrivileges = 'Hak Istimewa (Privileges) Global'; $strGlobalValue = 'Nilai Global'; $strGo = 'Go'; -$strGrantOption = 'Mengizinkan'; +$strGrantOption = 'Izin'; $strGreek = 'Bahasa Yunani'; -$strGzip = '"Dikompress dengan GZip"'; +$strGzip = 'Dikompress dengan GZip'; $strHasBeenAltered = 'telah diubah.'; $strHasBeenCreated = 'telah diciptakan.'; $strHaveToShow = 'Sekurang-kurangnya satu kolom harus dipilih untuk ditampilkan'; $strHebrew = 'Bahasa Yahudi'; -$strHexForBinary = 'Gunakan hexadesimal untuk file binari'; +$strHexForBinary = 'Gunakan cara hexadesimal untuk field binari'; $strHome = 'Home'; $strHomepageOfficial = 'Homepage resmi phpMyAdmin'; $strHost = 'Host'; @@ -280,7 +293,7 @@ $strId = 'ID'; $strIdxFulltext = 'Teks penuh'; $strIfYouWish = 'Jika Anda hanya ingin memuat beberapa kolom saja dari tabel, silakan gunakan tanda koma sebagai pemisah.'; $strIgnore = 'Abaikan'; -$strIgnoreInserts = 'Gunakan Ignore Inserts'; +$strIgnoreInserts = 'Gunakan perintah INSERT dengan mengabaikan kesalahan'; $strIgnoringFile = 'Abaikan file %s'; $strImportDocSQL = 'Impor file docSQL'; $strImportFiles = 'Impor file'; @@ -290,11 +303,16 @@ $strIndex = 'Indeks'; $strIndexHasBeenDropped = 'Indeks %s telah dihapus'; $strIndexName = 'Nama indeks :'; $strIndexType = 'Tipe indeks :'; +$strIndexWarningMultiple = 'Lebih dari satu kunci %s untuk kolom `%s` telah dibuat '; +$strIndexWarningPrimary = 'Kunci PRIMARY dan INDEKS sebaiknya jangan di-set secara bersamaan untuk kolom `%s`'; +$strIndexWarningTable = 'Ditemukan masalah dengan indeks dalam tabel `%s`'; +$strIndexWarningUnique = 'Kunci UNIK and INDEKS sebaiknya jangan di-set secara bersamaan untuk kolom `%s`'; $strIndexes = 'Indeks'; $strInnodbStat = 'Status dari InnoDB'; -$strInsecureMySQL = 'File konfigurasi Anda ditentukan dengan pemakai Root dan tanpa adanya Kata Sandi (sama dengan Default MySQL Privileged Account). Jika MySQL-Server dijalankan dengan sedemikian, server Anda terbuka lebar untuk suatu penyerangan. Disarankan untuk memperbaiki kelemahan keamanan (security hole) ini.'; +$strInsecureMySQL = 'File konfigurasi Anda ditentukan dengan pengguna Root dan tanpa adanya Kata Sandi (sama dengan Default MySQL Privileged Account). Jika MySQL-Server dijalankan dengan sedemikian, server Anda terbuka lebar untuk suatu penyerangan. Disarankan untuk memperbaiki kelemahan keamanan (security hole) ini.'; $strInsert = 'Sisipkan'; $strInsertAsNewRow = 'Sisipkan sebagai baris baru'; +$strInsertBookmarkTitle = 'Silakan masukkan judul untuk simpanan'; $strInsertNewRow = 'Sisipkan baris baru'; $strInsertTextfiles = 'Sisipkan data baru dari textfile pada tabel'; $strInsertedRowId = 'Menyisip baris id:'; @@ -305,11 +323,11 @@ $strInternalRelations = 'Relasi internal'; $strJapanese = 'Bahasa Jepang'; $strJumpToDB = 'Lompat langsung ke database "%s".'; -$strJustDelete = 'Tinggal hapuskan pemakai dari tabel Hak Istimewa (Privileges).'; -$strJustDeleteDescr = 'Pemakai yang "dihapus" tetap berhak untuk mengakses Server seperti biasa sampai Hak Istimewa (Privileges) di-reload.'; +$strJustDelete = 'Hapus pengguna dari dari tabel daftar pengguna.'; +$strJustDeleteDescr = 'Pengguna yang "dihapus" tetap berhak untuk mengakses Server seperti biasa sampai Hak Istimewa (Privileges) di-reload.'; $strKeepPass = 'Jangan ubah Kata Sandi'; -$strKeyname = 'Nama kunci (Keyname)'; +$strKeyname = 'Nama Kunci'; $strKill = 'Tutup'; $strKorean = 'Bahasa Korea'; @@ -334,7 +352,7 @@ $strLithuanian = 'Bahasa Lithuania'; $strLoadExplanation = 'Cara yang terbaik sudah aktif secara Default tetapi bisa dirubah bila gagal.'; $strLoadMethod = 'Caranya LOAD'; $strLocalhost = 'Lokal'; -$strLocationTextfile = 'Lokasi dari textfile'; +$strLocationTextfile = 'dari File'; $strLogPassword = 'Kata Sandi:'; $strLogServer = 'Server'; $strLogUsername = 'Nama Pengguna:'; @@ -343,7 +361,7 @@ $strLoginInformation = 'Informasi Login'; $strLogout = 'Logout'; $strMIMETypesForTable = 'TIPE MIME UNTUK TABEL'; -$strMIME_MIMEtype = 'tipe MIME'; +$strMIME_MIMEtype = 'Tipe MIME'; $strMIME_available_mime = 'Tipe MIME yang tersedia'; $strMIME_available_transform = 'Transformasi yang tersedia'; $strMIME_description = 'Deskripsi'; @@ -364,18 +382,19 @@ $strMoveTableSameNames = 'Memindahkan tabel ke diri-sendiri tidak bisa dilakukan $strMultilingual = 'berbagai bahasa'; $strMustSelectFile = 'Anda perlu pilih file untuk disisipkan terlebih dahulu.'; $strMySQLCharset = 'Charset MySQL'; -$strMySQLConnectionCollation = 'Pembandingan koneksi MySQL'; +$strMySQLConnectionCollation = 'Penyortiran koneksi MySQL'; $strMySQLReloaded = 'MySQL telah di-reload.'; $strMySQLSaid = 'MySQL menyatakan: '; $strMySQLServerProcess = 'MySQL versi %pma_s1% dijalankan pada %pma_s2% sebagai %pma_s3%'; $strMySQLShowProcess = 'Tampilkan Proses'; -$strMySQLShowStatus = 'Tampilkan informasi runtime dari MySQL'; +$strMySQLShowStatus = 'Tampilkan informasi runtime MySQL'; $strMySQLShowVars = 'Tampilkan variabel sistem MySQL'; $strName = 'Nama'; $strNeedPrimaryKey = 'Disarankan untuk menetapkan Primary Key pada tabel ini.'; $strNext = 'Berikutnya'; $strNo = 'Tidak'; +$strNoActivity = 'Tidak ada aktifitas selama %s detik atau lebih. Silakan login kembali'; $strNoDatabases = 'Database tidak ditemukan'; $strNoDatabasesSelected = 'Database belum dipilih.'; $strNoDescription = 'tanpa keterangan'; @@ -395,6 +414,7 @@ $strNoRights = 'Hak Akses Anda untuk melanjut tidak cukup!'; $strNoRowsSelected = 'Tidak ada baris yang dipilih'; $strNoSpace = 'Tidak cukup ruang untuk menyimpan %s.'; $strNoTablesFound = 'Tidak ada tabel dalam database.'; +$strNoThemeSupport = 'Tidak ada dukungan untuk desain penampilan. Mohon periksa kembali konfigurasi dan/atau desain penampilan dalam direktori %s.'; $strNoUsersFound = 'Pengguna tidak ditemukan.'; $strNoValidateSQL = 'Melewati pengesahan (validation) SQL'; $strNone = 'tanpa'; @@ -403,7 +423,7 @@ $strNotOK = 'tidak oke'; $strNotSet = '%s tabel tidak ditemukan atau tidak diset di %s'; $strNotValidNumber = ' bukan nomor baris yang berlaku!'; $strNull = 'Kosong'; -$strNumSearchResultsInTable = '%s Rekord dalam tabel %s'; +$strNumSearchResultsInTable = '%s catatan dalam tabel %s'; $strNumSearchResultsTotal = 'Jumlah: %s rekord'; $strNumTables = 'Tabel'; @@ -426,6 +446,7 @@ $strPartialText = 'Teks yang disingkat'; $strPassword = 'Kata Sandi'; $strPasswordChanged = 'Sukses mengubah Kata Sandi untuk %s .'; $strPasswordEmpty = 'Kata Sandi kosong!'; +$strPasswordHashing = 'Pengernaian Kata Sandi (Password Hashing)'; $strPasswordNotSame = 'Kata Sandi tidak sama!'; $strPdfDbSchema = 'Skema dari database "%s" - Halaman %s'; $strPdfInvalidTblName = 'Tabel "%s" tidak ditemukan!'; @@ -442,7 +463,7 @@ $strPolish = 'Polandia'; $strPortrait = 'Gambaran'; $strPos1 = 'Awal'; $strPrevious = 'Sebelumnya'; -$strPrimary = 'PRIMARY'; +$strPrimary = 'Kunci Utama'; $strPrimaryKeyHasBeenDropped = 'Kunci utama telah dihapus'; $strPrimaryKeyName = 'Nama Kunci utama diwajibkan... PRIMARY!'; $strPrimaryKeyWarning = '(Tanda nama "PRIMARY" wajib sebagai satu-satunya nama dan hanya sebagai Kunci utama saja!)'; @@ -459,26 +480,26 @@ $strPrivDescDropDb = 'Mengizinkan untuk hapus database dan tabel.'; $strPrivDescDropTbl = 'Mengizinkan untuk hapus tabel.'; $strPrivDescExecute = 'Mengizinkan untuk berjalan dengan prosedur yang tersimpan; tidak ada efek dalam versi MySQL ini.'; $strPrivDescFile = 'Mengizinkan untuk impor data dari file dan ekspor data kedalam file.'; -$strPrivDescGrant = 'Mengizinkan untuk menambah pemakai dan Hak Istimewa (Privileges) tanpa harus me-reload ulang tabel Hak Istimewa.'; +$strPrivDescGrant = 'Mengizinkan untuk menambah pengguna dan Hak Istimewa (Privileges) tanpa harus me-reload ulang tabel Hak Istimewa.'; $strPrivDescIndex = 'Mengizinkan untuk menciptakan dan hapus Indeks.'; $strPrivDescInsert = 'Mengizinkan untuk tambah dan ganti data.'; $strPrivDescLockTables = 'Mengizinkan untuk mengunci tabel dalam Thread yang lagi berjalan.'; -$strPrivDescMaxConnections = 'Membatasi jumlah koneksi baru yang diperbolehkan untuk setiap pemakai dalam batas waktu satu jam.'; -$strPrivDescMaxQuestions = 'Membatasi jumlah pencarian (Queries) yang diperbolehkan untuk setiap pemakai dalam batas waktu satu jam.'; -$strPrivDescMaxUpdates = 'Membatasi jumlah perintah untuk merubah sebuah tabel atau database untuk setiap pemakai dalam batas waktu satu jam.'; -$strPrivDescProcess3 = 'Mengizinkan untuk hentikan proses yang dimiliki pemakai lain.'; +$strPrivDescMaxConnections = 'Membatasi jumlah koneksi baru yang diperbolehkan untuk setiap pengguna dalam batas waktu satu jam.'; +$strPrivDescMaxQuestions = 'Membatasi jumlah pencarian (Queries) yang diperbolehkan untuk setiap pengguna dalam batas waktu satu jam.'; +$strPrivDescMaxUpdates = 'Membatasi jumlah perintah untuk merubah sebuah tabel atau database untuk setiap pengguna dalam batas waktu satu jam.'; +$strPrivDescProcess3 = 'Mengizinkan untuk hentikan proses yang dimiliki pengguna lain.'; $strPrivDescProcess4 = 'Mengizinkan untuk tampilkan seluruh pencarian dalam daftar proses.'; $strPrivDescReferences = 'Tidak ada efek dalam versi MySQL yang digunakan.'; $strPrivDescReload = 'Mengizinkan untuk reload stelan dari server dan untuk flush cache dari server.'; -$strPrivDescReplClient = 'Memberi hak kepada pemakai untuk menanyakan lokasi dari slaves / masters.'; +$strPrivDescReplClient = 'Memberi hak kepada pengguna untuk menanyakan lokasi dari slaves / masters.'; $strPrivDescReplSlave = 'Digunakan untuk replikasi dari slaves.'; $strPrivDescSelect = 'Mengizinkan untuk baca data.'; $strPrivDescShowDb = 'Memberi akses ke seluruh daftar database.'; $strPrivDescShutdown = 'Mengizinkan untuk shut-down server.'; -$strPrivDescSuper = 'Mengizinkan untuk tetap konek meskipun jumlah batas koneksi telah tercapai; diperlukan untuk hampir semua operasi administratif seperti stelan variabel global atau untuk mematikan sebuah Thread yang dimiliki oleh pemakai lain.'; +$strPrivDescSuper = 'Mengizinkan untuk tetap konek meskipun jumlah batas koneksi telah tercapai; diperlukan untuk hampir semua operasi administratif seperti stelan variabel global atau untuk mematikan sebuah Thread yang dimiliki oleh pengguna lain.'; $strPrivDescUpdate = 'Mengizinkan untuk ubah data.'; $strPrivDescUsage = 'Tanpa Hak Istimewa (Privileges).'; -$strPrivileges = 'Hak Akses (Privilege)'; +$strPrivileges = 'Hak Akses'; $strPrivilegesReloaded = 'Sukses reload Hak Istimewa (Privileges).'; $strProcesslist = 'Daftar proses'; $strPutColNames = 'Letakkan nama Fields pada baris pertama'; @@ -490,24 +511,24 @@ $strQueryFrame = 'Jendela Pencarian'; $strQueryOnDb = 'Pencarian SQL dalam database %s:'; $strQuerySQLHistory = 'Sejarah SQL'; $strQueryStatistics = 'Informasi statistik: Sejak dihidupkan, %s pencarian telah dikirim kepada server.'; -$strQueryTime = 'Pencarian membutuhkan %01.4f detik'; +$strQueryTime = 'pencarian membutuhkan waktu %01.4f detik'; $strQueryType = 'Tipe Pencarian'; $strQueryWindowLock = 'Jangan timpahkan pencarian ini dari jendela luar'; $strReType = 'Ketik ulang'; -$strReceived = 'Diterima'; -$strRecords = 'Rekord'; +$strReceived = 'Penerimaan'; +$strRecords = 'Catatan'; $strReferentialIntegrity = 'Cek integriti referensial:'; $strRefresh = 'Menyegarkan'; $strRelationNotWorking = 'Fasilitas penambahan untuk bekerja dengan tabel yang di-link di nonaktifkan. Untuk mengetahui sebabnya silakan klik %sdisini%s.'; $strRelationView = 'Tampilan relasi'; $strRelationalSchema = 'Skema Relational'; -$strRelations = 'Relasi'; +$strRelations = 'Tabel Relasi'; $strRelationsForTable = 'RELASI UNTUK TABEL'; -$strReloadFailed = 'Gagal me-reload MySQL.'; -$strReloadMySQL = 'Reload MySQL'; +$strReloadFailed = 'Gagal memanggil ulang tabel pengguna.'; +$strReloadMySQL = 'Panggil ulang tabel pengguna'; $strReloadingThePrivileges = 'Reload Hak Istimewa (Privileges)'; -$strRemoveSelectedUsers = 'Hapus pemakai pilihan'; +$strRemoveSelectedUsers = 'Hapus pengguna yang dipilih'; $strRenameDatabaseOK = 'Nama database %s telah diubah menjadi %s'; $strRenameTable = 'Ubah nama tabel menjadi '; $strRenameTableOK = 'Nama tabel %s telah diubah menjadi %s'; @@ -518,12 +539,12 @@ $strReplaceTable = 'Ganti data tabel dengan file'; $strReset = 'Reset'; $strResourceLimits = 'Batas dari sumber'; $strRevoke = 'Cabut'; -$strRevokeAndDelete = 'Hapus pemakai setelah cabut seluruh Hak Istimewa (Privileges) yang aktif dari pemakai yang bersangkutan.'; -$strRevokeAndDeleteDescr = 'Pemakai yang bersangkutan tetap memiliki hak untuk USAGE sampai seluruh Hak Istimewa (Privileges) di-reload kembali.'; +$strRevokeAndDelete = 'Cabut seluruh Hak Istimewa (Privileges) dari pengguna, lantas hapus pengguna tsb. dari daftar tabel pengguna.'; +$strRevokeAndDeleteDescr = 'Pengguna yang bersangkutan tetap memiliki hak untuk USAGE sampai seluruh Hak Istimewa (Privileges) di-reload kembali.'; $strRevokeMessage = 'Hak akses untuk %s telah dicabut'; $strRomanian = 'Romania'; -$strRowLength = 'Ukuran panjang baris'; -$strRowSize = ' Ukuran baris '; +$strRowLength = 'Panjangnya baris'; +$strRowSize = ' Besarnya baris '; $strRows = 'Baris'; $strRowsFrom = 'baris dimulai dari rekord #'; $strRowsModeFlippedHorizontal = 'horisontal (rotated headers)'; @@ -532,7 +553,7 @@ $strRowsModeOptions = 'diatur dengan urutan %s dan mengulang header setelah %s s $strRowsModeVertical = 'vertikal'; $strRowsStatistic = 'Statistik Baris'; $strRunQuery = 'Jalankan pencarian SQL'; -$strRunSQLQuery = 'Jalankan pencarian SQL pada database %s'; +$strRunSQLQuery = 'Melaksanakan perintah SQL pada database %s'; $strRunning = 'dijalankan pada %s'; $strRussian = 'Bahasa Rusia'; @@ -562,20 +583,21 @@ $strSearchType = 'Cari:'; $strSecretRequired = 'File konfigurasi membutuhkan susunan kata-kata rahasia (blowfish_secret).'; $strSelectADb = 'Silakan pilih database'; $strSelectAll = 'Pilih semua'; -$strSelectFields = 'Pilih fields (minimal satu):'; +$strSelectBinaryLog = 'Pilih Log binari untuk ditinjau'; +$strSelectFields = 'Pilihan field (min. satu):'; $strSelectNumRows = 'dalam susunan pemeriksaan'; $strSelectTables = 'Pilih tabel'; $strSend = 'Kirimkan ke'; -$strSent = 'Dikirim'; +$strSent = 'Pengiriman'; $strServer = 'Server'; $strServerChoice = 'Pilihan Server'; $strServerNotResponding = 'Server tidak menjawab'; $strServerStatus = 'Informasi Runtime'; -$strServerStatusUptime = 'MySQL server ini telah berjalan secara berturut-turut selama %s. Server dijalankan pada %s.'; -$strServerTabProcesslist = 'Proses-Proses'; +$strServerStatusUptime = 'MySQL server ini telah berjalan secara berturut-turut selama %s. Server dijalankan pada tanggal %s.'; +$strServerTabProcesslist = 'Proses Aktif'; $strServerTabVariables = 'Variabel'; $strServerTrafficNotes = 'Server traffic: Tabel ini menampilkan statistik jaringan lalu-lintas server MySQL sejak dihidupkan.'; -$strServerVars = 'Variabel dan stelan dari server'; +$strServerVars = 'Variabel dan penyetelan server'; $strServerVersion = 'Versi Server'; $strSessionValue = 'Nilai dari Session'; $strSetEnumVal = 'Jika tipe field sama dengan "enum" atau "set", silakan masukkan nilai dengan format: \'a\',\'b\',\'c\'...
Jika sebuah backslash ("\") atau suatu tanda kutip ("\'") diperlukan, tanda tersebut perlu ditutupi dengan tanda backslash (seb. contoh \'\\\\xyz\' atau \'a\\\'b\').'; @@ -585,10 +607,10 @@ $strShowColor = 'Tampilkan warna'; $strShowDatadictAs = 'Format dari kamus data'; $strShowFullQueries = 'Tampilkan pencarian yang lengkap'; $strShowGrid = 'Tampilkan garis'; -$strShowPHPInfo = 'Tampilkan informasi tentang PHP'; +$strShowPHPInfo = 'Tampilkan informasi PHP'; $strShowTableDimension = 'Tampilkan ukuran dari tabel'; $strShowTables = 'Tampilkan tabel'; -$strShowThisQuery = ' Tampilkan ulang pencarian SQL '; +$strShowThisQuery = ' Tampilkan ulang perintah SQL '; $strShowingRecords = 'Tampilan baris'; $strSimplifiedChinese = 'Bahasa Cina sederhana'; $strSingly = '(unik)'; @@ -603,20 +625,21 @@ $strSplitWordsWithSpace = 'Kata dipisahkan oleh karakter spasi (" ").'; $strStatCheckTime = 'Pemeriksaan terakhir'; $strStatCreateTime = 'Pembuatan'; $strStatUpdateTime = 'Update terakhir'; -$strStatement = 'Pernyataan'; +$strStatement = 'Keterangan'; $strStatus = 'Status'; $strStrucCSV = 'Data CSV'; $strStrucData = 'Struktur dan data'; -$strStrucDrop = 'Menambahkan \'Hapus tabel\''; +$strStrucDrop = 'Berikut \'HAPUS TABEL\''; $strStrucExcelCSV = 'CSV untuk data MS Excel'; $strStrucNativeExcel = 'Data asli MS Excel'; $strStrucOnly = 'Struktur saja'; -$strStructPropose = 'Ajukan struktur tabel'; +$strStructPropose = 'Menganalisa struktur tabel'; $strStructure = 'Struktur'; $strSubmit = 'Kirim'; $strSuccess = 'Sukses menjalankan perintah SQL'; $strSum = 'Jumlah'; $strSwedish = 'Bahasa Swedia'; +$strSwitchToDatabase = 'Pindah ke database yang disalin'; $strSwitchToTable = 'Pindah ke tabel salinan'; $strTable = 'Tabel'; @@ -638,11 +661,11 @@ $strThai = 'Bahasa Thailand'; $strTheContent = 'Isi file telah disisipkan.'; $strTheContents = 'Isi file telah diganti dengan isi tabel yang dipilih dengan kunci utama atau kunci unik.'; $strTheTerminator = 'Pemisah field.'; -$strTheme = 'Tema / Gaya'; +$strTheme = 'Desain Penampilan'; $strThisHost = 'Host yang ini'; $strThisNotDirectory = 'Ini bukan direktori'; $strThreadSuccessfullyKilled = 'Sukses hentikan Thread %s.'; -$strTime = 'Waktu'; +$strTime = 'Jangka Waktu'; $strToggleScratchboard = 'pindah buku catatan (Scratchboard)'; $strTotal = 'jumlah'; $strTotalUC = 'Jumlah'; @@ -665,30 +688,31 @@ $strTurkish = 'Bahasa Turki'; $strType = 'Jenis'; $strUkrainian = 'Bahasa Ukrainia'; -$strUncheckAll = 'Uncheck semua'; +$strUncheckAll = 'Hapus pilihan'; $strUnicode = 'Unikode'; $strUnique = 'Unik'; $strUnknown = 'tidak diketahui'; $strUnselectAll = 'Unselect semua'; $strUpdComTab = 'Mohon belajari dokumentasi untuk mengetahui cara meng-update tabel Column_comments Anda'; $strUpdatePrivMessage = 'Hak Akses (privilege) untuk %s telah di-update.'; -$strUpdateProfileMessage = 'Profil pemakai telah di-update.'; +$strUpdateProfileMessage = 'Profil pengguna telah di-update.'; $strUpdateQuery = 'Update proses pencarian'; $strUpgrade = 'Disarankan untuk meng-update ke %s versi %s atau lebih baru.'; $strUsage = 'Penggunaan'; -$strUseBackquotes = 'Gunakan backquotes dengan nama tabel dan nama field'; +$strUseBackquotes = 'Nama tabel dan nama field dalam tanda kutip biasa'; $strUseHostTable = 'Gunakan Host Table'; +$strUseTabKey = 'Gunakan tombol TAB untuk maju dari angka ke angka atau gunakan CTRL+panah untuk maju kemana saja'; $strUseTables = 'Gunakan tabel'; $strUseTextField = 'Gunakan text field'; $strUseThisValue = 'gunakan nilai ini'; -$strUser = 'Pemakai'; -$strUserAlreadyExists = 'Pemakai %s telah terdaftar!'; -$strUserEmpty = 'Nama pemakai masih kosong!'; -$strUserName = 'Nama pemakai'; -$strUserNotFound = 'Pemakai yang dipilih tidak ditemukan pada tabel hak (privilege table).'; -$strUserOverview = 'Pandangan Umum Pemakai'; -$strUsersDeleted = 'Sukses menghapus Pemakai yang dipilih.'; -$strUsersHavingAccessToDb = 'Pemakai memiliki akses ke "%s"'; +$strUser = 'Pengguna'; +$strUserAlreadyExists = 'Pengguna %s telah terdaftar!'; +$strUserEmpty = 'Nama pengguna masih kosong!'; +$strUserName = 'Nama pengguna'; +$strUserNotFound = 'Pengguna yang dipilih tidak ditemukan pada tabel hak (privilege table).'; +$strUserOverview = 'Pandangan Umum Pengguna'; +$strUsersDeleted = 'Sukses menghapus Pengguna yang dipilih.'; +$strUsersHavingAccessToDb = 'Pengguna memiliki akses ke "%s"'; $strValidateSQL = 'Mengesahkan (validate) SQL'; $strValidatorError = 'Pengesahan SQL tidak dapat disahkan. Mohon periksa kembali ekstension PHP yang diperlukan seperti yang tercatat dalam %sdokumentasi%s.'; @@ -704,38 +728,20 @@ $strWelcome = 'Selamat Datang di %s'; $strWestEuropean = 'Eropa Barat'; $strWildcard = 'wildcard'; $strWindowNotFound = 'Mengupdate jendela browser gagal. Ada kemungkinan Anda telah menutup jendela induknya atau pilihan keamanan pada browser Anda melarang untuk mengupdate dengan cara Cross-Window'; -$strWithChecked = 'Dengan pilihan:'; +$strWithChecked = 'yang ditandai:'; $strWritingCommentNotPossible = 'Penulisan komentar tidak dapat dilaksanakan'; $strWritingRelationNotPossible = 'Penulisan relasi tidak dapat dilaksanakan'; -$strWrongUser = 'Nama Pemakai/Kata Sandi salah. Akses ditolak.'; +$strWrongUser = 'Nama Pengguna/Kata Sandi salah. Akses ditolak.'; $strXML = 'XML'; $strYes = 'Ya'; $strZeroRemovesTheLimit = 'Perhatian: Perubahan pilihan ini ke posisi 0 (zero) akan menghapus batas yang telah ditentukan.'; -$strZip = '"Dikompress dengan Zip"'; +$strZip = 'Dikompress dengan Zip'; -$strAddFields = 'Add %s field(s)'; //to translate -$strInsertBookmarkTitle = 'Please insert bookmark title'; //to translate -$strNoThemeSupport = 'No themes support, please check your configuration and/or your themes in directory %s.'; //to translate -$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate -$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate -$strBinLogName = 'Log name'; //to translate -$strBinLogPosition = 'Position'; //to translate -$strBinLogEventType = 'Event type'; //to translate -$strBinLogServerId = 'Server ID'; //to translate -$strBinLogOriginalPosition = 'Original position'; //to translate -$strBinLogInfo = 'Information'; //to translate -$strBinaryLog = 'Binary log'; //to translate -$strSelectBinaryLog = 'Select binary log to view'; //to translate -$strDBCopy = 'Copy database to'; //to translate -$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate -$strSwitchToDatabase = 'Switch to copied database'; //to translate -$strPasswordHashing = 'Password Hashing'; //to translate -$strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate -$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate -$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/indonesian-utf-8.inc.php b/lang/indonesian-utf-8.inc.php index 59d4e1e7c..837767dbe 100644 --- a/lang/indonesian-utf-8.inc.php +++ b/lang/indonesian-utf-8.inc.php @@ -19,7 +19,7 @@ $datefmt = '%d. %B %Y jam %H:%M'; $timespanfmt = '%s hari, %s jam, %s menit dan %s detik'; $strAPrimaryKey = 'Primary key telah ditambahkan pada %s'; -$strAbortedClients = 'Dibatalkan'; +$strAbortedClients = 'Pembatalan'; $strAbsolutePathToDocSqlDir = 'Silakan menentukan Absolute Path pada webserver yang menunjuk ke direktori docSQL'; $strAccessDenied = 'Akses ditolak'; $strAccessDeniedExplanation = 'phpMyAdmin telah berusaha untuk membuka koneksi ke server MySQL tetapi koneksi ditolak oleh server. Silakan periksa kembali nama host, nama pengguna dan kata sandi pada file config.inc.php untuk memastikan kecocokannya dengan informasi yang telah diberikan oleh administrator server MySQL.'; @@ -29,9 +29,10 @@ $strAddConstraints = 'Menambahkan pembatas'; $strAddDeleteColumn = 'Menambahkan/Hapus kolom'; $strAddDeleteRow = 'Menambahkan/Hapus baris'; $strAddDropDatabase = 'Menambahkan DROP DATABASE'; -$strAddHeaderComment = 'Menambahkan komentar sendiri pada Header (\\n membelahkan garis)'; -$strAddIfNotExists = 'Menambahkan IF NOT EXISTS'; -$strAddIntoComments = 'Menambahkan pada komentar'; +$strAddFields = 'Menambahkan %s field(s)'; +$strAddHeaderComment = 'Menambahkan komentar individual pada Header (\\n membelahkan garis)'; +$strAddIfNotExists = 'Berikut IF \'NOT EXISTS\''; +$strAddIntoComments = 'Penambahkan pada komentar:'; $strAddNewField = 'Menambahkan field baru'; $strAddPrivilegesOnDb = 'Menambahkan hak (privileges) pada database berikut'; $strAddPrivilegesOnTbl = 'Menambahkan hak (privileges) pada tabel berikut'; @@ -43,9 +44,9 @@ $strAddedColumnComment = 'Komentar untuk kolum telah ditambahkan'; $strAddedColumnRelation = 'Relasi untuk kolum telah ditambahkan'; $strAdministration = 'Administrasi'; $strAffectedRows = 'Baris yang terlibat:'; -$strAfter = 'Sisipkan setelah %s'; -$strAfterInsertBack = 'Kembali'; -$strAfterInsertNewInsert = 'Sisipkan baris baru'; +$strAfter = 'sisipkan setelah %s'; +$strAfterInsertBack = 'kembali'; +$strAfterInsertNewInsert = 'sisipkan baris baru berikutnya'; $strAfterInsertSame = 'Kembali ke halaman ini'; $strAll = 'Semua'; $strAllTableSameWidth = 'Tampilkan seluruh tabel dengan lebar yang sama?'; @@ -55,7 +56,8 @@ $strAnalyzeTable = 'Analisa tabel'; $strAnd = 'dan'; $strAny = 'Setiap'; $strAnyHost = 'Setiap host'; -$strAnyUser = 'Setiap pemakai'; +$strAnyUser = 'Setiap pengguna'; +$strApproximateCount = 'Kemungkinan hanya perkiraan saja. Lihat FAQ 3.11'; $strArabic = 'Bahasa Arab'; $strArmenian = 'Bahasa Armenia'; $strAscending = 'Urutan menaik'; @@ -69,14 +71,21 @@ $strBack = 'Kembali'; $strBaltic = 'Bahasa Baltik'; $strBeginCut = 'Mulai potong (CUT)'; $strBeginRaw = 'MULAI mentah (RAW)'; +$strBinLogEventType = 'Tipe Kejadian'; +$strBinLogInfo = 'Informasi'; +$strBinLogName = 'Catat nama'; +$strBinLogOriginalPosition = 'Posisi aslinya'; +$strBinLogPosition = 'Posisi'; +$strBinLogServerId = 'ID Server'; $strBinary = 'Binari'; $strBinaryDoNotEdit = 'Binari - jangan di-edit'; -$strBookmarkAllUsers = 'Izinkan kepada seluruh pemakai untuk mengakses Bookmark ini'; -$strBookmarkDeleted = 'Bookmark telah dihapus.'; +$strBinaryLog = 'Log binari'; +$strBookmarkAllUsers = 'Izinkan semua pengguna untuk mengakses simpanan ini'; +$strBookmarkDeleted = 'Penyimpanan telah dihapus.'; $strBookmarkLabel = 'Judul'; -$strBookmarkOptions = 'Pilihan untuk Bookmark'; -$strBookmarkQuery = 'Bookmark query SQL '; -$strBookmarkThis = 'Bookmark SQL-query ini'; +$strBookmarkOptions = 'Pilihan untuk simpan'; +$strBookmarkQuery = 'Ingat pada pencarian SQL '; +$strBookmarkThis = 'Simpan pencarian SQL ini'; $strBookmarkView = 'Hanya melihat'; $strBrowse = 'Browse'; $strBrowseForeignValues = 'Menjelajahi nilai luar'; @@ -91,38 +100,39 @@ $strCantLoad = 'gagal loading ekstensi %s,
mohon periksa kembali konfiguras $strCantLoadRecodeIconv = 'Gagal loading iconv atau perubahan kode extension untuk konversi charset diperlukan. Silakan konfigurasikan php untuk menggunakan extensions yang diperlukan atau matikan fasilitas konversi Charset pada phpMyAdmin.'; $strCantRenameIdxToPrimary = 'Gagal ubah nama Indeks ke PRIMARY!'; $strCantUseRecodeIconv = 'Gagal menggunakan iconv, libiconv atau fungsi recode_string selama ekstensi masih dalam keadaan di-load. Periksa kembali konfigurasi PHP.'; -$strCardinality = 'Huruf besar atau kecil'; +$strCardinality = 'Bilangan Pokok'; $strCarriage = 'Di baris baru: \\r'; $strCaseInsensitive = 'peka terhadap huruf besar/kecil'; $strCaseSensitive = 'tidak peka terhadap huruf besar/kecil'; $strCentralEuropean = 'Eropa Tengah'; $strChange = 'Ubah'; -$strChangeCopyMode = 'Ciptakan pemakai baru dengan hak-hak yang sama dan ...'; +$strChangeCopyMode = 'Ciptakan pengguna baru dengan hak-hak yang sama dan ...'; $strChangeCopyModeCopy = '... mempertahankan yang lama.'; $strChangeCopyModeDeleteAndReload = ' ... hapuskan yang lama dari User Table, kemudian reload hak-hak.'; $strChangeCopyModeJustDelete = ' ... hapus yang lama dari User Table.'; $strChangeCopyModeRevoke = ' ... cabut seluruh hak yang aktif, kemudian hapuskan yang lama.'; -$strChangeCopyUser = 'Ubah informasi Login / Salip pemakai'; +$strChangeCopyUser = 'Ubah informasi Login / Salip pengguna'; $strChangeDisplay = 'Pilih Field untuk ditampilkan'; $strChangePassword = 'Ubah Kata Sandi'; $strCharset = 'Perangkat karakter (Charset)'; -$strCharsetOfFile = 'Kumpulan karakter (Character Set) dari file:'; -$strCharsets = 'Pilihan Karakter'; -$strCharsetsAndCollations = 'Pilihan karakter dan pembandingan'; -$strCheckAll = 'Tandakan semua'; +$strCharsetOfFile = 'Penyusunan karakter dalam file:'; +$strCharsets = 'Penyusunan Karakter'; +$strCharsetsAndCollations = 'Penyusunan karakter dan tabel urutan'; +$strCheckAll = 'Pilih semua'; $strCheckOverhead = 'Periksa Overheaded'; $strCheckPrivs = 'Periksa hak-hak'; $strCheckPrivsLong = 'Periksa hak-hak untuk database "%s".'; $strCheckTable = 'Periksa tabel'; $strChoosePage = 'Silakan pilih halaman untuk diubah'; $strColComFeat = 'Tampilkan komentar kolom'; -$strCollation = 'Pembandingan'; +$strCollation = 'Penyortiran'; $strColumnNames = 'Nama kolom'; $strColumnPrivileges = 'Hak (privileges) khusus terhadap kolum'; $strCommand = 'Perintah'; $strComments = 'Komentar'; $strCommentsForTable = 'KOMENTAR UNTUK TABEL'; -$strCompleteInserts = 'Penyisipan lengkap'; +$strCompatibleHashing = 'MySQL 4.0 compatible'; +$strCompleteInserts = 'INSERT lengkap'; $strCompression = 'Kompresi'; $strConfigFileError = 'phpMyAdmin gagal membaca file konfigurasi!
Hal ini diakibatkan oleh Parse Error atau file tidak ditemukan.
Silakan bukakan file konfigurasi dengan cara mengunakan link dibawah ini. Mohon perhatikan PHP Error Message(s) yang akan ditampilkan. Seringkali sebuah tanda kutip atau titik-koma ketinggalan.
Jika muncul sebuah halaman kosong, artinya tidak ada masalah.'; $strConfigureTableCoord = 'Silakan konfigurasikan koordinasi bagi tabel %s'; @@ -131,6 +141,7 @@ $strConnections = 'Koneksi'; $strConstraintsForDumped = 'Ketidakleluasaan untuk tabel pelimpahan (Dumped Tables)'; $strConstraintsForTable = 'Ketidakleluasaan untuk tabel'; $strCookiesRequired = 'Mulai dari sini Cookies harus diaktifkan.'; +$strCopyDatabaseOK = 'Database %s telah disalin ke %s'; $strCopyTable = 'Salin tabel ke (database.nama tabel):'; $strCopyTableOK = 'Tabel %s telah disalin ke %s.'; $strCopyTableSameNames = 'Penyalinan tabel pada diri-sendiri tidak bisa dilakukan!'; @@ -150,6 +161,7 @@ $strCzech = 'Bahasa Ceko'; $strCzechSlovak = 'Cecko-Slovakia'; $strDBComment = 'Komentar Database: '; +$strDBCopy = 'Salin database ke'; $strDBGContext = 'Susunan'; $strDBGContextID = 'Susunan ID'; $strDBGHits = 'Hits'; @@ -181,28 +193,28 @@ $strDefault = 'Default'; $strDefaultValueHelp = 'Untuk nilai (value) default cukup diisi single value saja tanpa menggunakan backslash, escaping atau quotes dan dengan menggunakan format sbb.: a'; $strDefragment = 'Defragmentasikan tabel'; $strDelOld = 'Halaman ini berisi referensi tentang tabel yang sudah tidak ada. Apakah Anda ingin hapus referensi yang bersangkutan?'; -$strDelayedInserts = 'Gunakan Delayed Inserts'; +$strDelayedInserts = 'Gunakan perintah INSERT memperlambat'; $strDelete = 'Hapus'; -$strDeleteAndFlush = 'Hapus pemakai dan Reload hak-hak (Privileges).'; +$strDeleteAndFlush = 'Hapus pengguna, lantas Reload hak-hak (Privileges).'; $strDeleteAndFlushDescr = 'Ini cara yang terbaik tetapi akan memakan waktu cukup lama.'; $strDeleted = 'Baris telah dihapus'; $strDeletedRows = 'Baris yang dihapus:'; $strDeleting = 'Menghapus %s'; -$strDescending = 'Menurun'; +$strDescending = 'Urutan menurun'; $strDescription = 'Deskripsi'; $strDictionary = 'kamus'; -$strDisableForeignChecks = 'Matikan pengechekan kunci asing'; +$strDisableForeignChecks = 'Tanpa pemeriksaan kunci asing'; $strDisabled = 'Tidak aktif'; $strDisplayFeat = 'Tampilkan ciri-ciri'; -$strDisplayOrder = 'Urutan tampilan berdasarkan:'; +$strDisplayOrder = 'Urut tampilan berdasarkan:'; $strDisplayPDF = 'Tampilkan skema PDF'; -$strDoAQuery = 'Cari berdasarkan data contoh ("query by example") (wildcard: "%")'; +$strDoAQuery = 'cari berdasarkan data contoh ("query by example") (wildcard: "%")'; $strDoYouReally = 'Apakah anda ingin '; $strDocu = 'Dokumentasi'; -$strDrop = 'Hapus Field ini'; -$strDropDatabaseStrongWarning = 'Anda akan MENGHAPUSKAN SELURUH database!'; +$strDrop = 'Hapus'; +$strDropDatabaseStrongWarning = 'Anda akan MENGHAPUS SELURUH database!'; $strDropSelectedDatabases = 'Hapus database pilihan'; -$strDropUsersDb = 'Hapus database yang memiliki nama yang sama dengan pemakainya.'; +$strDropUsersDb = 'Hapus database yang memiliki nama yang sama dengan pengguna.'; $strDumpSaved = 'Dump (Skema) disimpan pada file %s.'; $strDumpXRows = 'Dump %s baris bermula pada baris %s.'; $strDumpingData = 'Dumping data untuk tabel'; @@ -212,7 +224,7 @@ $strEdit = 'Ubah'; $strEditPDFPages = 'Ubah halaman PDF'; $strEditPrivileges = 'Ubah hak akses (privilege)'; $strEffective = 'Efektif'; -$strEmpty = 'Hapus semua Record'; +$strEmpty = 'Mengosongkan'; $strEmptyResultSet = 'MySQL balikkan hasil kosong (a.k. baris yang kosong).'; $strEnabled = 'Aktif'; $strEncloseInTransaction = 'Menyertakan ekspor dalam transaksi'; @@ -220,18 +232,19 @@ $strEnd = 'Terakhir'; $strEndCut = 'Akhiri potong (CUT)'; $strEndRaw = 'AKHIRI mentah (RAW)'; $strEnglish = 'Bahasa Ingris'; -$strEnglishPrivileges = ' Catatan: Nama privilege MySQL adalah dalam bahasa Ingris '; +$strEnglishPrivileges = ' Catatan: Nama privilege MySQL dalam bahasa Ingris '; $strError = 'Error'; +$strEscapeWildcards = 'Wildcard _ dan % sebaiknya diakhiri dengan tanda \ untuk mengunakannya secara harfiah'; $strEstonian = 'Bahasa Estonia'; $strExcelEdition = 'Edisi Excel'; $strExcelOptions = 'Pilihan Excel'; $strExecuteBookmarked = 'Eksekusikan pencarian dengan mengikuti penunjuk halaman'; $strExplain = 'Terangkan SQL'; $strExport = 'Ekspor'; -$strExtendedInserts = 'Penyisipan diperluas'; +$strExtendedInserts = 'INSERT memperluas'; $strExtra = 'Ekstra'; -$strFailedAttempts = 'Percobaan yang telah gagal'; +$strFailedAttempts = 'Gagal'; $strField = 'Field'; $strFieldHasBeenDropped = 'Field %s telah dihapus'; $strFields = 'Field'; @@ -241,11 +254,11 @@ $strFieldsEscapedBy = 'Field dikembalikan oleh'; $strFieldsTerminatedBy = 'Fields diputus oleh'; $strFileAlreadyExists = 'File %s sudah ada pada server. Gantikan nama file atau periksa pilihan Overwrite.'; $strFileCouldNotBeRead = 'Gagal membaca File'; -$strFileNameTemplate = 'Template nama file'; +$strFileNameTemplate = 'Konvensi nama file'; $strFileNameTemplateHelp = 'Gunakan__DB__sebagai nama Database,__TABLE__sebagai nama tabel dan %sany strftime%s sebagai spesifikasi waktu. Ekstensi akan ditambahkan secara otomatis. Teks lainnya akan dipertahankan.'; -$strFileNameTemplateRemember = 'ingat template'; +$strFileNameTemplateRemember = 'ingat konvensi'; $strFixed = 'telah diperbaiki'; -$strFlushPrivilegesNote = 'Perhatian: phpMyAdmin mengambil data tentang hak-hak dari pemakai secara langsung dari tabel Hak Istimewa (Privileges) MySQL. Isi dari tabel tersebut bisa berbeda dari Hak Istimewa (Privileges) yang digunakan oleh Server bila pernah diubah. Bila begitu disarankan untuk %sReload Hak Istimewa (Privileges)%s sebelum melanjut.'; +$strFlushPrivilegesNote = 'Perhatian: phpMyAdmin membaca data tentang pengguna secara langsung dari tabel profil pengguna MySQL. Isi dari tabel bisa saja berbeda dengan profil pengguna yang digunakan oleh Server pada saat ini bila tabel tsb. pernah diubah secara manual. Disarankan untuk %sme-reload profil pengguna%s sebelum melanjut.'; $strFlushTable = 'Tutup tabel ("FLUSH")'; $strFormEmpty = 'Data dalam form kurang !'; $strFormat = 'Format'; @@ -261,15 +274,15 @@ $strGlobal = 'global'; $strGlobalPrivileges = 'Hak Istimewa (Privileges) Global'; $strGlobalValue = 'Nilai Global'; $strGo = 'Go'; -$strGrantOption = 'Mengizinkan'; +$strGrantOption = 'Izin'; $strGreek = 'Bahasa Yunani'; -$strGzip = '"Dikompress dengan GZip"'; +$strGzip = 'Dikompress dengan GZip'; $strHasBeenAltered = 'telah diubah.'; $strHasBeenCreated = 'telah diciptakan.'; $strHaveToShow = 'Sekurang-kurangnya satu kolom harus dipilih untuk ditampilkan'; $strHebrew = 'Bahasa Yahudi'; -$strHexForBinary = 'Gunakan hexadesimal untuk file binari'; +$strHexForBinary = 'Gunakan cara hexadesimal untuk field binari'; $strHome = 'Home'; $strHomepageOfficial = 'Homepage resmi phpMyAdmin'; $strHost = 'Host'; @@ -281,7 +294,7 @@ $strId = 'ID'; $strIdxFulltext = 'Teks penuh'; $strIfYouWish = 'Jika Anda hanya ingin memuat beberapa kolom saja dari tabel, silakan gunakan tanda koma sebagai pemisah.'; $strIgnore = 'Abaikan'; -$strIgnoreInserts = 'Gunakan Ignore Inserts'; +$strIgnoreInserts = 'Gunakan perintah INSERT dengan mengabaikan kesalahan'; $strIgnoringFile = 'Abaikan file %s'; $strImportDocSQL = 'Impor file docSQL'; $strImportFiles = 'Impor file'; @@ -291,11 +304,16 @@ $strIndex = 'Indeks'; $strIndexHasBeenDropped = 'Indeks %s telah dihapus'; $strIndexName = 'Nama indeks :'; $strIndexType = 'Tipe indeks :'; +$strIndexWarningMultiple = 'Lebih dari satu kunci %s untuk kolom `%s` telah dibuat '; +$strIndexWarningPrimary = 'Kunci PRIMARY dan INDEKS sebaiknya jangan di-set secara bersamaan untuk kolom `%s`'; +$strIndexWarningTable = 'Ditemukan masalah dengan indeks dalam tabel `%s`'; +$strIndexWarningUnique = 'Kunci UNIK and INDEKS sebaiknya jangan di-set secara bersamaan untuk kolom `%s`'; $strIndexes = 'Indeks'; $strInnodbStat = 'Status dari InnoDB'; -$strInsecureMySQL = 'File konfigurasi Anda ditentukan dengan pemakai Root dan tanpa adanya Kata Sandi (sama dengan Default MySQL Privileged Account). Jika MySQL-Server dijalankan dengan sedemikian, server Anda terbuka lebar untuk suatu penyerangan. Disarankan untuk memperbaiki kelemahan keamanan (security hole) ini.'; +$strInsecureMySQL = 'File konfigurasi Anda ditentukan dengan pengguna Root dan tanpa adanya Kata Sandi (sama dengan Default MySQL Privileged Account). Jika MySQL-Server dijalankan dengan sedemikian, server Anda terbuka lebar untuk suatu penyerangan. Disarankan untuk memperbaiki kelemahan keamanan (security hole) ini.'; $strInsert = 'Sisipkan'; $strInsertAsNewRow = 'Sisipkan sebagai baris baru'; +$strInsertBookmarkTitle = 'Silakan masukkan judul untuk simpanan'; $strInsertNewRow = 'Sisipkan baris baru'; $strInsertTextfiles = 'Sisipkan data baru dari textfile pada tabel'; $strInsertedRowId = 'Menyisip baris id:'; @@ -306,11 +324,11 @@ $strInternalRelations = 'Relasi internal'; $strJapanese = 'Bahasa Jepang'; $strJumpToDB = 'Lompat langsung ke database "%s".'; -$strJustDelete = 'Tinggal hapuskan pemakai dari tabel Hak Istimewa (Privileges).'; -$strJustDeleteDescr = 'Pemakai yang "dihapus" tetap berhak untuk mengakses Server seperti biasa sampai Hak Istimewa (Privileges) di-reload.'; +$strJustDelete = 'Hapus pengguna dari dari tabel daftar pengguna.'; +$strJustDeleteDescr = 'Pengguna yang "dihapus" tetap berhak untuk mengakses Server seperti biasa sampai Hak Istimewa (Privileges) di-reload.'; $strKeepPass = 'Jangan ubah Kata Sandi'; -$strKeyname = 'Nama kunci (Keyname)'; +$strKeyname = 'Nama Kunci'; $strKill = 'Tutup'; $strKorean = 'Bahasa Korea'; @@ -335,7 +353,7 @@ $strLithuanian = 'Bahasa Lithuania'; $strLoadExplanation = 'Cara yang terbaik sudah aktif secara Default tetapi bisa dirubah bila gagal.'; $strLoadMethod = 'Caranya LOAD'; $strLocalhost = 'Lokal'; -$strLocationTextfile = 'Lokasi dari textfile'; +$strLocationTextfile = 'dari File'; $strLogPassword = 'Kata Sandi:'; $strLogServer = 'Server'; $strLogUsername = 'Nama Pengguna:'; @@ -344,7 +362,7 @@ $strLoginInformation = 'Informasi Login'; $strLogout = 'Logout'; $strMIMETypesForTable = 'TIPE MIME UNTUK TABEL'; -$strMIME_MIMEtype = 'tipe MIME'; +$strMIME_MIMEtype = 'Tipe MIME'; $strMIME_available_mime = 'Tipe MIME yang tersedia'; $strMIME_available_transform = 'Transformasi yang tersedia'; $strMIME_description = 'Deskripsi'; @@ -365,18 +383,19 @@ $strMoveTableSameNames = 'Memindahkan tabel ke diri-sendiri tidak bisa dilakukan $strMultilingual = 'berbagai bahasa'; $strMustSelectFile = 'Anda perlu pilih file untuk disisipkan terlebih dahulu.'; $strMySQLCharset = 'Charset MySQL'; -$strMySQLConnectionCollation = 'Pembandingan koneksi MySQL'; +$strMySQLConnectionCollation = 'Penyortiran koneksi MySQL'; $strMySQLReloaded = 'MySQL telah di-reload.'; $strMySQLSaid = 'MySQL menyatakan: '; $strMySQLServerProcess = 'MySQL versi %pma_s1% dijalankan pada %pma_s2% sebagai %pma_s3%'; $strMySQLShowProcess = 'Tampilkan Proses'; -$strMySQLShowStatus = 'Tampilkan informasi runtime dari MySQL'; +$strMySQLShowStatus = 'Tampilkan informasi runtime MySQL'; $strMySQLShowVars = 'Tampilkan variabel sistem MySQL'; $strName = 'Nama'; $strNeedPrimaryKey = 'Disarankan untuk menetapkan Primary Key pada tabel ini.'; $strNext = 'Berikutnya'; $strNo = 'Tidak'; +$strNoActivity = 'Tidak ada aktifitas selama %s detik atau lebih. Silakan login kembali'; $strNoDatabases = 'Database tidak ditemukan'; $strNoDatabasesSelected = 'Database belum dipilih.'; $strNoDescription = 'tanpa keterangan'; @@ -396,6 +415,7 @@ $strNoRights = 'Hak Akses Anda untuk melanjut tidak cukup!'; $strNoRowsSelected = 'Tidak ada baris yang dipilih'; $strNoSpace = 'Tidak cukup ruang untuk menyimpan %s.'; $strNoTablesFound = 'Tidak ada tabel dalam database.'; +$strNoThemeSupport = 'Tidak ada dukungan untuk desain penampilan. Mohon periksa kembali konfigurasi dan/atau desain penampilan dalam direktori %s.'; $strNoUsersFound = 'Pengguna tidak ditemukan.'; $strNoValidateSQL = 'Melewati pengesahan (validation) SQL'; $strNone = 'tanpa'; @@ -404,7 +424,7 @@ $strNotOK = 'tidak oke'; $strNotSet = '%s tabel tidak ditemukan atau tidak diset di %s'; $strNotValidNumber = ' bukan nomor baris yang berlaku!'; $strNull = 'Kosong'; -$strNumSearchResultsInTable = '%s Rekord dalam tabel %s'; +$strNumSearchResultsInTable = '%s catatan dalam tabel %s'; $strNumSearchResultsTotal = 'Jumlah: %s rekord'; $strNumTables = 'Tabel'; @@ -427,6 +447,7 @@ $strPartialText = 'Teks yang disingkat'; $strPassword = 'Kata Sandi'; $strPasswordChanged = 'Sukses mengubah Kata Sandi untuk %s .'; $strPasswordEmpty = 'Kata Sandi kosong!'; +$strPasswordHashing = 'Pengernaian Kata Sandi (Password Hashing)'; $strPasswordNotSame = 'Kata Sandi tidak sama!'; $strPdfDbSchema = 'Skema dari database "%s" - Halaman %s'; $strPdfInvalidTblName = 'Tabel "%s" tidak ditemukan!'; @@ -443,7 +464,7 @@ $strPolish = 'Polandia'; $strPortrait = 'Gambaran'; $strPos1 = 'Awal'; $strPrevious = 'Sebelumnya'; -$strPrimary = 'PRIMARY'; +$strPrimary = 'Kunci Utama'; $strPrimaryKeyHasBeenDropped = 'Kunci utama telah dihapus'; $strPrimaryKeyName = 'Nama Kunci utama diwajibkan... PRIMARY!'; $strPrimaryKeyWarning = '(Tanda nama "PRIMARY" wajib sebagai satu-satunya nama dan hanya sebagai Kunci utama saja!)'; @@ -460,26 +481,26 @@ $strPrivDescDropDb = 'Mengizinkan untuk hapus database dan tabel.'; $strPrivDescDropTbl = 'Mengizinkan untuk hapus tabel.'; $strPrivDescExecute = 'Mengizinkan untuk berjalan dengan prosedur yang tersimpan; tidak ada efek dalam versi MySQL ini.'; $strPrivDescFile = 'Mengizinkan untuk impor data dari file dan ekspor data kedalam file.'; -$strPrivDescGrant = 'Mengizinkan untuk menambah pemakai dan Hak Istimewa (Privileges) tanpa harus me-reload ulang tabel Hak Istimewa.'; +$strPrivDescGrant = 'Mengizinkan untuk menambah pengguna dan Hak Istimewa (Privileges) tanpa harus me-reload ulang tabel Hak Istimewa.'; $strPrivDescIndex = 'Mengizinkan untuk menciptakan dan hapus Indeks.'; $strPrivDescInsert = 'Mengizinkan untuk tambah dan ganti data.'; $strPrivDescLockTables = 'Mengizinkan untuk mengunci tabel dalam Thread yang lagi berjalan.'; -$strPrivDescMaxConnections = 'Membatasi jumlah koneksi baru yang diperbolehkan untuk setiap pemakai dalam batas waktu satu jam.'; -$strPrivDescMaxQuestions = 'Membatasi jumlah pencarian (Queries) yang diperbolehkan untuk setiap pemakai dalam batas waktu satu jam.'; -$strPrivDescMaxUpdates = 'Membatasi jumlah perintah untuk merubah sebuah tabel atau database untuk setiap pemakai dalam batas waktu satu jam.'; -$strPrivDescProcess3 = 'Mengizinkan untuk hentikan proses yang dimiliki pemakai lain.'; +$strPrivDescMaxConnections = 'Membatasi jumlah koneksi baru yang diperbolehkan untuk setiap pengguna dalam batas waktu satu jam.'; +$strPrivDescMaxQuestions = 'Membatasi jumlah pencarian (Queries) yang diperbolehkan untuk setiap pengguna dalam batas waktu satu jam.'; +$strPrivDescMaxUpdates = 'Membatasi jumlah perintah untuk merubah sebuah tabel atau database untuk setiap pengguna dalam batas waktu satu jam.'; +$strPrivDescProcess3 = 'Mengizinkan untuk hentikan proses yang dimiliki pengguna lain.'; $strPrivDescProcess4 = 'Mengizinkan untuk tampilkan seluruh pencarian dalam daftar proses.'; $strPrivDescReferences = 'Tidak ada efek dalam versi MySQL yang digunakan.'; $strPrivDescReload = 'Mengizinkan untuk reload stelan dari server dan untuk flush cache dari server.'; -$strPrivDescReplClient = 'Memberi hak kepada pemakai untuk menanyakan lokasi dari slaves / masters.'; +$strPrivDescReplClient = 'Memberi hak kepada pengguna untuk menanyakan lokasi dari slaves / masters.'; $strPrivDescReplSlave = 'Digunakan untuk replikasi dari slaves.'; $strPrivDescSelect = 'Mengizinkan untuk baca data.'; $strPrivDescShowDb = 'Memberi akses ke seluruh daftar database.'; $strPrivDescShutdown = 'Mengizinkan untuk shut-down server.'; -$strPrivDescSuper = 'Mengizinkan untuk tetap konek meskipun jumlah batas koneksi telah tercapai; diperlukan untuk hampir semua operasi administratif seperti stelan variabel global atau untuk mematikan sebuah Thread yang dimiliki oleh pemakai lain.'; +$strPrivDescSuper = 'Mengizinkan untuk tetap konek meskipun jumlah batas koneksi telah tercapai; diperlukan untuk hampir semua operasi administratif seperti stelan variabel global atau untuk mematikan sebuah Thread yang dimiliki oleh pengguna lain.'; $strPrivDescUpdate = 'Mengizinkan untuk ubah data.'; $strPrivDescUsage = 'Tanpa Hak Istimewa (Privileges).'; -$strPrivileges = 'Hak Akses (Privilege)'; +$strPrivileges = 'Hak Akses'; $strPrivilegesReloaded = 'Sukses reload Hak Istimewa (Privileges).'; $strProcesslist = 'Daftar proses'; $strPutColNames = 'Letakkan nama Fields pada baris pertama'; @@ -491,24 +512,24 @@ $strQueryFrame = 'Jendela Pencarian'; $strQueryOnDb = 'Pencarian SQL dalam database %s:'; $strQuerySQLHistory = 'Sejarah SQL'; $strQueryStatistics = 'Informasi statistik: Sejak dihidupkan, %s pencarian telah dikirim kepada server.'; -$strQueryTime = 'Pencarian membutuhkan %01.4f detik'; +$strQueryTime = 'pencarian membutuhkan waktu %01.4f detik'; $strQueryType = 'Tipe Pencarian'; $strQueryWindowLock = 'Jangan timpahkan pencarian ini dari jendela luar'; $strReType = 'Ketik ulang'; -$strReceived = 'Diterima'; -$strRecords = 'Rekord'; +$strReceived = 'Penerimaan'; +$strRecords = 'Catatan'; $strReferentialIntegrity = 'Cek integriti referensial:'; $strRefresh = 'Menyegarkan'; $strRelationNotWorking = 'Fasilitas penambahan untuk bekerja dengan tabel yang di-link di nonaktifkan. Untuk mengetahui sebabnya silakan klik %sdisini%s.'; $strRelationView = 'Tampilan relasi'; $strRelationalSchema = 'Skema Relational'; -$strRelations = 'Relasi'; +$strRelations = 'Tabel Relasi'; $strRelationsForTable = 'RELASI UNTUK TABEL'; -$strReloadFailed = 'Gagal me-reload MySQL.'; -$strReloadMySQL = 'Reload MySQL'; +$strReloadFailed = 'Gagal memanggil ulang tabel pengguna.'; +$strReloadMySQL = 'Panggil ulang tabel pengguna'; $strReloadingThePrivileges = 'Reload Hak Istimewa (Privileges)'; -$strRemoveSelectedUsers = 'Hapus pemakai pilihan'; +$strRemoveSelectedUsers = 'Hapus pengguna yang dipilih'; $strRenameDatabaseOK = 'Nama database %s telah diubah menjadi %s'; $strRenameTable = 'Ubah nama tabel menjadi '; $strRenameTableOK = 'Nama tabel %s telah diubah menjadi %s'; @@ -519,12 +540,12 @@ $strReplaceTable = 'Ganti data tabel dengan file'; $strReset = 'Reset'; $strResourceLimits = 'Batas dari sumber'; $strRevoke = 'Cabut'; -$strRevokeAndDelete = 'Hapus pemakai setelah cabut seluruh Hak Istimewa (Privileges) yang aktif dari pemakai yang bersangkutan.'; -$strRevokeAndDeleteDescr = 'Pemakai yang bersangkutan tetap memiliki hak untuk USAGE sampai seluruh Hak Istimewa (Privileges) di-reload kembali.'; +$strRevokeAndDelete = 'Cabut seluruh Hak Istimewa (Privileges) dari pengguna, lantas hapus pengguna tsb. dari daftar tabel pengguna.'; +$strRevokeAndDeleteDescr = 'Pengguna yang bersangkutan tetap memiliki hak untuk USAGE sampai seluruh Hak Istimewa (Privileges) di-reload kembali.'; $strRevokeMessage = 'Hak akses untuk %s telah dicabut'; $strRomanian = 'Romania'; -$strRowLength = 'Ukuran panjang baris'; -$strRowSize = ' Ukuran baris '; +$strRowLength = 'Panjangnya baris'; +$strRowSize = ' Besarnya baris '; $strRows = 'Baris'; $strRowsFrom = 'baris dimulai dari rekord #'; $strRowsModeFlippedHorizontal = 'horisontal (rotated headers)'; @@ -533,7 +554,7 @@ $strRowsModeOptions = 'diatur dengan urutan %s dan mengulang header setelah %s s $strRowsModeVertical = 'vertikal'; $strRowsStatistic = 'Statistik Baris'; $strRunQuery = 'Jalankan pencarian SQL'; -$strRunSQLQuery = 'Jalankan pencarian SQL pada database %s'; +$strRunSQLQuery = 'Melaksanakan perintah SQL pada database %s'; $strRunning = 'dijalankan pada %s'; $strRussian = 'Bahasa Rusia'; @@ -563,20 +584,21 @@ $strSearchType = 'Cari:'; $strSecretRequired = 'File konfigurasi membutuhkan susunan kata-kata rahasia (blowfish_secret).'; $strSelectADb = 'Silakan pilih database'; $strSelectAll = 'Pilih semua'; -$strSelectFields = 'Pilih fields (minimal satu):'; +$strSelectBinaryLog = 'Pilih Log binari untuk ditinjau'; +$strSelectFields = 'Pilihan field (min. satu):'; $strSelectNumRows = 'dalam susunan pemeriksaan'; $strSelectTables = 'Pilih tabel'; $strSend = 'Kirimkan ke'; -$strSent = 'Dikirim'; +$strSent = 'Pengiriman'; $strServer = 'Server'; $strServerChoice = 'Pilihan Server'; $strServerNotResponding = 'Server tidak menjawab'; $strServerStatus = 'Informasi Runtime'; -$strServerStatusUptime = 'MySQL server ini telah berjalan secara berturut-turut selama %s. Server dijalankan pada %s.'; -$strServerTabProcesslist = 'Proses-Proses'; +$strServerStatusUptime = 'MySQL server ini telah berjalan secara berturut-turut selama %s. Server dijalankan pada tanggal %s.'; +$strServerTabProcesslist = 'Proses Aktif'; $strServerTabVariables = 'Variabel'; $strServerTrafficNotes = 'Server traffic: Tabel ini menampilkan statistik jaringan lalu-lintas server MySQL sejak dihidupkan.'; -$strServerVars = 'Variabel dan stelan dari server'; +$strServerVars = 'Variabel dan penyetelan server'; $strServerVersion = 'Versi Server'; $strSessionValue = 'Nilai dari Session'; $strSetEnumVal = 'Jika tipe field sama dengan "enum" atau "set", silakan masukkan nilai dengan format: \'a\',\'b\',\'c\'...
Jika sebuah backslash ("\") atau suatu tanda kutip ("\'") diperlukan, tanda tersebut perlu ditutupi dengan tanda backslash (seb. contoh \'\\\\xyz\' atau \'a\\\'b\').'; @@ -586,10 +608,10 @@ $strShowColor = 'Tampilkan warna'; $strShowDatadictAs = 'Format dari kamus data'; $strShowFullQueries = 'Tampilkan pencarian yang lengkap'; $strShowGrid = 'Tampilkan garis'; -$strShowPHPInfo = 'Tampilkan informasi tentang PHP'; +$strShowPHPInfo = 'Tampilkan informasi PHP'; $strShowTableDimension = 'Tampilkan ukuran dari tabel'; $strShowTables = 'Tampilkan tabel'; -$strShowThisQuery = ' Tampilkan ulang pencarian SQL '; +$strShowThisQuery = ' Tampilkan ulang perintah SQL '; $strShowingRecords = 'Tampilan baris'; $strSimplifiedChinese = 'Bahasa Cina sederhana'; $strSingly = '(unik)'; @@ -604,20 +626,21 @@ $strSplitWordsWithSpace = 'Kata dipisahkan oleh karakter spasi (" ").'; $strStatCheckTime = 'Pemeriksaan terakhir'; $strStatCreateTime = 'Pembuatan'; $strStatUpdateTime = 'Update terakhir'; -$strStatement = 'Pernyataan'; +$strStatement = 'Keterangan'; $strStatus = 'Status'; $strStrucCSV = 'Data CSV'; $strStrucData = 'Struktur dan data'; -$strStrucDrop = 'Menambahkan \'Hapus tabel\''; +$strStrucDrop = 'Berikut \'HAPUS TABEL\''; $strStrucExcelCSV = 'CSV untuk data MS Excel'; $strStrucNativeExcel = 'Data asli MS Excel'; $strStrucOnly = 'Struktur saja'; -$strStructPropose = 'Ajukan struktur tabel'; +$strStructPropose = 'Menganalisa struktur tabel'; $strStructure = 'Struktur'; $strSubmit = 'Kirim'; $strSuccess = 'Sukses menjalankan perintah SQL'; $strSum = 'Jumlah'; $strSwedish = 'Bahasa Swedia'; +$strSwitchToDatabase = 'Pindah ke database yang disalin'; $strSwitchToTable = 'Pindah ke tabel salinan'; $strTable = 'Tabel'; @@ -639,11 +662,11 @@ $strThai = 'Bahasa Thailand'; $strTheContent = 'Isi file telah disisipkan.'; $strTheContents = 'Isi file telah diganti dengan isi tabel yang dipilih dengan kunci utama atau kunci unik.'; $strTheTerminator = 'Pemisah field.'; -$strTheme = 'Tema / Gaya'; +$strTheme = 'Desain Penampilan'; $strThisHost = 'Host yang ini'; $strThisNotDirectory = 'Ini bukan direktori'; $strThreadSuccessfullyKilled = 'Sukses hentikan Thread %s.'; -$strTime = 'Waktu'; +$strTime = 'Jangka Waktu'; $strToggleScratchboard = 'pindah buku catatan (Scratchboard)'; $strTotal = 'jumlah'; $strTotalUC = 'Jumlah'; @@ -666,30 +689,31 @@ $strTurkish = 'Bahasa Turki'; $strType = 'Jenis'; $strUkrainian = 'Bahasa Ukrainia'; -$strUncheckAll = 'Uncheck semua'; +$strUncheckAll = 'Hapus pilihan'; $strUnicode = 'Unikode'; $strUnique = 'Unik'; $strUnknown = 'tidak diketahui'; $strUnselectAll = 'Unselect semua'; $strUpdComTab = 'Mohon belajari dokumentasi untuk mengetahui cara meng-update tabel Column_comments Anda'; $strUpdatePrivMessage = 'Hak Akses (privilege) untuk %s telah di-update.'; -$strUpdateProfileMessage = 'Profil pemakai telah di-update.'; +$strUpdateProfileMessage = 'Profil pengguna telah di-update.'; $strUpdateQuery = 'Update proses pencarian'; $strUpgrade = 'Disarankan untuk meng-update ke %s versi %s atau lebih baru.'; $strUsage = 'Penggunaan'; -$strUseBackquotes = 'Gunakan backquotes dengan nama tabel dan nama field'; +$strUseBackquotes = 'Nama tabel dan nama field dalam tanda kutip biasa'; $strUseHostTable = 'Gunakan Host Table'; +$strUseTabKey = 'Gunakan tombol TAB untuk maju dari angka ke angka atau gunakan CTRL+panah untuk maju kemana saja'; $strUseTables = 'Gunakan tabel'; $strUseTextField = 'Gunakan text field'; $strUseThisValue = 'gunakan nilai ini'; -$strUser = 'Pemakai'; -$strUserAlreadyExists = 'Pemakai %s telah terdaftar!'; -$strUserEmpty = 'Nama pemakai masih kosong!'; -$strUserName = 'Nama pemakai'; -$strUserNotFound = 'Pemakai yang dipilih tidak ditemukan pada tabel hak (privilege table).'; -$strUserOverview = 'Pandangan Umum Pemakai'; -$strUsersDeleted = 'Sukses menghapus Pemakai yang dipilih.'; -$strUsersHavingAccessToDb = 'Pemakai memiliki akses ke "%s"'; +$strUser = 'Pengguna'; +$strUserAlreadyExists = 'Pengguna %s telah terdaftar!'; +$strUserEmpty = 'Nama pengguna masih kosong!'; +$strUserName = 'Nama pengguna'; +$strUserNotFound = 'Pengguna yang dipilih tidak ditemukan pada tabel hak (privilege table).'; +$strUserOverview = 'Pandangan Umum Pengguna'; +$strUsersDeleted = 'Sukses menghapus Pengguna yang dipilih.'; +$strUsersHavingAccessToDb = 'Pengguna memiliki akses ke "%s"'; $strValidateSQL = 'Mengesahkan (validate) SQL'; $strValidatorError = 'Pengesahan SQL tidak dapat disahkan. Mohon periksa kembali ekstension PHP yang diperlukan seperti yang tercatat dalam %sdokumentasi%s.'; @@ -705,38 +729,20 @@ $strWelcome = 'Selamat Datang di %s'; $strWestEuropean = 'Eropa Barat'; $strWildcard = 'wildcard'; $strWindowNotFound = 'Mengupdate jendela browser gagal. Ada kemungkinan Anda telah menutup jendela induknya atau pilihan keamanan pada browser Anda melarang untuk mengupdate dengan cara Cross-Window'; -$strWithChecked = 'Dengan pilihan:'; +$strWithChecked = 'yang ditandai:'; $strWritingCommentNotPossible = 'Penulisan komentar tidak dapat dilaksanakan'; $strWritingRelationNotPossible = 'Penulisan relasi tidak dapat dilaksanakan'; -$strWrongUser = 'Nama Pemakai/Kata Sandi salah. Akses ditolak.'; +$strWrongUser = 'Nama Pengguna/Kata Sandi salah. Akses ditolak.'; $strXML = 'XML'; $strYes = 'Ya'; $strZeroRemovesTheLimit = 'Perhatian: Perubahan pilihan ini ke posisi 0 (zero) akan menghapus batas yang telah ditentukan.'; -$strZip = '"Dikompress dengan Zip"'; +$strZip = 'Dikompress dengan Zip'; -$strAddFields = 'Add %s field(s)'; //to translate -$strInsertBookmarkTitle = 'Please insert bookmark title'; //to translate -$strNoThemeSupport = 'No themes support, please check your configuration and/or your themes in directory %s.'; //to translate -$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate -$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate -$strBinLogName = 'Log name'; //to translate -$strBinLogPosition = 'Position'; //to translate -$strBinLogEventType = 'Event type'; //to translate -$strBinLogServerId = 'Server ID'; //to translate -$strBinLogOriginalPosition = 'Original position'; //to translate -$strBinLogInfo = 'Information'; //to translate -$strBinaryLog = 'Binary log'; //to translate -$strSelectBinaryLog = 'Select binary log to view'; //to translate -$strDBCopy = 'Copy database to'; //to translate -$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate -$strSwitchToDatabase = 'Switch to copied database'; //to translate -$strPasswordHashing = 'Password Hashing'; //to translate -$strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate -$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate -$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/italian-iso-8859-1.inc.php b/lang/italian-iso-8859-1.inc.php index 684ca5087..220796ee9 100644 --- a/lang/italian-iso-8859-1.inc.php +++ b/lang/italian-iso-8859-1.inc.php @@ -743,4 +743,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/italian-utf-8.inc.php b/lang/italian-utf-8.inc.php index 2e8ae6415..19951966f 100644 --- a/lang/italian-utf-8.inc.php +++ b/lang/italian-utf-8.inc.php @@ -744,4 +744,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/japanese-euc.inc.php b/lang/japanese-euc.inc.php index 24189484c..699cca6ac 100644 --- a/lang/japanese-euc.inc.php +++ b/lang/japanese-euc.inc.php @@ -30,9 +30,10 @@ $strAccessDeniedExplanation = 'phpMyAdmin $strAction = '¹'; $strAddAutoIncrement = 'AUTO_INCREMENTͤɲ'; $strAddConstraints = 'ɲ'; -$strAddDeleteColumn = 'եΡɲá'; -$strAddDeleteRow = 'ԤΡɲá'; +$strAddDeleteColumn = 'եΡɲ/'; +$strAddDeleteRow = 'ԤΡɲ/'; $strAddDropDatabase = 'DROP DATABASEפɲ'; +$strAddFields = '%s ĤΥեɤɲ'; $strAddHeaderComment = 'إåإॳȤɲ (\\n Dz)'; $strAddIfNotExists = 'IF NOT EXISTSפɲ'; $strAddIntoComments = 'ɲ'; @@ -73,8 +74,14 @@ $strBack = ' $strBaltic = 'ХȽ'; $strBeginCut = 'ڤ곫'; $strBeginRaw = 'RAW '; +$strBinLogEventType = '٥ȥ'; +$strBinLogInfo = ''; +$strBinLogName = '̾'; +$strBinLogPosition = ''; +$strBinLogServerId = 'С ID'; $strBinary = ' Хʥ '; $strBinaryDoNotEdit = ' Хʥ - ޤ'; +$strBinaryLog = 'Хʥ'; $strBookmarkAllUsers = '٤ƤΥ桼Υ֥åޡ'; $strBookmarkDeleted = '֥åޡ˺ޤ'; $strBookmarkLabel = '٥'; @@ -97,6 +104,8 @@ $strCantRenameIdxToPrimary = ' $strCantUseRecodeIconv = 'iconvlibiconvrecode_string Τɤδؿѽޤphp åƤ'; $strCardinality = 'ǥʥƥ'; $strCarriage = 'å: \\r'; +$strCaseInsensitive = 'ѻ羮̤ʤ'; +$strCaseSensitive = 'ѻ羮̤'; $strCentralEuropean = '衼åѿ'; $strChange = 'ѹ'; $strChangeCopyMode = 'ƱøäΥ桼...'; @@ -140,7 +149,7 @@ $strCreate = ' $strCreateIndex = ' %s Υǥåκ'; $strCreateIndexTopic = 'ǥåκ'; $strCreateNewDatabase = 'DBޤ'; -$strCreateNewTable = 'ߤDB˿ơ֥ޤ %s --> '; +$strCreateNewTable = 'ߤDB˿ơ֥ %s --> '; $strCreatePage = 'ڡκ'; $strCreatePdfFeat = 'PDF ǽ'; $strCreationDates = '//դɲ'; @@ -195,7 +204,7 @@ $strDictionary = ' $strDisableForeignChecks = 'θ̵'; $strDisabled = '̵'; $strDisplayFeat = 'ơ֥ɽǽ'; -$strDisplayOrder = 'ȯɽ:'; +$strDisplayOrder = 'ɽ:'; $strDisplayPDF = 'PDF ޤɽ'; $strDoAQuery = '"QUERY"¹ (磻ɥ: "%")'; $strDoYouReally = '˼¹ԤƤɤǤ --> '; @@ -224,7 +233,7 @@ $strEnglish = ' $strEnglishPrivileges = ' : MySQLø̾ϱѸɽƤޤ'; $strError = '顼'; $strEstonian = 'ȥ˥'; -$strExcelEdition = 'Excel '; +$strExcelEdition = 'Excel μ'; $strExcelOptions = 'Excel ץ'; $strExecuteBookmarked = '֥åޡ줿¹'; $strExplain = 'Explain SQL'; @@ -297,8 +306,10 @@ $strInnodbStat = 'InnoDB $strInsecureMySQL = 'ʤΥե졼ե꤬ MySQL ǥեȤøȤˤʤäƤޤ (root 桼ǥѥɤʤ) MySQL С⤳ΥǥեưƤΤǡԤФ̵ǤΥƥۡɬĤƲ'; $strInsert = 'ɲ'; $strInsertAsNewRow = 'ԤȤƤɲ'; +$strInsertBookmarkTitle = '֥åޡΥȥϤƤ'; $strInsertNewRow = 'Ԥɲ'; $strInsertTextfiles = 'ơ֥˥ƥȥեɲ'; +$strInsertedRowId = 'Ȥ ID:'; $strInsertedRows = 'ɲä줿Կ:'; $strInstructions = '»'; $strInternalNotNecessary = '* InnoDB ¸ߤ硢졼ɬפǤϤޤ'; @@ -350,7 +361,7 @@ $strMaximumSize = ' $strModifications = 'ޤ'; $strModify = ''; $strModifyIndexTopic = 'ǥåѹ'; -$strMoreStatusVars = 'ѿξ'; +$strMoreStatusVars = '¾ѿξ'; $strMoveTable = 'ơ֥(database.table)˰ư:'; $strMoveTableOK = 'ơ֥ %s %s ưޤ'; $strMoveTableSameNames = 'Ʊơ֥˰ưǤޤ!'; @@ -387,6 +398,7 @@ $strNoQuery = 'SQL $strNoRights = 'øäƤʤΤǤޤ'; $strNoRowsSelected = 'ԤޤǤ'; $strNoTablesFound = 'ߤ DB ˥ơ֥Ϥޤ'; +$strNoThemeSupport = 'ơޤݡȤƤޤȥơޥǥ쥯ȥ %s ǧƤ'; $strNoUsersFound = '桼ϸĤޤǤ'; $strNoValidateSQL = 'SQL ڤå'; $strNone = '̵'; @@ -424,6 +436,7 @@ $strPdfNoTables = ' $strPerHour = ''; $strPerMinute = '/ʬ'; $strPerSecond = '/'; +$strPersian = 'ڥ륷'; $strPhoneBook = 'Ģ'; $strPhp = 'PHP ɤκ'; $strPmaDocumentation = 'phpMyAdmin Υɥ'; @@ -501,6 +514,7 @@ $strRenameTable = ' $strRenameTableOK = '%s %s ̾ѹޤ'; $strRepairTable = 'ơ֥줷ޤ'; $strReplace = '֤'; +$strReplaceNULLBy = 'NULL ʸ֤'; $strReplaceTable = 'եǥơ֥֤'; $strReset = 'ꥻå'; $strResourceLimits = ' '; @@ -514,7 +528,7 @@ $strRowSize = ' $strRows = ''; $strRowsFrom = 'Ϲ'; $strRowsModeHorizontal = 'ʿ'; -$strRowsModeOptions = ': %s : %s ĥإå֤ȯɽ'; +$strRowsModeOptions = ': %s : %s ĥإå֤ɽ'; $strRowsModeVertical = 'ľ'; $strRowsStatistic = 'Ԥ'; $strRunQuery = 'μ¹'; @@ -566,14 +580,14 @@ $strServerVersion = ' $strSessionValue = 'å'; $strSetEnumVal = 'եɥפ"enum""set"ξͤΥեޥåȤȤäϤƲ: \'a\',\'b\',\'c\'...
Хåå"\"ϥȡ"\'"פϤȡƬ˥ХååդƲ: \'\\\\xyz\' or \'a\\\'b\'ס'; $strShow = 'ɽ'; -$strShowAll = 'ȯɽ'; +$strShowAll = 'ɽ'; $strShowColor = 'ɽ'; $strShowDatadictAs = 'ǡեޥå'; $strShowFullQueries = 'ե륯ɽ'; $strShowGrid = 'åɤɽ'; $strShowPHPInfo = 'PHP '; $strShowTableDimension = 'ơ֥礭ɽ'; -$strShowTables = 'ơ֥ȯɽ'; +$strShowTables = 'ơ֥ɽ'; $strShowThisQuery = ' ¹Ԥɽ'; $strShowingRecords = '쥳ɽ'; $strSimplifiedChinese = 'λ'; @@ -603,6 +617,7 @@ $strSubmit = ' $strSuccess = 'SQL ˼¹Ԥޤ'; $strSum = ''; $strSwedish = 'ǥ'; +$strSwitchToDatabase = 'ԡǡ١ڤؤ'; $strSwitchToTable = 'ԡơ֥ڤؤ'; $strTable = 'ơ֥ '; @@ -643,9 +658,9 @@ $strUnicode = ' $strUnique = 'ͣ'; $strUnknown = ''; $strUnselectAll = ''; -$strUpdatePrivMessage = '%s øåץǡȤޤ'; -$strUpdateProfileMessage = 'ץեåץǡȤޤ'; -$strUpdateQuery = 'Υåץǡ'; +$strUpdatePrivMessage = '%s øޤ'; +$strUpdateProfileMessage = 'ץեޤ'; +$strUpdateQuery = 'ι'; $strUpgrade = '%s %s ܹԤ˥åץ졼ɤ٤Ǥ'; $strUsage = ''; $strUseBackquotes = 'եȤǥơ֥̾ե̾Ϥ'; @@ -670,7 +685,7 @@ $strViewDumpDB = 'DB $strViewDumpDatabases = 'ǡ١Υץӥ塼 ()'; $strWebServerUploadDirectory = '֥Сǥåץ'; -$strWebServerUploadDirectoryError = 'åץɤԤǥ쥯ȥ꤬ޤ'; +$strWebServerUploadDirectoryError = 'åץɤԤǥ쥯ȥ꤬ޤ'; $strWelcome = '%s ؤ褦'; $strWestEuropean = '衼åѿ'; $strWildcard = '磻ɥ'; @@ -689,14 +704,23 @@ $strZeroRemovesTheLimit = ' $strZip = '"zip "'; // To translate: +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate + +$strBinLogOriginalPosition = 'Original position'; //to translate -$strCaseInsensitive = 'case-insensitive'; //to translate -$strCaseSensitive = 'case-sensitive'; //to translate $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate +$strCompatibleHashing = 'MySQL 4.0 ߴ'; //to translate +$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate +$strDBCopy = 'Copy database to'; //to translate $strDropDatabaseStrongWarning = 'You are about to DESTROY a complete database!'; //to translate -$strInsertedRowId = 'Inserted row id:'; //to translate +$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate + +$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate +$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate +$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strLatexContinuedCaption = 'Continued table caption';//to translate @@ -709,16 +733,20 @@ $strMIME_transformation_options = 'Transformation options';//to translate $strMIME_transformation_options_note = 'Please enter the values for transformation options using this format: \'a\',\'b\',\'c\'...
If you ever need to put a backslash ("\") or a single quote ("\'") amongst those values, backslashes it (for example \'\\\\xyz\' or \'a\\\'b\').';//to translate $strMIME_without = 'MIME-types printed in italics do not have a seperate transformation function';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate $strNoSpace = 'Insufficient space to save the file %s.'; //to translate $strOperator = 'Operator'; //to translate +$strPasswordHashing = 'Password Hashing'; //to translate + $strQueryTime = 'Query took %01.4f sec';//to translate $strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate -$strReplaceNULLBy = 'Replace NULL by'; //to translate $strRowsModeFlippedHorizontal = 'horizontal (rotated headers)';//to translate +$strSelectBinaryLog = 'Select binary log to view'; //to translate + $strTakeIt = 'take it'; //to translate $strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate $strTransformation_image_jpeg__inline = 'Displays a clickable thumbnail; options: width,height in pixels (keeps the original ratio)'; //to translate @@ -734,29 +762,11 @@ $strTransformation_text_plain__unformatted = 'Displays HTML code as HTML entitie $strTruncateQueries = 'Truncate Shown Queries'; //to translate $strUpdComTab = 'Please see Documentation on how to update your Column_comments Table'; //to translate +$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate $strUsersHavingAccessToDb = 'Users having access to "%s"'; //to translate -$strPersian = 'Persian'; //to translate -$strAddFields = 'Add %s field(s)'; //to translate -$strInsertBookmarkTitle = 'Please insert bookmark title'; //to translate -$strNoThemeSupport = 'No themes support, please check your configuration and/or your themes in directory %s.'; //to translate -$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate -$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate -$strBinLogName = 'Log name'; //to translate -$strBinLogPosition = 'Position'; //to translate -$strBinLogEventType = 'Event type'; //to translate -$strBinLogServerId = 'Server ID'; //to translate -$strBinLogOriginalPosition = 'Original position'; //to translate -$strBinLogInfo = 'Information'; //to translate -$strBinaryLog = 'Binary log'; //to translate -$strSelectBinaryLog = 'Select binary log to view'; //to translate -$strDBCopy = 'Copy database to'; //to translate -$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate -$strSwitchToDatabase = 'Switch to copied database'; //to translate -$strPasswordHashing = 'Password Hashing'; //to translate -$strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate -$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate -$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/japanese-sjis.inc.php b/lang/japanese-sjis.inc.php index 029766e6e..6f059bae1 100644 --- a/lang/japanese-sjis.inc.php +++ b/lang/japanese-sjis.inc.php @@ -7,7 +7,6 @@ */ $charset = 'SHIFT_JIS'; -$allow_recoding = TRUE; $text_dir = 'ltr'; $left_font_family = 'verdana, arial, helvetica, geneva, sans-serif'; $right_font_family = 'arial, helvetica, geneva, sans-serif'; @@ -31,9 +30,10 @@ $strAccessDeniedExplanation = 'phpMyAdmin $strAction = 's'; $strAddAutoIncrement = 'uAUTO_INCREMENTvllj'; $strAddConstraints = 'lj'; -$strAddDeleteColumn = 'tB[h́ulj^폜v'; -$strAddDeleteRow = 'śulj^폜v'; +$strAddDeleteColumn = 'tB[h́ulj/폜v'; +$strAddDeleteRow = 'śulj/폜v'; $strAddDropDatabase = 'uDROP DATABASEvlj'; +$strAddFields = '%s ̃tB[hlj'; $strAddHeaderComment = 'wb_[փJX^Rglj (\\n ʼns)'; $strAddIfNotExists = 'uIF NOT EXISTSvlj'; $strAddIntoComments = 'Rglj'; @@ -74,8 +74,14 @@ $strBack = ' $strBaltic = 'og'; $strBeginCut = 'Jn'; $strBeginRaw = 'RAW Jn'; +$strBinLogEventType = 'Cxg^Cv'; +$strBinLogInfo = ''; +$strBinLogName = 'O'; +$strBinLogPosition = 'ʒu'; +$strBinLogServerId = 'T[o[ ID'; $strBinary = ' oCi '; $strBinaryDoNotEdit = ' oCi - Co܂'; +$strBinaryLog = 'oCiO'; $strBookmarkAllUsers = 'ׂẴ[U[̃ubN}[NANZXo'; $strBookmarkDeleted = 'ubN}[N𐳏ɍ폜܂B'; $strBookmarkLabel = 'x'; @@ -98,6 +104,8 @@ $strCantRenameIdxToPrimary = ' $strCantUseRecodeIconv = 'iconvAlibiconvArecode_string ̂ǂ̊gpo܂Bphp ̐ݒ`FbNĂB'; $strCardinality = 'J[fBieB'; $strCarriage = 'LbW^[: \\r'; +$strCaseInsensitive = 'p̑召ʂȂ'; +$strCaseSensitive = 'p̑召ʂ'; $strCentralEuropean = '[bpl'; $strChange = 'ύX'; $strChangeCopyMode = 'VK̃[U[...'; @@ -141,9 +149,9 @@ $strCreate = ' $strCreateIndex = ' %s ̗̃CfbNX̍쐬'; $strCreateIndexTopic = 'VCfbNX̍쐬'; $strCreateNewDatabase = 'VDB쐬܂B'; -$strCreateNewTable = '݂DBɐVe[u쐬܂B %s --> '; +$strCreateNewTable = '݂DBɐVe[u쐬 %s --> '; $strCreatePage = 'VKy[W̍쐬'; -$strCreatePdfFeat = 'PDF 쐬@\\'; +$strCreatePdfFeat = 'PDF 쐬@\ '; $strCreationDates = '쐬/XV/̓tlj'; $strCriteria = 'i݊'; $strCroatian = 'NA`A'; @@ -196,7 +204,7 @@ $strDictionary = ' $strDisableForeignChecks = 'OL[̌'; $strDisabled = ''; $strDisplayFeat = 'e[u\@\ '; -$strDisplayOrder = '\:'; +$strDisplayOrder = '\:'; $strDisplayPDF = 'PDF XL[}̕\'; $strDoAQuery = '"QUERY"s (ChJ[h: "%")'; $strDoYouReally = '{ɎsĂǂłH --> '; @@ -225,7 +233,7 @@ $strEnglish = ' $strEnglishPrivileges = ' : MySQL̖̓O͉pŕ\Ă܂B'; $strError = 'G['; $strEstonian = 'GXgjA'; -$strExcelEdition = 'Excel '; +$strExcelEdition = 'Excel ̎'; $strExcelOptions = 'Excel IvV'; $strExecuteBookmarked = 'ubN}[NꂽNG[s'; $strExplain = 'Explain SQL'; @@ -298,8 +306,10 @@ $strInnodbStat = 'InnoDB $strInsecureMySQL = 'Ȃ̃RtBO[Vt@C̐ݒ肪 MySQL ftHg̓AJEgɂȂĂ܂ (root [U[ŃpX[hȂ) B MySQL T[o[̃ftHgݒœ삵Ă̂ŁAN҂ɑĖhłB̃ZLeB[z[͕KĉB'; $strInsert = 'lj'; $strInsertAsNewRow = 'VsƂĂ̒lj'; +$strInsertBookmarkTitle = 'ubN}[Ñ^Cg͂ĂB'; $strInsertNewRow = 'Vs̒lj'; $strInsertTextfiles = 'e[uɃeLXgt@C̒lj'; +$strInsertedRowId = 'CT[gs ID:'; $strInsertedRows = 'ljꂽs:'; $strInstructions = '{'; $strInternalNotNecessary = '* InnoDB ݂ꍇA[V͕Kvł͂܂B'; @@ -351,7 +361,7 @@ $strMaximumSize = ' $strModifications = '𐳂C܂B'; $strModify = 'C'; $strModifyIndexTopic = 'CfbNX̕ύX'; -$strMoreStatusVars = 'ɕϐ̏'; +$strMoreStatusVars = '̑̕ϐ̏'; $strMoveTable = 'e[u(database.table)Ɉړ:'; $strMoveTableOK = 'e[u %s %s ړ܂B'; $strMoveTableSameNames = 'e[uɈړł܂!'; @@ -388,6 +398,7 @@ $strNoQuery = 'SQL $strNoRights = 'ݓĂȂ̂łɓ܂B'; $strNoRowsSelected = 's͑I܂łB'; $strNoTablesFound = '݂ DB Ƀe[u͂܂B'; +$strNoThemeSupport = 'e[}T|[gĂ܂Bݒƃe[}fBNg %s mFĂB'; $strNoUsersFound = 'Y[U[͌܂łB'; $strNoValidateSQL = 'SQL XLbv'; $strNone = ''; @@ -425,6 +436,7 @@ $strPdfNoTables = ' $strPerHour = ''; $strPerMinute = '/'; $strPerSecond = '/b'; +$strPersian = 'yVA'; $strPhoneBook = 'db'; $strPhp = 'PHP R[h̍쐬'; $strPmaDocumentation = 'phpMyAdmin ̃hLg'; @@ -502,6 +514,7 @@ $strRenameTable = ' $strRenameTableOK = '%s %s ɖOύX܂B'; $strRepairTable = 'e[u܂B'; $strReplace = 'u'; +$strReplaceNULLBy = 'NULL w̕Œu'; $strReplaceTable = 't@CŃe[uu'; $strReset = 'Zbg'; $strResourceLimits = ' \[X̐'; @@ -513,9 +526,9 @@ $strRomanian = ' $strRowLength = 's̒'; $strRowSize = ' s̃TCY '; $strRows = 's'; -$strRowsFrom = 'Jns '; +$strRowsFrom = 'Jns'; $strRowsModeHorizontal = ''; -$strRowsModeOptions = ': %s : %s wb_[JԂ\'; +$strRowsModeOptions = ': %s : %s wb_[JԂ\'; $strRowsModeVertical = 'd'; $strRowsStatistic = 's̓v'; $strRunQuery = 'NG[̎s'; @@ -567,14 +580,14 @@ $strServerVersion = ' $strSessionValue = 'ZbVl'; $strSetEnumVal = 'tB[h^Cv"enum""set"̏ꍇ͒l̃tH[}bggē͂ĉ: \'a\',\'b\',\'c\'...
obNXbVu"\"v̓NI[gu"\'"v͂ƁAɃobNXbVtĉu: \'\\\\xyz\' or \'a\\\'b\'vB'; $strShow = '\'; -$strShowAll = 'SĔ\ '; +$strShowAll = 'Sĕ\'; $strShowColor = 'F\'; $strShowDatadictAs = 'f[^tH[}bg'; $strShowFullQueries = 'tNG[\'; $strShowGrid = 'Obh̕\'; $strShowPHPInfo = 'PHP '; $strShowTableDimension = 'e[ȗ傫\'; -$strShowTables = 'e[u̔\ '; +$strShowTables = 'e[u̕\'; $strShowThisQuery = ' sNG[ɕ\'; $strShowingRecords = 'R[h\'; $strSimplifiedChinese = 'ȑ̎'; @@ -604,6 +617,7 @@ $strSubmit = ' $strSuccess = 'SQL NG[Ɏs܂B'; $strSum = 'v'; $strSwedish = 'XEF[f'; +$strSwitchToDatabase = 'Rs[f[^x[Xɐւ'; $strSwitchToTable = 'Rs[e[uɐւ'; $strTable = 'e[u '; @@ -644,9 +658,9 @@ $strUnicode = ' $strUnique = 'B'; $strUnknown = 's'; $strUnselectAll = 'S'; -$strUpdatePrivMessage = '%s ̓Abvf[g܂B'; -$strUpdateProfileMessage = 'vt@CAbvf[g܂B'; -$strUpdateQuery = 'NG[̃Abvf[g'; +$strUpdatePrivMessage = '%s ̓XV܂B'; +$strUpdateProfileMessage = 'vt@CXV܂B'; +$strUpdateQuery = 'NG[̍XV'; $strUpgrade = '%s %s ڍsɃAbvO[hׂłB'; $strUsage = 'gp'; $strUseBackquotes = 'tNI[gŃe[utB[h͂'; @@ -671,7 +685,7 @@ $strViewDumpDB = 'DB $strViewDumpDatabases = 'f[^x[X̃_vr[ (XL[})'; $strWebServerUploadDirectory = 'EFuT[o[ŃAbv[h'; -$strWebServerUploadDirectoryError = 'Abv[hsfBNg܂BB'; +$strWebServerUploadDirectoryError = 'Abv[hsfBNg܂B'; $strWelcome = '%s ւ悤'; $strWestEuropean = '[bpl'; $strWildcard = 'ChJ[h'; @@ -690,14 +704,23 @@ $strZeroRemovesTheLimit = ' $strZip = '"zip "'; // To translate: +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate + +$strBinLogOriginalPosition = 'Original position'; //to translate -$strCaseInsensitive = 'case-insensitive'; //to translate -$strCaseSensitive = 'case-sensitive'; //to translate $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate +$strCompatibleHashing = 'MySQL 4.0 ݊'; //to translate +$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate +$strDBCopy = 'Copy database to'; //to translate $strDropDatabaseStrongWarning = 'You are about to DESTROY a complete database!'; //to translate -$strInsertedRowId = 'Inserted row id:'; //to translate +$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate + +$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate +$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate +$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strLatexContinuedCaption = 'Continued table caption';//to translate @@ -710,16 +733,20 @@ $strMIME_transformation_options = 'Transformation options';//to translate $strMIME_transformation_options_note = 'Please enter the values for transformation options using this format: \'a\',\'b\',\'c\'...
If you ever need to put a backslash ("\") or a single quote ("\'") amongst those values, backslashes it (for example \'\\\\xyz\' or \'a\\\'b\').';//to translate $strMIME_without = 'MIME-types printed in italics do not have a seperate transformation function';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate $strNoSpace = 'Insufficient space to save the file %s.'; //to translate $strOperator = 'Operator'; //to translate +$strPasswordHashing = 'Password Hashing'; //to translate + $strQueryTime = 'Query took %01.4f sec';//to translate $strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate -$strReplaceNULLBy = 'Replace NULL by'; //to translate $strRowsModeFlippedHorizontal = 'horizontal (rotated headers)';//to translate +$strSelectBinaryLog = 'Select binary log to view'; //to translate + $strTakeIt = 'take it'; //to translate $strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate $strTransformation_image_jpeg__inline = 'Displays a clickable thumbnail; options: width,height in pixels (keeps the original ratio)'; //to translate @@ -735,29 +762,11 @@ $strTransformation_text_plain__unformatted = 'Displays HTML code as HTML entitie $strTruncateQueries = 'Truncate Shown Queries'; //to translate $strUpdComTab = 'Please see Documentation on how to update your Column_comments Table'; //to translate +$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate $strUsersHavingAccessToDb = 'Users having access to "%s"'; //to translate -$strPersian = 'Persian'; //to translate -$strAddFields = 'Add %s field(s)'; //to translate -$strInsertBookmarkTitle = 'Please insert bookmark title'; //to translate -$strNoThemeSupport = 'No themes support, please check your configuration and/or your themes in directory %s.'; //to translate -$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate -$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate -$strBinLogName = 'Log name'; //to translate -$strBinLogPosition = 'Position'; //to translate -$strBinLogEventType = 'Event type'; //to translate -$strBinLogServerId = 'Server ID'; //to translate -$strBinLogOriginalPosition = 'Original position'; //to translate -$strBinLogInfo = 'Information'; //to translate -$strBinaryLog = 'Binary log'; //to translate -$strSelectBinaryLog = 'Select binary log to view'; //to translate -$strDBCopy = 'Copy database to'; //to translate -$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate -$strSwitchToDatabase = 'Switch to copied database'; //to translate -$strPasswordHashing = 'Password Hashing'; //to translate -$strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate -$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate -$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/japanese-utf-8.inc.php b/lang/japanese-utf-8.inc.php index a8a659c55..48f5ceee8 100644 --- a/lang/japanese-utf-8.inc.php +++ b/lang/japanese-utf-8.inc.php @@ -6,7 +6,7 @@ * Tadashi Jokagi*/ -$charset = 'utf-8'; +$charset = 'UTF-8'; $allow_recoding = TRUE; $text_dir = 'ltr'; $left_font_family = 'verdana, arial, helvetica, geneva, sans-serif'; @@ -31,9 +31,10 @@ $strAccessDeniedExplanation = 'phpMyAdmin は、MySQL サーバーに接続し $strAction = '実行'; $strAddAutoIncrement = '「AUTO_INCREMENT」値を追加'; $strAddConstraints = '制限追加'; -$strAddDeleteColumn = 'フィールド列の「追加/削除」'; -$strAddDeleteRow = '条件行の「追加/削除」'; +$strAddDeleteColumn = 'フィールド列の「追加/削除」'; +$strAddDeleteRow = '条件行の「追加/削除」'; $strAddDropDatabase = '「DROP DATABASE」を追加'; +$strAddFields = '%s 個のフィールドを追加'; $strAddHeaderComment = 'ヘッダーへカスタムコメントを追加 (\\n で改行)'; $strAddIfNotExists = '「IF NOT EXISTS」を追加'; $strAddIntoComments = 'コメント追加'; @@ -74,8 +75,14 @@ $strBack = '戻る'; $strBaltic = 'バルト諸語'; $strBeginCut = '切り取り開始'; $strBeginRaw = 'RAW 開始'; +$strBinLogEventType = 'イベントタイプ'; +$strBinLogInfo = '情報'; +$strBinLogName = 'ログ名'; +$strBinLogPosition = '位置'; +$strBinLogServerId = 'サーバー ID'; $strBinary = ' バイナリ '; $strBinaryDoNotEdit = ' バイナリ - 修正出来ません'; +$strBinaryLog = 'バイナリログ'; $strBookmarkAllUsers = 'すべてのユーザーがこのブックマークをアクセス出来る'; $strBookmarkDeleted = 'ブックマークを正常に削除しました。'; $strBookmarkLabel = 'ラベル'; @@ -98,6 +105,8 @@ $strCantRenameIdxToPrimary = 'インデックスの名前を PRIMARY に変更 $strCantUseRecodeIconv = 'iconv、libiconv、recode_string のどの関数も使用出来ません。php の設定をチェックしてください。'; $strCardinality = 'カーディナリティ'; $strCarriage = 'キャリッジリターン: \\r'; +$strCaseInsensitive = '英字の大小を区別しない'; +$strCaseSensitive = '英字の大小を区別する'; $strCentralEuropean = '中央ヨーロッパ人'; $strChange = '変更'; $strChangeCopyMode = '同じ特権を持った新規のユーザーを作る...'; @@ -141,7 +150,7 @@ $strCreate = '作成'; $strCreateIndex = ' %s の列のインデックスの作成'; $strCreateIndexTopic = '新しいインデックスの作成'; $strCreateNewDatabase = '新しいDBを作成します。'; -$strCreateNewTable = '現在のDBに新しいテーブルを作成します。 %s --> '; +$strCreateNewTable = '現在のDBに新しいテーブルを作成する %s --> '; $strCreatePage = '新規ページの作成'; $strCreatePdfFeat = 'PDF 作成機能'; $strCreationDates = '作成/更新/検査の日付を追加'; @@ -196,7 +205,7 @@ $strDictionary = '辞書'; $strDisableForeignChecks = '外部キーの検査を無効に'; $strDisabled = '無効'; $strDisplayFeat = 'テーブル情報表示機能'; -$strDisplayOrder = '発表順番:'; +$strDisplayOrder = '表示順序:'; $strDisplayPDF = 'PDF スキーマの表示'; $strDoAQuery = '"例のQUERY"を実行 (ワイルドカード: "%")'; $strDoYouReally = '本当に実行しても良いですか? --> '; @@ -225,7 +234,7 @@ $strEnglish = '英語'; $strEnglishPrivileges = ' 注意: MySQLの特権の名前は英語で表示しています。'; $strError = 'エラー'; $strEstonian = 'エストニア語'; -$strExcelEdition = 'Excel 版'; +$strExcelEdition = 'Excel の種類'; $strExcelOptions = 'Excel オプション'; $strExecuteBookmarked = 'ブックマークされたクエリーを実行'; $strExplain = 'Explain SQL'; @@ -298,8 +307,10 @@ $strInnodbStat = 'InnoDB ステータス'; $strInsecureMySQL = 'あなたのコンフィグレーションファイルの設定が MySQL デフォルトの特権アカウントになっています (root ユーザーでパスワードなし) 。 MySQL サーバーもこのデフォルト設定で動作しているので、侵入者に対して無防備です。このセキュリティーホールは必ず閉ざして下さい。'; $strInsert = '追加'; $strInsertAsNewRow = '新しい行としての追加'; +$strInsertBookmarkTitle = 'ブックマークのタイトルを入力してください。'; $strInsertNewRow = '新しい行の追加'; $strInsertTextfiles = 'テーブルにテキストファイルの追加'; +$strInsertedRowId = 'インサートした行 ID:'; $strInsertedRows = '追加された行数:'; $strInstructions = '実施例'; $strInternalNotNecessary = '* InnoDB が存在する場合、内部リレーションは必要ではありません。'; @@ -351,7 +362,7 @@ $strMaximumSize = '最大サイズ: %s%s'; $strModifications = 'を正しく修正しました。'; $strModify = '修正'; $strModifyIndexTopic = 'インデックスの変更'; -$strMoreStatusVars = 'さらに変数の状態'; +$strMoreStatusVars = 'その他の変数の状態'; $strMoveTable = 'テーブルを(database.table)に移動:'; $strMoveTableOK = 'テーブル %s が %s 移動されました。'; $strMoveTableSameNames = '同じテーブルに移動できません!'; @@ -388,6 +399,7 @@ $strNoQuery = 'SQL クエリー無し'; $strNoRights = '現在特権を持ってないのでここに入れません。'; $strNoRowsSelected = '行は選択されませんでした。'; $strNoTablesFound = '現在の DB にテーブルはありません。'; +$strNoThemeSupport = 'テーマをサポートしていません。設定とテーマディレクトリ %s を確認してください。'; $strNoUsersFound = '該当ユーザーは見つかりませんでした。'; $strNoValidateSQL = 'SQL 検証をスキップ'; $strNone = '無し'; @@ -425,6 +437,7 @@ $strPdfNoTables = 'テーブルがありません'; $strPerHour = '時毎'; $strPerMinute = '/分'; $strPerSecond = '/秒'; +$strPersian = 'ペルシア語'; $strPhoneBook = '電話帳'; $strPhp = 'PHP コードの作成'; $strPmaDocumentation = 'phpMyAdmin のドキュメント'; @@ -502,6 +515,7 @@ $strRenameTable = 'テーブル名の変更'; $strRenameTableOK = '%s を %s に名前を変更しました。'; $strRepairTable = 'テーブルを復旧します。'; $strReplace = '置き換える'; +$strReplaceNULLBy = 'NULL を指定の文字列で置き換える'; $strReplaceTable = 'ファイルでテーブルを置き換える'; $strReset = 'リセット'; $strResourceLimits = ' リソースの制限'; @@ -515,7 +529,7 @@ $strRowSize = ' 行のサイズ '; $strRows = '行'; $strRowsFrom = '開始行'; $strRowsModeHorizontal = '水平'; -$strRowsModeOptions = '方向: %s : %s 列ずつヘッダーを繰り返し発表する'; +$strRowsModeOptions = '方向: %s : %s 列ずつヘッダーを繰り返し表示する'; $strRowsModeVertical = '重直'; $strRowsStatistic = '行の統計'; $strRunQuery = 'クエリーの実行'; @@ -567,14 +581,14 @@ $strServerVersion = 'サーバーのバージョン'; $strSessionValue = 'セッション値'; $strSetEnumVal = 'フィールドタイプが"enum"又は"set"の場合は値をこのフォーマットを使って入力して下さい: \'a\',\'b\',\'c\'...
バックスラッシュ「"\"」又はクオート「"\'"」を入力したいと、頭にバックスラッシュを付けて下さい「例: \'\\\\xyz\' or \'a\\\'b\'」。'; $strShow = '表示'; -$strShowAll = '全て発表'; +$strShowAll = '全て表示'; $strShowColor = '色表示'; $strShowDatadictAs = 'データ辞書フォーマット'; $strShowFullQueries = 'フルクエリーを表示'; $strShowGrid = 'グリッドの表示'; $strShowPHPInfo = 'PHP 情報'; $strShowTableDimension = 'テーブルの大きさを表示'; -$strShowTables = 'テーブルの発表'; +$strShowTables = 'テーブルの表示'; $strShowThisQuery = ' 実行したクエリーをここに表示する'; $strShowingRecords = 'レコード表示'; $strSimplifiedChinese = '簡体字中国語'; @@ -604,6 +618,7 @@ $strSubmit = '実行'; $strSuccess = 'SQL クエリーが正常に実行されました。'; $strSum = '合計'; $strSwedish = 'スウェーデン語'; +$strSwitchToDatabase = 'コピーしたデータベースに切り替え'; $strSwitchToTable = 'コピーしたテーブルに切り替え'; $strTable = 'テーブル '; @@ -644,9 +659,9 @@ $strUnicode = 'ユニコード'; $strUnique = '唯一'; $strUnknown = '不明'; $strUnselectAll = '全解放'; -$strUpdatePrivMessage = '%s の特権をアップデートしました。'; -$strUpdateProfileMessage = 'プロファイルをアップデートしました。'; -$strUpdateQuery = 'クエリーのアップデート'; +$strUpdatePrivMessage = '%s の特権を更新しました。'; +$strUpdateProfileMessage = 'プロファイルを更新しました。'; +$strUpdateQuery = 'クエリーの更新'; $strUpgrade = '%s %s かそれ移行にアップグレードするべきです。'; $strUsage = '使用量'; $strUseBackquotes = '逆クオートでテーブル名やフィールド名を囲む'; @@ -671,7 +686,7 @@ $strViewDumpDB = 'DBのダンプ(スキーマ)表示'; $strViewDumpDatabases = 'データベースのダンプビュー (スキーマ)'; $strWebServerUploadDirectory = 'ウェブサーバー上でアップロード'; -$strWebServerUploadDirectoryError = 'アップロードを行うディレクトリがありません。。'; +$strWebServerUploadDirectoryError = 'アップロードを行うディレクトリがありません。'; $strWelcome = '%s へようこそ'; $strWestEuropean = '西ヨーロッパ人'; $strWildcard = 'ワイルドカード'; @@ -690,14 +705,23 @@ $strZeroRemovesTheLimit = '注意: オプションを 0 (ゼロ)に設定する $strZip = '"zip 方式"'; // To translate: +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate + +$strBinLogOriginalPosition = 'Original position'; //to translate -$strCaseInsensitive = 'case-insensitive'; //to translate -$strCaseSensitive = 'case-sensitive'; //to translate $strCommentsForTable = 'COMMENTS FOR TABLE'; //to translate +$strCompatibleHashing = 'MySQL 4.0 互換'; //to translate +$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate +$strDBCopy = 'Copy database to'; //to translate $strDropDatabaseStrongWarning = 'You are about to DESTROY a complete database!'; //to translate -$strInsertedRowId = 'Inserted row id:'; //to translate +$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate + +$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate +$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate +$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strLatexContinuedCaption = 'Continued table caption';//to translate @@ -710,16 +734,20 @@ $strMIME_transformation_options = 'Transformation options';//to translate $strMIME_transformation_options_note = 'Please enter the values for transformation options using this format: \'a\',\'b\',\'c\'...
If you ever need to put a backslash ("\") or a single quote ("\'") amongst those values, backslashes it (for example \'\\\\xyz\' or \'a\\\'b\').';//to translate $strMIME_without = 'MIME-types printed in italics do not have a seperate transformation function';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate $strNoSpace = 'Insufficient space to save the file %s.'; //to translate $strOperator = 'Operator'; //to translate +$strPasswordHashing = 'Password Hashing'; //to translate + $strQueryTime = 'Query took %01.4f sec';//to translate $strRelationsForTable = 'RELATIONS FOR TABLE'; //to translate -$strReplaceNULLBy = 'Replace NULL by'; //to translate $strRowsModeFlippedHorizontal = 'horizontal (rotated headers)';//to translate +$strSelectBinaryLog = 'Select binary log to view'; //to translate + $strTakeIt = 'take it'; //to translate $strTransformation_application_octetstream__download = 'Display a link to download the binary data of a field. First option is the filename of the binary file. Second option is a possible fieldname of a table row containing the filename. If you provide a second option you need to have the first option set to an empty string'; //to translate $strTransformation_image_jpeg__inline = 'Displays a clickable thumbnail; options: width,height in pixels (keeps the original ratio)'; //to translate @@ -735,29 +763,11 @@ $strTransformation_text_plain__unformatted = 'Displays HTML code as HTML entitie $strTruncateQueries = 'Truncate Shown Queries'; //to translate $strUpdComTab = 'Please see Documentation on how to update your Column_comments Table'; //to translate +$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate $strUsersHavingAccessToDb = 'Users having access to "%s"'; //to translate -$strPersian = 'Persian'; //to translate -$strAddFields = 'Add %s field(s)'; //to translate -$strInsertBookmarkTitle = 'Please insert bookmark title'; //to translate -$strNoThemeSupport = 'No themes support, please check your configuration and/or your themes in directory %s.'; //to translate -$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate -$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate -$strBinLogName = 'Log name'; //to translate -$strBinLogPosition = 'Position'; //to translate -$strBinLogEventType = 'Event type'; //to translate -$strBinLogServerId = 'Server ID'; //to translate -$strBinLogOriginalPosition = 'Original position'; //to translate -$strBinLogInfo = 'Information'; //to translate -$strBinaryLog = 'Binary log'; //to translate -$strSelectBinaryLog = 'Select binary log to view'; //to translate -$strDBCopy = 'Copy database to'; //to translate -$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate -$strSwitchToDatabase = 'Switch to copied database'; //to translate -$strPasswordHashing = 'Password Hashing'; //to translate -$strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate -$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate -$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/korean-euc-kr.inc.php b/lang/korean-euc-kr.inc.php index bd07cd7b4..de6cf3df0 100644 --- a/lang/korean-euc-kr.inc.php +++ b/lang/korean-euc-kr.inc.php @@ -761,4 +761,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/korean-utf-8.inc.php b/lang/korean-utf-8.inc.php index a2fd53fda..953d82f78 100644 --- a/lang/korean-utf-8.inc.php +++ b/lang/korean-utf-8.inc.php @@ -762,4 +762,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/latvian-utf-8.inc.php b/lang/latvian-utf-8.inc.php index 4764e78d7..3c56b1699 100644 --- a/lang/latvian-utf-8.inc.php +++ b/lang/latvian-utf-8.inc.php @@ -7,7 +7,6 @@ $charset = 'utf-8'; $allow_recoding = TRUE; -$allow_recoding = TRUE; $text_dir = 'ltr'; // ('ltr' for left to right, 'rtl' for right to left) $left_font_family = 'verdana, arial, helvetica, geneva, sans-serif'; $right_font_family = 'arial, helvetica, geneva, sans-serif'; @@ -116,7 +115,7 @@ $strCharsetOfFile = 'Tabulas kodējums:'; $strCharsets = 'Rakstzīmju kodējumi'; $strCharsetsAndCollations = 'Rakstzīmju kodējumi un izkārtojumi'; $strCheckAll = 'Iezīmēt visu'; -$strCheckOverhead = 'Pārbaudīt pārpildītos'; +$strCheckOverhead = 'Iezīmēt tabulas ar pārtēriņu'; $strCheckPrivs = 'Pārbaudīt privilēģijas'; $strCheckPrivsLong = 'Pārbaudīt privilēģijas uz datubāzi "%s".'; $strCheckTable = 'Pārbaudīt tabulu'; @@ -440,6 +439,7 @@ $strPdfNoTables = 'Nav tabulu'; $strPerHour = 'stundā'; $strPerMinute = 'minūtē'; $strPerSecond = 'sekundē'; +$strPersian = 'Persiešu'; $strPhoneBook = 'telefonu grāmata'; $strPhp = 'Izveidot PHP kodu'; $strPmaDocumentation = 'phpMyAdmin dokumentācija'; @@ -487,6 +487,7 @@ $strPrivDescUsage = 'Nav privilēģiju.'; $strPrivileges = 'Privilēģijas'; $strPrivilegesReloaded = 'Privilēģijas tika veiksmīgi pārlādētas.'; $strProcesslist = 'Procesu saraksts'; +$strProperties = 'Īpašības'; $strPutColNames = 'Likt kolonnu nosaukumus pirmajā rindā'; $strQBE = 'Vaicājums pēc parauga'; @@ -722,27 +723,43 @@ $strYes = 'Jā'; $strZeroRemovesTheLimit = 'Piezīme: Šo opciju uzstādīšana uz 0 (nulli) atceļ ierobežojumus.'; $strZip = 'Arhivēts ar zip'; -$strPersian = 'Persian'; //to translate +// To translate: $strAddFields = 'Add %s field(s)'; //to translate -$strInsertBookmarkTitle = 'Please insert bookmark title'; //to translate -$strNoThemeSupport = 'No themes support, please check your configuration and/or your themes in directory %s.'; //to translate -$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate -$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate -$strBinLogName = 'Log name'; //to translate -$strBinLogPosition = 'Position'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate + $strBinLogEventType = 'Event type'; //to translate -$strBinLogServerId = 'Server ID'; //to translate -$strBinLogOriginalPosition = 'Original position'; //to translate $strBinLogInfo = 'Information'; //to translate +$strBinLogName = 'Log name'; //to translate +$strBinLogOriginalPosition = 'Original position'; //to translate +$strBinLogPosition = 'Position'; //to translate +$strBinLogServerId = 'Server ID'; //to translate $strBinaryLog = 'Binary log'; //to translate -$strSelectBinaryLog = 'Select binary log to view'; //to translate -$strDBCopy = 'Copy database to'; //to translate -$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate -$strSwitchToDatabase = 'Switch to copied database'; //to translate -$strPasswordHashing = 'Password Hashing'; //to translate + $strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate -$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate +$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate + +$strDBCopy = 'Copy database to'; //to translate + +$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate + $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate +$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate +$strInsertBookmarkTitle = 'Please insert bookmark title'; //to translate + +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strNoThemeSupport = 'No themes support, please check your configuration and/or your themes in directory %s.'; //to translate + +$strPasswordHashing = 'Password Hashing'; //to translate + +$strSelectBinaryLog = 'Select binary log to view'; //to translate +$strSwitchToDatabase = 'Switch to copied database'; //to translate + +$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate + +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/latvian-windows-1257.inc.php b/lang/latvian-windows-1257.inc.php index 9661b73ba..0c15d6ef7 100644 --- a/lang/latvian-windows-1257.inc.php +++ b/lang/latvian-windows-1257.inc.php @@ -6,7 +6,6 @@ */ $charset = 'windows-1257'; -$allow_recoding = TRUE; $text_dir = 'ltr'; // ('ltr' for left to right, 'rtl' for right to left) $left_font_family = 'verdana, arial, helvetica, geneva, sans-serif'; $right_font_family = 'arial, helvetica, geneva, sans-serif'; @@ -115,7 +114,7 @@ $strCharsetOfFile = 'Tabulas kod $strCharsets = 'Rakstzmju kodjumi'; $strCharsetsAndCollations = 'Rakstzmju kodjumi un izkrtojumi'; $strCheckAll = 'Iezmt visu'; -$strCheckOverhead = 'Prbaudt prpildtos'; +$strCheckOverhead = 'Iezmt tabulas ar prtriu'; $strCheckPrivs = 'Prbaudt privilijas'; $strCheckPrivsLong = 'Prbaudt privilijas uz datubzi "%s".'; $strCheckTable = 'Prbaudt tabulu'; @@ -439,6 +438,7 @@ $strPdfNoTables = 'Nav tabulu'; $strPerHour = 'stund'; $strPerMinute = 'mint'; $strPerSecond = 'sekund'; +$strPersian = 'Persieu'; $strPhoneBook = 'telefonu grmata'; $strPhp = 'Izveidot PHP kodu'; $strPmaDocumentation = 'phpMyAdmin dokumentcija'; @@ -486,6 +486,7 @@ $strPrivDescUsage = 'Nav privil $strPrivileges = 'Privilijas'; $strPrivilegesReloaded = 'Privilijas tika veiksmgi prldtas.'; $strProcesslist = 'Procesu saraksts'; +$strProperties = 'pabas'; $strPutColNames = 'Likt kolonnu nosaukumus pirmaj rind'; $strQBE = 'Vaicjums pc parauga'; @@ -721,27 +722,43 @@ $strYes = 'J $strZeroRemovesTheLimit = 'Piezme: o opciju uzstdana uz 0 (nulli) atce ierobeojumus.'; $strZip = 'Arhivts ar zip'; -$strPersian = 'Persian'; //to translate +// To translate: $strAddFields = 'Add %s field(s)'; //to translate -$strInsertBookmarkTitle = 'Please insert bookmark title'; //to translate -$strNoThemeSupport = 'No themes support, please check your configuration and/or your themes in directory %s.'; //to translate -$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate -$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate -$strBinLogName = 'Log name'; //to translate -$strBinLogPosition = 'Position'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate + $strBinLogEventType = 'Event type'; //to translate -$strBinLogServerId = 'Server ID'; //to translate -$strBinLogOriginalPosition = 'Original position'; //to translate $strBinLogInfo = 'Information'; //to translate +$strBinLogName = 'Log name'; //to translate +$strBinLogOriginalPosition = 'Original position'; //to translate +$strBinLogPosition = 'Position'; //to translate +$strBinLogServerId = 'Server ID'; //to translate $strBinaryLog = 'Binary log'; //to translate -$strSelectBinaryLog = 'Select binary log to view'; //to translate -$strDBCopy = 'Copy database to'; //to translate -$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate -$strSwitchToDatabase = 'Switch to copied database'; //to translate -$strPasswordHashing = 'Password Hashing'; //to translate + $strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate -$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate +$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate + +$strDBCopy = 'Copy database to'; //to translate + +$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate + $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate +$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate +$strInsertBookmarkTitle = 'Please insert bookmark title'; //to translate + +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strNoThemeSupport = 'No themes support, please check your configuration and/or your themes in directory %s.'; //to translate + +$strPasswordHashing = 'Password Hashing'; //to translate + +$strSelectBinaryLog = 'Select binary log to view'; //to translate +$strSwitchToDatabase = 'Switch to copied database'; //to translate + +$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate + +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/lithuanian-utf-8.inc.php b/lang/lithuanian-utf-8.inc.php index 82378bc64..c391219a9 100644 --- a/lang/lithuanian-utf-8.inc.php +++ b/lang/lithuanian-utf-8.inc.php @@ -739,4 +739,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/lithuanian-windows-1257.inc.php b/lang/lithuanian-windows-1257.inc.php index afb46cfc3..69b3e4ebf 100644 --- a/lang/lithuanian-windows-1257.inc.php +++ b/lang/lithuanian-windows-1257.inc.php @@ -738,4 +738,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/malay-iso-8859-1.inc.php b/lang/malay-iso-8859-1.inc.php index f60b2b939..c9f92d602 100644 --- a/lang/malay-iso-8859-1.inc.php +++ b/lang/malay-iso-8859-1.inc.php @@ -762,4 +762,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/malay-utf-8.inc.php b/lang/malay-utf-8.inc.php index 453048c2d..3b3ef2e94 100644 --- a/lang/malay-utf-8.inc.php +++ b/lang/malay-utf-8.inc.php @@ -763,4 +763,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/norwegian-iso-8859-1.inc.php b/lang/norwegian-iso-8859-1.inc.php index c7d64726a..048fb8246 100644 --- a/lang/norwegian-iso-8859-1.inc.php +++ b/lang/norwegian-iso-8859-1.inc.php @@ -32,7 +32,7 @@ $strAddConstraints = 'Legg til begrensninger'; $strAddDeleteColumn = 'Legg til/Slett kolonne'; $strAddDeleteRow = 'Legg til/Slett kriterierad'; $strAddDropDatabase = 'Legg til DROP DATABASE'; -$strAddFields = 'Legg til %s felt(er)'; //to translate +$strAddFields = 'Legg til %s felt(er)'; $strAddHeaderComment = 'Legg til egen kommentar i hodet (\\n lager linjeskift)'; $strAddIfNotExists = 'Legg til IF NOT EXISTS'; $strAddIntoComments = 'Legg til i kommentarer'; @@ -73,8 +73,15 @@ $strBack = 'Tilbake'; $strBaltic = 'baltisk'; $strBeginCut = 'START KUTT'; $strBeginRaw = 'START UFORMATERT'; +$strBinLogName = 'Loggnavn'; +$strBinLogPosition = 'Posisjon'; +$strBinLogEventType = 'Hendelsestype'; +$strBinLogServerId = 'Tjener ID'; +$strBinLogOriginalPosition = 'Original posisjon'; +$strBinLogInfo = 'Informasjon'; $strBinary = ' Binr '; $strBinaryDoNotEdit = ' Binr - m ikke redigeres '; +$strBinaryLog = 'Binrlogg'; $strBookmarkAllUsers = 'La alle brukere ha adgang til dette bokmerket'; $strBookmarkDeleted = 'Bokmerket har blitt slettet.'; $strBookmarkLabel = 'Navn'; @@ -126,6 +133,7 @@ $strColumnPrivileges = 'Kolonne-spesifikke privilegier'; $strCommand = 'Kommando'; $strComments = 'Kommentarer'; $strCommentsForTable = 'TABELLKOMMENTARER'; +$strCompatibleHashing = 'MySQL 4.0 kompatibel'; $strCompleteInserts = 'Komplette innlegg'; $strCompression = 'Kompresjon'; $strConfigFileError = 'phpMyAdmin kunne ikke lese din konfigurasjonsfil!
Dette kan skje hvis PHP finner en syntaksfeil eller ikke kan finne filen.
Vennligst kall opp konfigurasjonsfilen direkte via linken under og les PHP feilmeldingen(e) som du vil f. I de fleste tilfeller s mangler det et anfrselstegn eller et semikolon et sted.
Hvis du fr en blank side s er alt ok.'; @@ -135,6 +143,7 @@ $strConnections = 'tilkoblinger'; $strConstraintsForDumped = 'Begrensninger for dumpede tabeller'; $strConstraintsForTable = 'Begrensninger for tabell'; $strCookiesRequired = 'Cookies m vre sltt p forbi dette punkt.'; +$strCopyDatabaseOK = 'Databasen %s har blitt kopiert til %s'; $strCopyTable = 'Kopier tabell til (database.tabell):'; $strCopyTableOK = 'Tabellen %s er kopiert til %s.'; $strCopyTableSameNames = 'Kan ikke kopiere tabellen til samme navn!'; @@ -154,6 +163,7 @@ $strCzech = 'tjekkisk'; $strCzechSlovak = 'Tjekkoslovakisk'; $strDBComment = 'Database kommentar: '; +$strDBCopy = 'Kopier databasen til'; $strDBGContext = 'Sammenheng'; $strDBGContextID = 'Sammenhengs-ID'; $strDBGHits = 'Treff'; @@ -226,6 +236,7 @@ $strEndRaw = 'STOPP UFORMATERT'; $strEnglish = 'engelsk'; $strEnglishPrivileges = 'OBS: MySQL privilegiumnavn er p engelsk'; $strError = 'Feil'; +$strEscapeWildcards = 'Jokertegnene _ og % m beskyttes med en \ for bruke dem direkte'; //to translate $strEstonian = 'estisk'; $strExcelEdition = 'Excel-versjon'; $strExcelOptions = 'Excel-innstillinger'; @@ -241,7 +252,7 @@ $strFieldHasBeenDropped = 'Feltet %s har blitt slettet'; $strFields = 'Felter'; $strFieldsEmpty = ' Antall felter er tommt! '; $strFieldsEnclosedBy = 'Felter omsluttet av'; -$strFieldsEscapedBy = 'Felter "escaped" med'; +$strFieldsEscapedBy = 'Felter beskyttet med'; $strFieldsTerminatedBy = 'Felter avsluttet med'; $strFileAlreadyExists = 'Fila %s eksisterer alt p serveren, endre navnet eller merk av for overskriving av fil.'; $strFileCouldNotBeRead = 'Fila kunne ikke leses'; @@ -433,6 +444,7 @@ $strPartialText = 'Delvis tekst'; $strPassword = 'Passord'; $strPasswordChanged = 'Passordet til %s er endret.'; $strPasswordEmpty = 'Passordet er blankt!'; +$strPasswordHashing = 'Passordnkling'; $strPasswordNotSame = 'Passordene er ikke like!'; $strPdfDbSchema = 'Skjema for "%s"-databasen - Side %s'; $strPdfInvalidTblName = 'Tabellen "%s" eksisterer ikke!'; @@ -569,6 +581,7 @@ $strSearchType = 'Finn:'; $strSecretRequired = 'Konfigurasjonsfila trenger n et hemmelig passordfrase (blowfish_secret).'; $strSelectADb = 'Vennligst velg en database'; $strSelectAll = 'Velg alle'; +$strSelectBinaryLog = 'Velg binrlogg for visning'; $strSelectFields = 'Velg felt (minst ett):'; $strSelectNumRows = 'i sprring'; $strSelectTables = 'Velg tabeller'; @@ -624,6 +637,7 @@ $strSubmit = 'Send'; $strSuccess = 'Kommandoen/sprringen er utfrt'; $strSum = 'Sum'; $strSwedish = 'svensk'; +$strSwitchToDatabase = 'Bytt til kopiert database'; $strSwitchToTable = 'Bytt til kopiert tabell'; $strTable = 'Tabell'; @@ -685,6 +699,7 @@ $strUpgrade = 'Du burde oppgradere til %s %s eller nyere.'; $strUsage = 'Bruk'; $strUseBackquotes = 'Bruk venstre anfrselstegn med tabell og feltnavn'; $strUseHostTable = 'Vis vert tabell'; +$strUseTabKey = 'Bruk TAB tasten for flytte fra verdi til verdi, eller CTRL+piltastene for bevege deg hvor som helst'; $strUseTables = 'Bruk tabeller'; $strUseTextField = 'Bruk tekstfelt'; $strUseThisValue = 'Bruk denne verdien'; @@ -723,23 +738,14 @@ $strYes = 'Ja'; $strZeroRemovesTheLimit = 'Merk: Ved sette disse til 0 (null) fjernes begrensningen.'; $strZip = 'Komprimert (zip)'; -$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate -$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate -$strBinLogName = 'Log name'; //to translate -$strBinLogPosition = 'Position'; //to translate -$strBinLogEventType = 'Event type'; //to translate -$strBinLogServerId = 'Server ID'; //to translate -$strBinLogOriginalPosition = 'Original position'; //to translate -$strBinLogInfo = 'Information'; //to translate -$strBinaryLog = 'Binary log'; //to translate -$strSelectBinaryLog = 'Select binary log to view'; //to translate -$strDBCopy = 'Copy database to'; //to translate -$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate -$strSwitchToDatabase = 'Switch to copied database'; //to translate -$strPasswordHashing = 'Password Hashing'; //to translate -$strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/norwegian-utf-8.inc.php b/lang/norwegian-utf-8.inc.php index fe44e6d9f..c43c970be 100644 --- a/lang/norwegian-utf-8.inc.php +++ b/lang/norwegian-utf-8.inc.php @@ -33,7 +33,7 @@ $strAddConstraints = 'Legg til begrensninger'; $strAddDeleteColumn = 'Legg til/Slett kolonne'; $strAddDeleteRow = 'Legg til/Slett kriterierad'; $strAddDropDatabase = 'Legg til DROP DATABASE'; -$strAddFields = 'Legg til %s felt(er)'; //to translate +$strAddFields = 'Legg til %s felt(er)'; $strAddHeaderComment = 'Legg til egen kommentar i hodet (\\n lager linjeskift)'; $strAddIfNotExists = 'Legg til IF NOT EXISTS'; $strAddIntoComments = 'Legg til i kommentarer'; @@ -74,8 +74,15 @@ $strBack = 'Tilbake'; $strBaltic = 'baltisk'; $strBeginCut = 'START KUTT'; $strBeginRaw = 'START UFORMATERT'; +$strBinLogName = 'Loggnavn'; +$strBinLogPosition = 'Posisjon'; +$strBinLogEventType = 'Hendelsestype'; +$strBinLogServerId = 'Tjener ID'; +$strBinLogOriginalPosition = 'Original posisjon'; +$strBinLogInfo = 'Informasjon'; $strBinary = ' Binær '; $strBinaryDoNotEdit = ' Binær - må ikke redigeres '; +$strBinaryLog = 'Binærlogg'; $strBookmarkAllUsers = 'La alle brukere ha adgang til dette bokmerket'; $strBookmarkDeleted = 'Bokmerket har blitt slettet.'; $strBookmarkLabel = 'Navn'; @@ -127,6 +134,7 @@ $strColumnPrivileges = 'Kolonne-spesifikke privilegier'; $strCommand = 'Kommando'; $strComments = 'Kommentarer'; $strCommentsForTable = 'TABELLKOMMENTARER'; +$strCompatibleHashing = 'MySQL 4.0 kompatibel'; $strCompleteInserts = 'Komplette innlegg'; $strCompression = 'Kompresjon'; $strConfigFileError = 'phpMyAdmin kunne ikke lese din konfigurasjonsfil!
Dette kan skje hvis PHP finner en syntaksfeil eller ikke kan finne filen.
Vennligst kall opp konfigurasjonsfilen direkte via linken under og les PHP feilmeldingen(e) som du vil få. I de fleste tilfeller så mangler det et anførselstegn eller et semikolon et sted.
Hvis du får en blank side så er alt ok.'; @@ -136,6 +144,7 @@ $strConnections = 'tilkoblinger'; $strConstraintsForDumped = 'Begrensninger for dumpede tabeller'; $strConstraintsForTable = 'Begrensninger for tabell'; $strCookiesRequired = 'Cookies må være slått på forbi dette punkt.'; +$strCopyDatabaseOK = 'Databasen %s har blitt kopiert til %s'; $strCopyTable = 'Kopier tabell til (database.tabell):'; $strCopyTableOK = 'Tabellen %s er kopiert til %s.'; $strCopyTableSameNames = 'Kan ikke kopiere tabellen til samme navn!'; @@ -155,6 +164,7 @@ $strCzech = 'tjekkisk'; $strCzechSlovak = 'Tjekkoslovakisk'; $strDBComment = 'Database kommentar: '; +$strDBCopy = 'Kopier databasen til'; $strDBGContext = 'Sammenheng'; $strDBGContextID = 'Sammenhengs-ID'; $strDBGHits = 'Treff'; @@ -227,6 +237,7 @@ $strEndRaw = 'STOPP UFORMATERT'; $strEnglish = 'engelsk'; $strEnglishPrivileges = 'OBS: MySQL privilegiumnavn er på engelsk'; $strError = 'Feil'; +$strEscapeWildcards = 'Jokertegnene _ og % må beskyttes med en \ for å bruke dem direkte'; //to translate $strEstonian = 'estisk'; $strExcelEdition = 'Excel-versjon'; $strExcelOptions = 'Excel-innstillinger'; @@ -242,7 +253,7 @@ $strFieldHasBeenDropped = 'Feltet %s har blitt slettet'; $strFields = 'Felter'; $strFieldsEmpty = ' Antall felter er tommt! '; $strFieldsEnclosedBy = 'Felter omsluttet av'; -$strFieldsEscapedBy = 'Felter "escaped" med'; +$strFieldsEscapedBy = 'Felter beskyttet med'; $strFieldsTerminatedBy = 'Felter avsluttet med'; $strFileAlreadyExists = 'Fila %s eksisterer alt på serveren, endre navnet eller merk av for overskriving av fil.'; $strFileCouldNotBeRead = 'Fila kunne ikke leses'; @@ -434,6 +445,7 @@ $strPartialText = 'Delvis tekst'; $strPassword = 'Passord'; $strPasswordChanged = 'Passordet til %s er endret.'; $strPasswordEmpty = 'Passordet er blankt!'; +$strPasswordHashing = 'Passordnøkling'; $strPasswordNotSame = 'Passordene er ikke like!'; $strPdfDbSchema = 'Skjema for "%s"-databasen - Side %s'; $strPdfInvalidTblName = 'Tabellen "%s" eksisterer ikke!'; @@ -570,6 +582,7 @@ $strSearchType = 'Finn:'; $strSecretRequired = 'Konfigurasjonsfila trenger nå et hemmelig passordfrase (blowfish_secret).'; $strSelectADb = 'Vennligst velg en database'; $strSelectAll = 'Velg alle'; +$strSelectBinaryLog = 'Velg binærlogg for visning'; $strSelectFields = 'Velg felt (minst ett):'; $strSelectNumRows = 'i spørring'; $strSelectTables = 'Velg tabeller'; @@ -625,6 +638,7 @@ $strSubmit = 'Send'; $strSuccess = 'Kommandoen/spørringen er utført'; $strSum = 'Sum'; $strSwedish = 'svensk'; +$strSwitchToDatabase = 'Bytt til kopiert database'; $strSwitchToTable = 'Bytt til kopiert tabell'; $strTable = 'Tabell'; @@ -686,6 +700,7 @@ $strUpgrade = 'Du burde oppgradere til %s %s eller nyere.'; $strUsage = 'Bruk'; $strUseBackquotes = 'Bruk venstre anførselstegn med tabell og feltnavn'; $strUseHostTable = 'Vis vert tabell'; +$strUseTabKey = 'Bruk TAB tasten for å flytte fra verdi til verdi, eller CTRL+piltastene for å bevege deg hvor som helst'; $strUseTables = 'Bruk tabeller'; $strUseTextField = 'Bruk tekstfelt'; $strUseThisValue = 'Bruk denne verdien'; @@ -724,23 +739,14 @@ $strYes = 'Ja'; $strZeroRemovesTheLimit = 'Merk: Ved å sette disse til 0 (null) fjernes begrensningen.'; $strZip = 'Komprimert (zip)'; -$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate -$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate -$strBinLogName = 'Log name'; //to translate -$strBinLogPosition = 'Position'; //to translate -$strBinLogEventType = 'Event type'; //to translate -$strBinLogServerId = 'Server ID'; //to translate -$strBinLogOriginalPosition = 'Original position'; //to translate -$strBinLogInfo = 'Information'; //to translate -$strBinaryLog = 'Binary log'; //to translate -$strSelectBinaryLog = 'Select binary log to view'; //to translate -$strDBCopy = 'Copy database to'; //to translate -$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate -$strSwitchToDatabase = 'Switch to copied database'; //to translate -$strPasswordHashing = 'Password Hashing'; //to translate -$strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/persian-utf-8.inc.php b/lang/persian-utf-8.inc.php index fc0349d0c..1d6b082ef 100644 --- a/lang/persian-utf-8.inc.php +++ b/lang/persian-utf-8.inc.php @@ -768,4 +768,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/persian-windows-1256.inc.php b/lang/persian-windows-1256.inc.php index 2f3877a7f..653c6b518 100644 --- a/lang/persian-windows-1256.inc.php +++ b/lang/persian-windows-1256.inc.php @@ -767,4 +767,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/polish-iso-8859-2.inc.php b/lang/polish-iso-8859-2.inc.php index 9f2c961ac..9bb524ec6 100644 --- a/lang/polish-iso-8859-2.inc.php +++ b/lang/polish-iso-8859-2.inc.php @@ -28,6 +28,7 @@ $strAddConstraints = 'Dodanie ogranicze $strAddDeleteColumn = 'Dodanie/usunicie pl'; $strAddDeleteRow = 'Dodanie/usunicie wierszy kryteriw'; $strAddDropDatabase = 'Dodanie DROP DATABASE'; +$strAddFields = 'Dodanie %s pl'; $strAddHeaderComment = 'Dodanie do nagwka wasnego komentarza (\\n oddziela linie)'; $strAddIfNotExists = 'Dodanie IF NOT EXISTS'; $strAddIntoComments = 'Dodanie do komentarzy'; @@ -55,6 +56,7 @@ $strAnd = 'Oraz'; $strAny = 'Dowolny'; $strAnyHost = 'Dowolny host'; $strAnyUser = 'Dowolny uytkownik'; +$strApproximateCount = 'By moe w przyblieniu. Zobacz FAQ 3.11'; $strArabic = 'Arabski'; $strArmenian = 'Ormiaski'; $strAscending = 'Rosnco'; @@ -68,8 +70,15 @@ $strBack = 'Powr $strBaltic = 'Batycki'; $strBeginCut = 'TNIJ STD'; $strBeginRaw = 'SUROWE DANE STD'; +$strBinLogEventType = 'Typ zdarzenia'; +$strBinLogInfo = 'Informacje'; +$strBinLogName = 'Nazwa dziennika'; +$strBinLogOriginalPosition = 'Oryginalna pozycja'; +$strBinLogPosition = 'Pozycja'; +$strBinLogServerId = 'ID serwera'; $strBinary = ' Binarne '; $strBinaryDoNotEdit = ' Binarne - nie do edycji '; +$strBinaryLog = 'Dziennik binarny'; $strBookmarkAllUsers = 'Pozwolenie na dostp do zapytania przez kadego uytkownika'; $strBookmarkDeleted = 'Zapamitane zapytanie SQL zostao usunite.'; $strBookmarkLabel = 'Nazwa'; @@ -121,6 +130,7 @@ $strColumnPrivileges = 'Uprawnienia specyficzne dla kolumn'; $strCommand = 'Polecenie'; $strComments = 'Komentarze'; $strCommentsForTable = 'KOMENTARZE TABELI'; +$strCompatibleHashing = 'Kompatybilny z MySQL-em 4.0'; $strCompleteInserts = 'Pene dodania'; $strCompression = 'Kompresja'; $strConfigFileError = 'phpMyAdmin nie zdoa odczyta Twojego pliku konfiguracji!
Moe si to zdarzy, jeli php znajdzie w nim bd skadniowy lub nie moe znale tego pliku.
Prosz wywoa bezporednio plik konfiguracyjny uywajc poniszego linku i odczyta otrzymane komunikat(y) o bdach. W wikszoci przypadkw brakuje gdzie cudzysowu lub rednika.
Jeeli otrzymasz pust stron, wszystko jest w porzdku.'; @@ -130,6 +140,7 @@ $strConnections = 'Po $strConstraintsForDumped = 'Ograniczenia dla zrzutw tabel'; $strConstraintsForTable = 'Ograniczenia dla tabeli'; $strCookiesRequired = 'Odtd musi by wczona obsuga "cookies".'; +$strCopyDatabaseOK = 'Baza danych %s zostaa skopiowana do %s'; $strCopyTable = 'Skopiuj tabel do (bazadanych.tabela):'; $strCopyTableOK = 'Tabela %s zostaa skopiowana do %s.'; $strCopyTableSameNames = 'Nie mona skopiowa tabeli do niej samej!'; @@ -149,6 +160,7 @@ $strCzech = 'Czeski'; $strCzechSlovak = 'Czesko-sowacki'; $strDBComment = 'Komentarz bazy danych: '; +$strDBCopy = 'Kopiowanie bazy danych do'; $strDBGContext = 'Kontekst'; $strDBGContextID = 'ID kontekstu'; $strDBGHits = 'Trafienia'; @@ -212,7 +224,7 @@ $strEditPDFPages = 'Edycja stron PDF'; $strEditPrivileges = 'Edycja uprawnie'; $strEffective = 'Efektywne'; $strEmpty = 'Wyczyszczenie'; -$strEmptyResultSet = 'MySQL zwrci pusty wynik (np. zero rekordw).'; +$strEmptyResultSet = 'MySQL zwrci pusty wynik (zero rekordw).'; $strEnabled = 'wczone'; $strEncloseInTransaction = 'Objcie eksportu transakcj'; $strEnd = 'Koniec'; @@ -221,6 +233,7 @@ $strEndRaw = 'SUROWE DANE DOT $strEnglish = 'Angielski'; $strEnglishPrivileges = ' Uwaga: Uprawnienia MySQL s oznaczone w jz. angielskim '; $strError = 'Bd'; +$strEscapeWildcards = 'Symbole wieloznaczne _ i % powinny zosta poprzedzone znakiem, aby uy ich w znaczeniu dosownym'; $strEstonian = 'Estoski'; $strExcelEdition = 'Wydanie Excela'; $strExcelOptions = 'Opcje Excela'; @@ -290,11 +303,16 @@ $strIndex = 'Indeks'; $strIndexHasBeenDropped = 'Klucz %s zosta usunity'; $strIndexName = 'Nazwa indeksu :'; $strIndexType = 'Rodzaj indeksu :'; +$strIndexWarningMultiple = 'Dla kolumny `%s` zostao utworzonych wiele indeksw'; +$strIndexWarningPrimary = 'Klucze PRIMARY i INDEX nie powinny dotyczy tej samej kolumny `%s`'; +$strIndexWarningTable = 'Problemy z indeksami tabeli `%s`'; +$strIndexWarningUnique = 'Klucze UNIQUE i INDEX nie powinny dotyczy tej samej kolumny `%s`'; $strIndexes = 'Indeksy'; $strInnodbStat = 'Status InnoDB'; $strInsecureMySQL = 'Twj plik konfiguracyjny zawiera ustawienia (konto roota bez hasa), ktre odpowiadaj domylnemu uprzywilejowanemu kontu MySQL. Twj serwer MySQL dziaa z takim domylnym ustawieniem, jest otwarty dla wamywaczy i naprawd ta luka w bezpieczestwie powinna zosta naprawiona.'; $strInsert = 'Dodanie'; $strInsertAsNewRow = 'Dodanie jako nowego rekordu'; +$strInsertBookmarkTitle = 'Prosz wprowadzi tytu zapamitanego zapytania'; $strInsertNewRow = 'Dodanie nowego rekordu'; $strInsertTextfiles = 'Dodanie pliku tekstowego do tabeli'; $strInsertedRowId = 'Id wstawionego wiersza:'; @@ -376,6 +394,7 @@ $strName = 'Nazwa'; $strNeedPrimaryKey = 'Naley zdefiniowa klucz podstawowy dla tej tabeli.'; $strNext = 'Nastpne'; $strNo = 'Nie'; +$strNoActivity = 'Brak aktywnoci przez co najmniej %s sekund, prosz zalogowa si jeszcze raz'; $strNoDatabases = 'Brak baz danych'; $strNoDatabasesSelected = 'adna baza danych nie zosta wybrana.'; $strNoDescription = 'brak opisu'; @@ -395,6 +414,7 @@ $strNoRights = 'Brak wystarczaj $strNoRowsSelected = 'aden wiersz nie zosta zaznaczony'; $strNoSpace = 'Brak miejsca na zapis pliku %s.'; $strNoTablesFound = 'Nie znaleziono tabeli w bazie danych.'; +$strNoThemeSupport = 'Brak obsugi motyww graficznych, prosz sprawdzi konfiguracj i/lub motywy graficzne w katalogu %s.'; $strNoUsersFound = 'Nie znaleziono uytkownika(w).'; $strNoValidateSQL = 'Pomi sprawdzanie poprawnoci SQL'; $strNone = 'Brak'; @@ -426,6 +446,7 @@ $strPartialText = 'Skr $strPassword = 'Haso'; $strPasswordChanged = 'Haso dla %s zostao pomylnie zmienione.'; $strPasswordEmpty = 'Puste haso!'; +$strPasswordHashing = 'Sposb kodowania hase'; $strPasswordNotSame = 'Hasa nie s identyczne!'; $strPdfDbSchema = 'Schemat bazy danych "%s" - strona %s'; $strPdfInvalidTblName = 'Tabela "%s" nie istnieje!'; @@ -562,6 +583,7 @@ $strSearchType = 'Znajd $strSecretRequired = 'Plik konfiguracyjny wymaga teraz tajnej frazy kodujcej (blowfish_secret).'; $strSelectADb = 'Prosz wybra baz danych'; $strSelectAll = 'Zaznaczenie wszystkich'; +$strSelectBinaryLog = 'Wybierz dziennik binary do podgldu'; $strSelectFields = 'Wybr pl (co najmniej jedno):'; $strSelectNumRows = 'w zapytaniu'; $strSelectTables = 'Wybierz tabele'; @@ -617,6 +639,7 @@ $strSubmit = 'Wys $strSuccess = 'Zapytanie SQL zostao pomylnie wykonane'; $strSum = 'Suma'; $strSwedish = 'Szwedzki'; +$strSwitchToDatabase = 'Przecz do skopiowanej bazy danych'; $strSwitchToTable = 'Przeczenie na skopiowan tabel'; $strTable = 'Tabela'; @@ -678,6 +701,7 @@ $strUpgrade = 'Poleca si $strUsage = 'Wykorzystanie'; $strUseBackquotes = 'Uycie cudzysoww z nazwami tabel i pl'; $strUseHostTable = 'Uycie tabeli hostw'; +$strUseTabKey = 'Klawisz TAB przemieszcza pomidzy wartocami, CTRL+strzaka przenosi w dowolne miejsce'; $strUseTables = 'Uycie tabel'; $strUseTextField = 'Uycie pola tekstowego'; $strUseThisValue = 'Uycie tej wartoci'; @@ -716,26 +740,8 @@ $strYes = 'Tak'; $strZeroRemovesTheLimit = 'Uwaga: Ustawienie tych opcji na 0 (zero) usuwa ograniczenie.'; $strZip = '".zip"'; -$strAddFields = 'Add %s field(s)'; //to translate -$strInsertBookmarkTitle = 'Please insert bookmark title'; //to translate -$strNoThemeSupport = 'No themes support, please check your configuration and/or your themes in directory %s.'; //to translate -$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate -$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate -$strBinLogName = 'Log name'; //to translate -$strBinLogPosition = 'Position'; //to translate -$strBinLogEventType = 'Event type'; //to translate -$strBinLogServerId = 'Server ID'; //to translate -$strBinLogOriginalPosition = 'Original position'; //to translate -$strBinLogInfo = 'Information'; //to translate -$strBinaryLog = 'Binary log'; //to translate -$strSelectBinaryLog = 'Select binary log to view'; //to translate -$strDBCopy = 'Copy database to'; //to translate -$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate -$strSwitchToDatabase = 'Switch to copied database'; //to translate -$strPasswordHashing = 'Password Hashing'; //to translate -$strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate -$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate -$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/polish-utf-8.inc.php b/lang/polish-utf-8.inc.php index 9c0b348ef..388e39c39 100644 --- a/lang/polish-utf-8.inc.php +++ b/lang/polish-utf-8.inc.php @@ -29,6 +29,7 @@ $strAddConstraints = 'Dodanie ograniczeń'; $strAddDeleteColumn = 'Dodanie/usunięcie pól'; $strAddDeleteRow = 'Dodanie/usunięcie wierszy kryteriów'; $strAddDropDatabase = 'Dodanie DROP DATABASE'; +$strAddFields = 'Dodanie %s pól'; $strAddHeaderComment = 'Dodanie do nagłówka własnego komentarza (\\n oddziela linie)'; $strAddIfNotExists = 'Dodanie IF NOT EXISTS'; $strAddIntoComments = 'Dodanie do komentarzy'; @@ -56,6 +57,7 @@ $strAnd = 'Oraz'; $strAny = 'Dowolny'; $strAnyHost = 'Dowolny host'; $strAnyUser = 'Dowolny użytkownik'; +$strApproximateCount = 'Być może w przybliżeniu. Zobacz FAQ 3.11'; $strArabic = 'Arabski'; $strArmenian = 'Ormiański'; $strAscending = 'Rosnąco'; @@ -69,8 +71,15 @@ $strBack = 'Powrót'; $strBaltic = 'Bałtycki'; $strBeginCut = 'TNIJ STĄD'; $strBeginRaw = 'SUROWE DANE STĄD'; +$strBinLogEventType = 'Typ zdarzenia'; +$strBinLogInfo = 'Informacje'; +$strBinLogName = 'Nazwa dziennika'; +$strBinLogOriginalPosition = 'Oryginalna pozycja'; +$strBinLogPosition = 'Pozycja'; +$strBinLogServerId = 'ID serwera'; $strBinary = ' Binarne '; $strBinaryDoNotEdit = ' Binarne - nie do edycji '; +$strBinaryLog = 'Dziennik binarny'; $strBookmarkAllUsers = 'Pozwolenie na dostęp do zapytania przez każdego użytkownika'; $strBookmarkDeleted = 'Zapamiętane zapytanie SQL zostało usunięte.'; $strBookmarkLabel = 'Nazwa'; @@ -122,6 +131,7 @@ $strColumnPrivileges = 'Uprawnienia specyficzne dla kolumn'; $strCommand = 'Polecenie'; $strComments = 'Komentarze'; $strCommentsForTable = 'KOMENTARZE TABELI'; +$strCompatibleHashing = 'Kompatybilny z MySQL-em 4.0'; $strCompleteInserts = 'Pełne dodania'; $strCompression = 'Kompresja'; $strConfigFileError = 'phpMyAdmin nie zdołał odczytać Twojego pliku konfiguracji!
Może się to zdarzyć, jeśli php znajdzie w nim błąd składniowy lub nie może znaleźć tego pliku.
Proszę wywołać bezpośrednio plik konfiguracyjny używając poniższego linku i odczytać otrzymane komunikat(y) o błędach. W większości przypadków brakuje gdzieś cudzysłowu lub średnika.
Jeżeli otrzymasz pustą stronę, wszystko jest w porządku.'; @@ -131,6 +141,7 @@ $strConnections = 'Połączenia'; $strConstraintsForDumped = 'Ograniczenia dla zrzutów tabel'; $strConstraintsForTable = 'Ograniczenia dla tabeli'; $strCookiesRequired = 'Odtąd musi być włączona obsługa "cookies".'; +$strCopyDatabaseOK = 'Baza danych %s została skopiowana do %s'; $strCopyTable = 'Skopiuj tabelę do (bazadanych.tabela):'; $strCopyTableOK = 'Tabela %s została skopiowana do %s.'; $strCopyTableSameNames = 'Nie można skopiować tabeli do niej samej!'; @@ -150,6 +161,7 @@ $strCzech = 'Czeski'; $strCzechSlovak = 'Czesko-słowacki'; $strDBComment = 'Komentarz bazy danych: '; +$strDBCopy = 'Kopiowanie bazy danych do'; $strDBGContext = 'Kontekst'; $strDBGContextID = 'ID kontekstu'; $strDBGHits = 'Trafienia'; @@ -213,7 +225,7 @@ $strEditPDFPages = 'Edycja stron PDF'; $strEditPrivileges = 'Edycja uprawnień'; $strEffective = 'Efektywne'; $strEmpty = 'Wyczyszczenie'; -$strEmptyResultSet = 'MySQL zwrócił pusty wynik (np. zero rekordów).'; +$strEmptyResultSet = 'MySQL zwrócił pusty wynik (zero rekordów).'; $strEnabled = 'włączone'; $strEncloseInTransaction = 'Objęcie eksportu transakcją'; $strEnd = 'Koniec'; @@ -222,6 +234,7 @@ $strEndRaw = 'SUROWE DANE DOTĄD'; $strEnglish = 'Angielski'; $strEnglishPrivileges = ' Uwaga: Uprawnienia MySQL są oznaczone w jęz. angielskim '; $strError = 'Błąd'; +$strEscapeWildcards = 'Symbole wieloznaczne _ i % powinny zostać poprzedzone znakiem, aby użyć ich w znaczeniu dosłownym'; $strEstonian = 'Estoński'; $strExcelEdition = 'Wydanie Excela'; $strExcelOptions = 'Opcje Excela'; @@ -291,11 +304,16 @@ $strIndex = 'Indeks'; $strIndexHasBeenDropped = 'Klucz %s został usunięty'; $strIndexName = 'Nazwa indeksu :'; $strIndexType = 'Rodzaj indeksu :'; +$strIndexWarningMultiple = 'Dla kolumny `%s` zostało utworzonych wiele indeksów'; +$strIndexWarningPrimary = 'Klucze PRIMARY i INDEX nie powinny dotyczyć tej samej kolumny `%s`'; +$strIndexWarningTable = 'Problemy z indeksami tabeli `%s`'; +$strIndexWarningUnique = 'Klucze UNIQUE i INDEX nie powinny dotyczyć tej samej kolumny `%s`'; $strIndexes = 'Indeksy'; $strInnodbStat = 'Status InnoDB'; $strInsecureMySQL = 'Twój plik konfiguracyjny zawiera ustawienia (konto roota bez hasła), które odpowiadają domyślnemu uprzywilejowanemu kontu MySQL. Twój serwer MySQL działa z takim domyślnym ustawieniem, jest otwarty dla włamywaczy i naprawdę ta luka w bezpieczeństwie powinna zostać naprawiona.'; $strInsert = 'Dodanie'; $strInsertAsNewRow = 'Dodanie jako nowego rekordu'; +$strInsertBookmarkTitle = 'Proszę wprowadzić tytuł zapamiętanego zapytania'; $strInsertNewRow = 'Dodanie nowego rekordu'; $strInsertTextfiles = 'Dodanie pliku tekstowego do tabeli'; $strInsertedRowId = 'Id wstawionego wiersza:'; @@ -377,6 +395,7 @@ $strName = 'Nazwa'; $strNeedPrimaryKey = 'Należy zdefiniować klucz podstawowy dla tej tabeli.'; $strNext = 'Następne'; $strNo = 'Nie'; +$strNoActivity = 'Brak aktywności przez co najmniej %s sekund, proszę zalogować się jeszcze raz'; $strNoDatabases = 'Brak baz danych'; $strNoDatabasesSelected = 'Żadna baza danych nie został wybrana.'; $strNoDescription = 'brak opisu'; @@ -396,6 +415,7 @@ $strNoRights = 'Brak wystarczających uprawnień!'; $strNoRowsSelected = 'Żaden wiersz nie został zaznaczony'; $strNoSpace = 'Brak miejsca na zapis pliku %s.'; $strNoTablesFound = 'Nie znaleziono tabeli w bazie danych.'; +$strNoThemeSupport = 'Brak obsługi motywów graficznych, proszę sprawdzić konfigurację i/lub motywy graficzne w katalogu %s.'; $strNoUsersFound = 'Nie znaleziono użytkownika(ów).'; $strNoValidateSQL = 'Pomiń sprawdzanie poprawności SQL'; $strNone = 'Brak'; @@ -427,6 +447,7 @@ $strPartialText = 'Skrócony tekst'; $strPassword = 'Hasło'; $strPasswordChanged = 'Hasło dla %s zostało pomyślnie zmienione.'; $strPasswordEmpty = 'Puste hasło!'; +$strPasswordHashing = 'Sposób kodowania haseł'; $strPasswordNotSame = 'Hasła nie są identyczne!'; $strPdfDbSchema = 'Schemat bazy danych "%s" - strona %s'; $strPdfInvalidTblName = 'Tabela "%s" nie istnieje!'; @@ -563,6 +584,7 @@ $strSearchType = 'Znajdź:'; $strSecretRequired = 'Plik konfiguracyjny wymaga teraz tajnej frazy kodującej (blowfish_secret).'; $strSelectADb = 'Proszę wybrać bazę danych'; $strSelectAll = 'Zaznaczenie wszystkich'; +$strSelectBinaryLog = 'Wybierz dziennik binary do podglądu'; $strSelectFields = 'Wybór pól (co najmniej jedno):'; $strSelectNumRows = 'w zapytaniu'; $strSelectTables = 'Wybierz tabele'; @@ -618,6 +640,7 @@ $strSubmit = 'Wysłanie'; $strSuccess = 'Zapytanie SQL zostało pomyślnie wykonane'; $strSum = 'Suma'; $strSwedish = 'Szwedzki'; +$strSwitchToDatabase = 'Przełącz do skopiowanej bazy danych'; $strSwitchToTable = 'Przełączenie na skopiowaną tabelę'; $strTable = 'Tabela'; @@ -679,6 +702,7 @@ $strUpgrade = 'Poleca się aktualizację do %s w wersji %s lub późniejszej.'; $strUsage = 'Wykorzystanie'; $strUseBackquotes = 'Użycie cudzysłowów z nazwami tabel i pól'; $strUseHostTable = 'Użycie tabeli hostów'; +$strUseTabKey = 'Klawisz TAB przemieszcza pomiędzy wartoścami, CTRL+strzałka przenosi w dowolne miejsce'; $strUseTables = 'Użycie tabel'; $strUseTextField = 'Użycie pola tekstowego'; $strUseThisValue = 'Użycie tej wartości'; @@ -717,26 +741,8 @@ $strYes = 'Tak'; $strZeroRemovesTheLimit = 'Uwaga: Ustawienie tych opcji na 0 (zero) usuwa ograniczenie.'; $strZip = '".zip"'; -$strAddFields = 'Add %s field(s)'; //to translate -$strInsertBookmarkTitle = 'Please insert bookmark title'; //to translate -$strNoThemeSupport = 'No themes support, please check your configuration and/or your themes in directory %s.'; //to translate -$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate -$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate -$strBinLogName = 'Log name'; //to translate -$strBinLogPosition = 'Position'; //to translate -$strBinLogEventType = 'Event type'; //to translate -$strBinLogServerId = 'Server ID'; //to translate -$strBinLogOriginalPosition = 'Original position'; //to translate -$strBinLogInfo = 'Information'; //to translate -$strBinaryLog = 'Binary log'; //to translate -$strSelectBinaryLog = 'Select binary log to view'; //to translate -$strDBCopy = 'Copy database to'; //to translate -$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate -$strSwitchToDatabase = 'Switch to copied database'; //to translate -$strPasswordHashing = 'Password Hashing'; //to translate -$strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate -$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate -$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/portuguese-iso-8859-1.inc.php b/lang/portuguese-iso-8859-1.inc.php index 118ea70f3..d507adb96 100644 --- a/lang/portuguese-iso-8859-1.inc.php +++ b/lang/portuguese-iso-8859-1.inc.php @@ -758,4 +758,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/portuguese-utf-8.inc.php b/lang/portuguese-utf-8.inc.php index 568f06e62..44c8834a6 100644 --- a/lang/portuguese-utf-8.inc.php +++ b/lang/portuguese-utf-8.inc.php @@ -759,4 +759,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/romanian-iso-8859-1.inc.php b/lang/romanian-iso-8859-1.inc.php index 0c137632f..41379a5ad 100644 --- a/lang/romanian-iso-8859-1.inc.php +++ b/lang/romanian-iso-8859-1.inc.php @@ -739,4 +739,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/romanian-utf-8.inc.php b/lang/romanian-utf-8.inc.php index ceedc9e88..c06d26ff6 100644 --- a/lang/romanian-utf-8.inc.php +++ b/lang/romanian-utf-8.inc.php @@ -740,4 +740,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/russian-cp-866.inc.php b/lang/russian-cp-866.inc.php index 348cb32c7..bc0bf263b 100644 --- a/lang/russian-cp-866.inc.php +++ b/lang/russian-cp-866.inc.php @@ -746,4 +746,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/russian-koi8-r.inc.php b/lang/russian-koi8-r.inc.php index 39272df2f..912e79a8f 100644 --- a/lang/russian-koi8-r.inc.php +++ b/lang/russian-koi8-r.inc.php @@ -746,4 +746,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/russian-utf-8.inc.php b/lang/russian-utf-8.inc.php index 9632afb97..5b2fecf18 100644 --- a/lang/russian-utf-8.inc.php +++ b/lang/russian-utf-8.inc.php @@ -747,4 +747,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/russian-windows-1251.inc.php b/lang/russian-windows-1251.inc.php index 7df994f4c..c4f869778 100644 --- a/lang/russian-windows-1251.inc.php +++ b/lang/russian-windows-1251.inc.php @@ -746,4 +746,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/serbian_cyrillic-utf-8.inc.php b/lang/serbian_cyrillic-utf-8.inc.php index f51bab278..580be6f52 100644 --- a/lang/serbian_cyrillic-utf-8.inc.php +++ b/lang/serbian_cyrillic-utf-8.inc.php @@ -35,6 +35,7 @@ $strAddConstraints = 'Додај ограничења'; $strAddDeleteColumn = 'Додај/обриши колону'; $strAddDeleteRow = 'Додај/обриши поље за критеријум'; $strAddDropDatabase = 'Додај DROP DATABASE'; +$strAddFields = 'Додај %s поља'; $strAddHeaderComment = 'Додај коментар у заглавље (\\n раздваја линије)'; $strAddIfNotExists = 'Додај \'IF NOT EXISTS\''; $strAddIntoComments = 'Додај у коментаре'; @@ -62,6 +63,7 @@ $strAnd = 'и'; $strAny = 'Било који'; $strAnyHost = 'Било који домаћин'; $strAnyUser = 'Било који корисник'; +$strApproximateCount = 'Може бити приближно. Видите FAQ 3.11'; $strArabic = 'Арапски'; $strArmenian = 'Јерменски'; $strAscending = 'Растући'; @@ -75,8 +77,15 @@ $strBack = 'Назад'; $strBaltic = 'Балтички'; $strBeginCut = 'ПОЧЕТАК РЕЗ'; $strBeginRaw = 'ПОЧЕТАК СИРОВО'; +$strBinLogEventType = 'Врста догађаја'; +$strBinLogInfo = 'Информације'; +$strBinLogName = 'Назив дневника'; +$strBinLogOriginalPosition = 'Оригинална позиција'; +$strBinLogPosition = 'Позиција'; +$strBinLogServerId = 'ИД сервера'; $strBinary = 'Бинарни'; $strBinaryDoNotEdit = 'Бинарни - не мењај'; +$strBinaryLog = 'Бинарни дневник'; $strBookmarkAllUsers = 'Дозволи сваком кориснику да приступа овом упамћеном упиту'; $strBookmarkDeleted = 'Обележивач је управо обрисан.'; $strBookmarkLabel = 'Назив'; @@ -128,6 +137,7 @@ $strColumnPrivileges = 'Привилегије везане за колоне'; $strCommand = 'Наредба'; $strComments = 'Коментари'; $strCommentsForTable = 'КОМЕНТАРИ ТАБЕЛЕ'; +$strCompatibleHashing = 'MySQL 4.0 компатибилно'; $strCompleteInserts = 'Комплетан INSERT (са именима поља)'; $strCompression = 'Компресија'; $strConfigFileError = 'phpMyAdmin није могао да прочита вашу конфигурациону датотеку!
Ово се може десити ако PHP нађе грешку у процесирању или не може да пронађе датотеку.
Позовите конфигурациону датотеку директно користећи доњи линк и прочитајте поруке о грешци које добијате. У већини случајеве негде недостаје наводник или тачка-зарез.
Ако добијете празну страну, све је у реду.'; @@ -137,6 +147,7 @@ $strConnections = 'Конекције'; $strConstraintsForDumped = 'Ограничења за извезене табеле'; $strConstraintsForTable = 'Ограничења за табеле'; $strCookiesRequired = 'Колачићи (Cookies) морају у овом случају бити активни.'; +$strCopyDatabaseOK = 'База %s је прекопирана у %s'; $strCopyTable = 'Копирај табелу у (база.табела):'; $strCopyTableOK = 'Табела %s је копирана у %s.'; $strCopyTableSameNames = 'Не могу да копирам табелу у саму себе!'; @@ -156,6 +167,7 @@ $strCzech = 'Чешки'; $strCzechSlovak = 'Чешко-словачки'; $strDBComment = 'Коментар базе:'; +$strDBCopy = 'Копирај базу у'; $strDBGContext = 'Контекст'; $strDBGContextID = 'Контекст ИД'; $strDBGHits = 'Погодака'; @@ -228,6 +240,7 @@ $strEndRaw = 'КРАЈ СИРОВО'; $strEnglish = 'Енглески'; $strEnglishPrivileges = ' Напомена: MySQL имена привилегија морају да буду на енглеском '; $strError = 'Грешка'; +$strEscapeWildcards = 'Пре џокера _ и % треба ставити знак \ ако их користите самостално'; $strEstonian = 'Естонски'; $strExcelEdition = 'Excel издање'; $strExcelOptions = 'Excel опције'; @@ -297,11 +310,16 @@ $strIndex = 'Кључ'; $strIndexHasBeenDropped = 'Кључ %s је обрисан'; $strIndexName = 'Име кључа :'; $strIndexType = 'Тип кључа :'; +$strIndexWarningMultiple = 'Више од једног %s кључа је направљено за колону `%s`'; +$strIndexWarningPrimary = 'PRIMARY и INDEX кључеви не би требали да буду истовремено постављени за колону `%s`'; +$strIndexWarningTable = 'Проблем при индексирању табеле `%s`'; +$strIndexWarningUnique = 'UNIQUE и INDEX кључеви не би требали да буду истовремено постављени за колону `%s`'; $strIndexes = 'Кључеви'; $strInnodbStat = 'InnoDB статус'; $strInsecureMySQL = 'Ваша конфигурациона датотека садржи подешавања (root без лозинке) која одговарају стандардном MySQL привилегованом налогу. Ваш MySQL сервер ради са овим подешавањима, отворен је за упаде, и заиста треба да исправите овај сигурносни ризик.'; $strInsert = 'Нови запис'; $strInsertAsNewRow = 'Унеси као нови ред'; +$strInsertBookmarkTitle = 'Молимо унесите назив маркера'; $strInsertNewRow = 'Унеси нови ред'; $strInsertTextfiles = 'Увези податке из текстуалне датотеке'; $strInsertedRowId = 'ID уметнутих редова:'; @@ -383,6 +401,7 @@ $strName = 'Име'; $strNeedPrimaryKey = 'Требало би да дефинишете примарни кључ за ову табелу.'; $strNext = 'Следећи'; $strNo = 'Не'; +$strNoActivity = 'Није било активности %s или више секунди, молимо пријавите се поново'; $strNoDatabases = 'База не постоји'; $strNoDatabasesSelected = 'Није изабрана ни једна база.'; $strNoDescription = 'нема описа'; @@ -402,6 +421,7 @@ $strNoRights = 'Није Вам дозвољено да будете овде!'; $strNoRowsSelected = 'Нема одабраних редова'; $strNoSpace = 'Недовољно простора за снимање датотеке %s.'; $strNoTablesFound = 'Табеле нису пронађене у бази.'; +$strNoThemeSupport = 'Нема подршке за теме, молимо проверите конфигурацију и/или теме у директоријуму %s.'; $strNoUsersFound = 'Корисник није нађен.'; $strNoValidateSQL = 'Прескочи проверу SQL-a'; $strNone = 'нема'; @@ -433,6 +453,7 @@ $strPartialText = 'Део текста'; $strPassword = 'Лозинка'; $strPasswordChanged = 'Лозинка за %s је успешно промењена.'; $strPasswordEmpty = 'Лозинка је празна!'; +$strPasswordHashing = 'Хеширање лозинке'; $strPasswordNotSame = 'Лозинке нису идентичне!'; $strPdfDbSchema = 'Схема базе "%s" - Страна %s'; $strPdfInvalidTblName = 'Табела "%s" не постоји!'; @@ -569,6 +590,7 @@ $strSearchType = 'Тражи:'; $strSecretRequired = 'Конфигурациона датотека захтева тајну лозинку (blowfish_secret).'; $strSelectADb = 'Изаберите базу'; $strSelectAll = 'Изабери све'; +$strSelectBinaryLog = 'Изаберите бинарни дневник за преглед'; $strSelectFields = 'Изабери поља (најмање једно)'; $strSelectNumRows = 'у упиту'; $strSelectTables = 'Изабери табеле'; @@ -624,6 +646,7 @@ $strSubmit = 'Пошаљи'; $strSuccess = 'Ваш SQL упит је успешно извршен'; $strSum = 'Укупно'; $strSwedish = 'Шведски'; +$strSwitchToDatabase = 'Пребаци се на копирану базу'; $strSwitchToTable = 'Пређи на копирану табелу'; $strTable = 'Табела'; @@ -685,6 +708,7 @@ $strUpgrade = 'Требало би да унапредите ваш %s серв $strUsage = 'Заузеће'; $strUseBackquotes = 'Користи \' за ограничавање имена поља'; $strUseHostTable = 'Користи табелу домаћина'; +$strUseTabKey = 'Користите TAB тастер за померање од поља до поља, или CTRL+стрелице за слободно померање'; $strUseTables = 'Користи табеле'; $strUseTextField = 'Користи текст поље'; $strUseThisValue = 'Користи ову вредност'; @@ -723,26 +747,8 @@ $strYes = 'Да'; $strZeroRemovesTheLimit = 'Напомена: Постављање ових опција на 0 (нулу) уклања ограничења.'; $strZip = '"зиповано"'; -$strAddFields = 'Add %s field(s)'; //to translate -$strInsertBookmarkTitle = 'Please insert bookmark title'; //to translate -$strNoThemeSupport = 'No themes support, please check your configuration and/or your themes in directory %s.'; //to translate -$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate -$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate -$strBinLogName = 'Log name'; //to translate -$strBinLogPosition = 'Position'; //to translate -$strBinLogEventType = 'Event type'; //to translate -$strBinLogServerId = 'Server ID'; //to translate -$strBinLogOriginalPosition = 'Original position'; //to translate -$strBinLogInfo = 'Information'; //to translate -$strBinaryLog = 'Binary log'; //to translate -$strSelectBinaryLog = 'Select binary log to view'; //to translate -$strDBCopy = 'Copy database to'; //to translate -$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate -$strSwitchToDatabase = 'Switch to copied database'; //to translate -$strPasswordHashing = 'Password Hashing'; //to translate -$strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate -$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate -$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/serbian_cyrillic-windows-1251.inc.php b/lang/serbian_cyrillic-windows-1251.inc.php index 96b51e147..76b48ca85 100644 --- a/lang/serbian_cyrillic-windows-1251.inc.php +++ b/lang/serbian_cyrillic-windows-1251.inc.php @@ -34,6 +34,7 @@ $strAddConstraints = ' $strAddDeleteColumn = '/ '; $strAddDeleteRow = '/ '; $strAddDropDatabase = ' DROP DATABASE'; +$strAddFields = ' %s '; $strAddHeaderComment = ' (\\n )'; $strAddIfNotExists = ' \'IF NOT EXISTS\''; $strAddIntoComments = ' '; @@ -61,6 +62,7 @@ $strAnd = ' $strAny = ' '; $strAnyHost = ' '; $strAnyUser = ' '; +$strApproximateCount = ' . FAQ 3.11'; $strArabic = ''; $strArmenian = ''; $strAscending = ''; @@ -74,8 +76,15 @@ $strBack = ' $strBaltic = ''; $strBeginCut = ' '; $strBeginRaw = ' '; +$strBinLogEventType = ' '; +$strBinLogInfo = ''; +$strBinLogName = ' '; +$strBinLogOriginalPosition = ' '; +$strBinLogPosition = ''; +$strBinLogServerId = ' '; $strBinary = ''; $strBinaryDoNotEdit = ' - '; +$strBinaryLog = ' '; $strBookmarkAllUsers = ' '; $strBookmarkDeleted = ' .'; $strBookmarkLabel = ''; @@ -127,6 +136,7 @@ $strColumnPrivileges = ' $strCommand = ''; $strComments = ''; $strCommentsForTable = ' '; +$strCompatibleHashing = 'MySQL 4.0 '; $strCompleteInserts = ' INSERT ( )'; $strCompression = ''; $strConfigFileError = 'phpMyAdmin !
PHP .
. -.
, .'; @@ -136,6 +146,7 @@ $strConnections = ' $strConstraintsForDumped = ' '; $strConstraintsForTable = ' '; $strCookiesRequired = ' (Cookies) .'; +$strCopyDatabaseOK = ' %s %s'; $strCopyTable = ' (.):'; $strCopyTableOK = ' %s %s.'; $strCopyTableSameNames = ' !'; @@ -155,6 +166,7 @@ $strCzech = ' $strCzechSlovak = '-'; $strDBComment = ' :'; +$strDBCopy = ' '; $strDBGContext = ''; $strDBGContextID = ' '; $strDBGHits = ''; @@ -227,6 +239,7 @@ $strEndRaw = ' $strEnglish = ''; $strEnglishPrivileges = ' : MySQL '; $strError = ''; +$strEscapeWildcards = ' _ % \ '; $strEstonian = ''; $strExcelEdition = 'Excel '; $strExcelOptions = 'Excel '; @@ -296,11 +309,16 @@ $strIndex = 'ʚ $strIndexHasBeenDropped = 'ʚ %s '; $strIndexName = ' :'; $strIndexType = ' :'; +$strIndexWarningMultiple = ' %s `%s`'; +$strIndexWarningPrimary = 'PRIMARY INDEX `%s`'; +$strIndexWarningTable = ' `%s`'; +$strIndexWarningUnique = 'UNIQUE INDEX `%s`'; $strIndexes = 'ʚ'; $strInnodbStat = 'InnoDB '; $strInsecureMySQL = ' (root ) MySQL . MySQL , , .'; $strInsert = ' '; $strInsertAsNewRow = ' '; +$strInsertBookmarkTitle = ' '; $strInsertNewRow = ' '; $strInsertTextfiles = ' '; $strInsertedRowId = 'ID :'; @@ -382,6 +400,7 @@ $strName = ' $strNeedPrimaryKey = ' .'; $strNext = ''; $strNo = ''; +$strNoActivity = ' %s , '; $strNoDatabases = ' '; $strNoDatabasesSelected = ' .'; $strNoDescription = ' '; @@ -401,6 +420,7 @@ $strNoRights = ' $strNoRowsSelected = ' '; $strNoSpace = ' %s.'; $strNoTablesFound = ' .'; +$strNoThemeSupport = ' , / %s.'; $strNoUsersFound = ' .'; $strNoValidateSQL = ' SQL-a'; $strNone = ''; @@ -432,6 +452,7 @@ $strPartialText = ' $strPassword = ''; $strPasswordChanged = ' %s .'; $strPasswordEmpty = ' !'; +$strPasswordHashing = ' '; $strPasswordNotSame = ' !'; $strPdfDbSchema = ' "%s" - %s'; $strPdfInvalidTblName = ' "%s" !'; @@ -568,6 +589,7 @@ $strSearchType = ' $strSecretRequired = ' (blowfish_secret).'; $strSelectADb = ' '; $strSelectAll = ' '; +$strSelectBinaryLog = ' '; $strSelectFields = ' ( )'; $strSelectNumRows = ' '; $strSelectTables = ' '; @@ -623,6 +645,7 @@ $strSubmit = ' $strSuccess = ' SQL '; $strSum = ''; $strSwedish = ''; +$strSwitchToDatabase = ' '; $strSwitchToTable = ' '; $strTable = ''; @@ -684,6 +707,7 @@ $strUpgrade = ' $strUsage = ''; $strUseBackquotes = ' \' '; $strUseHostTable = ' '; +$strUseTabKey = ' TAB , CTRL+ '; $strUseTables = ' '; $strUseTextField = ' '; $strUseThisValue = ' '; @@ -722,26 +746,8 @@ $strYes = ' $strZeroRemovesTheLimit = ': 0 () .'; $strZip = '""'; -$strAddFields = 'Add %s field(s)'; //to translate -$strInsertBookmarkTitle = 'Please insert bookmark title'; //to translate -$strNoThemeSupport = 'No themes support, please check your configuration and/or your themes in directory %s.'; //to translate -$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate -$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate -$strBinLogName = 'Log name'; //to translate -$strBinLogPosition = 'Position'; //to translate -$strBinLogEventType = 'Event type'; //to translate -$strBinLogServerId = 'Server ID'; //to translate -$strBinLogOriginalPosition = 'Original position'; //to translate -$strBinLogInfo = 'Information'; //to translate -$strBinaryLog = 'Binary log'; //to translate -$strSelectBinaryLog = 'Select binary log to view'; //to translate -$strDBCopy = 'Copy database to'; //to translate -$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate -$strSwitchToDatabase = 'Switch to copied database'; //to translate -$strPasswordHashing = 'Password Hashing'; //to translate -$strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate -$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate -$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/serbian_latin-utf-8.inc.php b/lang/serbian_latin-utf-8.inc.php index 58802637d..b3be57edc 100644 --- a/lang/serbian_latin-utf-8.inc.php +++ b/lang/serbian_latin-utf-8.inc.php @@ -35,6 +35,7 @@ $strAddConstraints = 'Dodaj ograničenja'; $strAddDeleteColumn = 'Dodaj/obriši kolonu'; $strAddDeleteRow = 'Dodaj/obriši polje za kriterijum'; $strAddDropDatabase = 'Dodaj DROP DATABASE'; +$strAddFields = 'Dodaj %s polja'; $strAddHeaderComment = 'Dodaj komentar u zaglavlje (\\n razdvaja linije)'; $strAddIfNotExists = 'Dodaj \'IF NOT EXISTS\''; $strAddIntoComments = 'Dodaj u komentare'; @@ -62,6 +63,7 @@ $strAnd = 'i'; $strAny = 'Bilo koji'; $strAnyHost = 'Bilo koji domaćin'; $strAnyUser = 'Bilo koji korisnik'; +$strApproximateCount = 'Može biti približno. Vidite FAQ 3.11'; $strArabic = 'Arapski'; $strArmenian = 'Jermenski'; $strAscending = 'Rastući'; @@ -75,8 +77,15 @@ $strBack = 'Nazad'; $strBaltic = 'Baltički'; $strBeginCut = 'POČETAK REZ'; $strBeginRaw = 'POČETAK SIROVO'; +$strBinLogEventType = 'Vrsta događaja'; +$strBinLogInfo = 'Informacije'; +$strBinLogName = 'Naziv dnevnika'; +$strBinLogOriginalPosition = 'Originalna pozicija'; +$strBinLogPosition = 'Pozicija'; +$strBinLogServerId = 'ID servera'; $strBinary = 'Binarni'; $strBinaryDoNotEdit = 'Binarni - ne menjaj'; +$strBinaryLog = 'Binarni dnevnik'; $strBookmarkAllUsers = 'Dozvoli svakom korisniku da pristupa ovom markeru'; $strBookmarkDeleted = 'Obeleživač je upravo obrisan.'; $strBookmarkLabel = 'Naziv'; @@ -128,6 +137,7 @@ $strColumnPrivileges = 'Privilegije vezane za kolone'; $strCommand = 'Naredba'; $strComments = 'Komentari'; $strCommentsForTable = 'KOMENTARI TABELE'; +$strCompatibleHashing = 'MySQL 4.0 kompatibilno'; $strCompleteInserts = 'Kompletan INSERT (sa imenima polja)'; $strCompression = 'Kompresija'; $strConfigFileError = 'phpMyAdmin nije mogao da pročita vašu konfiguracionu datoteku!
Ovo se može desiti ako PHP nađe grešku u procesiranju ili ne može da pronađe datoteku.
Pozovite konfiguracionu datoteku direktno koristeći donji link i pročitajte poruke o grešci koje dobijate. U većini slučajeve negde nedostaje navodnik ili tačka-zarez.
Ako dobijete praznu stranu, sve je u redu.'; @@ -137,6 +147,7 @@ $strConnections = 'Konekcije'; $strConstraintsForDumped = 'Ograničenja za izvezene tabele'; $strConstraintsForTable = 'Ograničenja za tabele'; $strCookiesRequired = 'Kolačići (Cookies) moraju u ovom slučaju biti aktivni.'; +$strCopyDatabaseOK = 'Baza %s je prekopirana u %s'; $strCopyTable = 'Kopiraj tabelu u (baza.tabela):'; $strCopyTableOK = 'Tabela %s je kopirana u %s.'; $strCopyTableSameNames = 'Ne mogu da kopiram tabelu u samu sebe!'; @@ -156,6 +167,7 @@ $strCzech = 'Češki'; $strCzechSlovak = 'Češko-slovački'; $strDBComment = 'Komentar baze:'; +$strDBCopy = 'Kopiraj bazu u'; $strDBGContext = 'Kontekst'; $strDBGContextID = 'Kontekst ID'; $strDBGHits = 'Pogodaka'; @@ -228,6 +240,7 @@ $strEndRaw = 'KRAJ SIROVO'; $strEnglish = 'Engleski'; $strEnglishPrivileges = ' Napomena: MySQL imena privilegija moraju da budu na engleskom '; $strError = 'Greška'; +$strEscapeWildcards = 'Pre džokera _ i % treba staviti znak \ ako ih koristite samostalno'; $strEstonian = 'Estonski'; $strExcelEdition = 'Excel izdanje'; $strExcelOptions = 'Excel opcije'; @@ -297,11 +310,16 @@ $strIndex = 'Ključ'; $strIndexHasBeenDropped = 'Ključ %s je obrisan'; $strIndexName = 'Ime ključa :'; $strIndexType = 'Tip ključa :'; +$strIndexWarningMultiple = 'Više od jednog %s ključa je napravljeno za kolonu `%s`'; +$strIndexWarningPrimary = 'PRIMARY i INDEX ključevi ne bi trebali da budu istovremeno postavljeni za kolonu `%s`'; +$strIndexWarningTable = 'Problem pri indeksiranju tabele `%s`'; +$strIndexWarningUnique = 'UNIQUE i INDEX ključevi ne bi trebali da budu istovremeno postavljeni za kolonu `%s`'; $strIndexes = 'Ključevi'; $strInnodbStat = 'InnoDB status'; $strInsecureMySQL = 'Vaša konfiguraciona datoteka sadrži podešavanja (root bez lozinke) koja odgovaraju standardnom MySQL privilegovanom nalogu. Vaš MySQL server radi sa ovim podešavanjima, otvoren je za upade, i zaista treba da ispravite ovaj sigurnosni rizik.'; $strInsert = 'Novi zapis'; $strInsertAsNewRow = 'Unesi kao novi red'; +$strInsertBookmarkTitle = 'Molimo unesite naziv markera'; $strInsertNewRow = 'Unesi novi red'; $strInsertTextfiles = 'Uvezi podatke iz tekstualne datoteke'; $strInsertedRowId = 'ID umetnutih redova:'; @@ -383,6 +401,7 @@ $strName = 'Ime'; $strNeedPrimaryKey = 'Trebalo bi da definišete primarni ključ za ovu tabelu.'; $strNext = 'Sledeći'; $strNo = 'Ne'; +$strNoActivity = 'Nije bilo aktivnosti %s ili više sekundi, molimo prijavite se ponovo'; $strNoDatabases = 'Baza ne postoji'; $strNoDatabasesSelected = 'Nije izabrana ni jedna baza.'; $strNoDescription = 'nema opisa'; @@ -402,6 +421,7 @@ $strNoRights = 'Nije Vam dozvoljeno da budete ovde!'; $strNoRowsSelected = 'Nema odabranih redova'; $strNoSpace = 'Nedovoljno prostora za snimanje datoteke %s.'; $strNoTablesFound = 'Tabele nisu pronađene u bazi.'; +$strNoThemeSupport = 'Nema podrške za teme, molimo proverite konfiguraciju i/ili teme u direktorijumu %s.'; $strNoUsersFound = 'Korisnik nije nađen.'; $strNoValidateSQL = 'Preskoči proveru SQL-a'; $strNone = 'nema'; @@ -433,6 +453,7 @@ $strPartialText = 'Deo teksta'; $strPassword = 'Lozinka'; $strPasswordChanged = 'Lozinka za %s je uspešno promenjena.'; $strPasswordEmpty = 'Lozinka je prazna!'; +$strPasswordHashing = 'Heširanje lozinke'; $strPasswordNotSame = 'Lozinke nisu identične!'; $strPdfDbSchema = 'Shema baze "%s" - Strana %s'; $strPdfInvalidTblName = 'Tabela "%s" ne postoji!'; @@ -569,6 +590,7 @@ $strSearchType = 'Traži:'; $strSecretRequired = 'Konfiguraciona datoteka zahteva tajnu lozinku (blowfish_secret).'; $strSelectADb = 'Izaberite bazu'; $strSelectAll = 'Izaberi sve'; +$strSelectBinaryLog = 'Izaberite binarni dnevnik za pregled'; $strSelectFields = 'Izaberi polja (najmanje jedno)'; $strSelectNumRows = 'u upitu'; $strSelectTables = 'Izaberi tabele'; @@ -624,6 +646,7 @@ $strSubmit = 'Pošalji'; $strSuccess = 'Vaš SQL upit je uspešno izvršen'; $strSum = 'Ukupno'; $strSwedish = 'Švedski'; +$strSwitchToDatabase = 'Prebaci se na kopiranu bazu'; $strSwitchToTable = 'Pređi na kopiranu tabelu'; $strTable = 'Tabela'; @@ -685,6 +708,7 @@ $strUpgrade = 'Trebalo bi da unapredite vaš %s server na verziju %s ili noviju. $strUsage = 'Zauzeće'; $strUseBackquotes = 'Koristi \' za ograničavanje imena polja'; $strUseHostTable = 'Koristi tabelu domaćina'; +$strUseTabKey = 'Koristite TAB taster za pomeranje od polja do polja, ili CTRL+strelice za slobodno pomeranje'; $strUseTables = 'Koristi tabele'; $strUseTextField = 'Koristi tekst polje'; $strUseThisValue = 'Koristi ovu vrednost'; @@ -723,26 +747,8 @@ $strYes = 'Da'; $strZeroRemovesTheLimit = 'Napomena: Postavljanje ovih opcija na 0 (nulu) uklanja limite.'; $strZip = '"zipovano"'; -$strAddFields = 'Add %s field(s)'; //to translate -$strInsertBookmarkTitle = 'Please insert bookmark title'; //to translate -$strNoThemeSupport = 'No themes support, please check your configuration and/or your themes in directory %s.'; //to translate -$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate -$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate -$strBinLogName = 'Log name'; //to translate -$strBinLogPosition = 'Position'; //to translate -$strBinLogEventType = 'Event type'; //to translate -$strBinLogServerId = 'Server ID'; //to translate -$strBinLogOriginalPosition = 'Original position'; //to translate -$strBinLogInfo = 'Information'; //to translate -$strBinaryLog = 'Binary log'; //to translate -$strSelectBinaryLog = 'Select binary log to view'; //to translate -$strDBCopy = 'Copy database to'; //to translate -$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate -$strSwitchToDatabase = 'Switch to copied database'; //to translate -$strPasswordHashing = 'Password Hashing'; //to translate -$strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate -$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate -$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/serbian_latin-windows-1250.inc.php b/lang/serbian_latin-windows-1250.inc.php index 4c8fe6571..17decd1de 100644 --- a/lang/serbian_latin-windows-1250.inc.php +++ b/lang/serbian_latin-windows-1250.inc.php @@ -34,6 +34,7 @@ $strAddConstraints = 'Dodaj ograni $strAddDeleteColumn = 'Dodaj/obrii kolonu'; $strAddDeleteRow = 'Dodaj/obrii polje za kriterijum'; $strAddDropDatabase = 'Dodaj DROP DATABASE'; +$strAddFields = 'Dodaj %s polja'; $strAddHeaderComment = 'Dodaj komentar u zaglavlje (\\n razdvaja linije)'; $strAddIfNotExists = 'Dodaj \'IF NOT EXISTS\''; $strAddIntoComments = 'Dodaj u komentare'; @@ -61,6 +62,7 @@ $strAnd = 'i'; $strAny = 'Bilo koji'; $strAnyHost = 'Bilo koji domain'; $strAnyUser = 'Bilo koji korisnik'; +$strApproximateCount = 'Moe biti priblino. Vidite FAQ 3.11'; $strArabic = 'Arapski'; $strArmenian = 'Jermenski'; $strAscending = 'Rastui'; @@ -74,8 +76,15 @@ $strBack = 'Nazad'; $strBaltic = 'Baltiki'; $strBeginCut = 'POETAK REZ'; $strBeginRaw = 'POETAK SIROVO'; +$strBinLogEventType = 'Vrsta dogaaja'; +$strBinLogInfo = 'Informacije'; +$strBinLogName = 'Naziv dnevnika'; +$strBinLogOriginalPosition = 'Originalna pozicija'; +$strBinLogPosition = 'Pozicija'; +$strBinLogServerId = 'ID servera'; $strBinary = 'Binarni'; $strBinaryDoNotEdit = 'Binarni - ne menjaj'; +$strBinaryLog = 'Binarni dnevnik'; $strBookmarkAllUsers = 'Dozvoli svakom korisniku da pristupa ovom markeru'; $strBookmarkDeleted = 'Obeleiva je upravo obrisan.'; $strBookmarkLabel = 'Naziv'; @@ -127,6 +136,7 @@ $strColumnPrivileges = 'Privilegije vezane za kolone'; $strCommand = 'Naredba'; $strComments = 'Komentari'; $strCommentsForTable = 'KOMENTARI TABELE'; +$strCompatibleHashing = 'MySQL 4.0 kompatibilno'; $strCompleteInserts = 'Kompletan INSERT (sa imenima polja)'; $strCompression = 'Kompresija'; $strConfigFileError = 'phpMyAdmin nije mogao da proita vau konfiguracionu datoteku!
Ovo se moe desiti ako PHP nae greku u procesiranju ili ne moe da pronae datoteku.
Pozovite konfiguracionu datoteku direktno koristei donji link i proitajte poruke o greci koje dobijate. U veini sluajeve negde nedostaje navodnik ili taka-zarez.
Ako dobijete praznu stranu, sve je u redu.'; @@ -136,6 +146,7 @@ $strConnections = 'Konekcije'; $strConstraintsForDumped = 'Ogranienja za izvezene tabele'; $strConstraintsForTable = 'Ogranienja za tabele'; $strCookiesRequired = 'Kolaii (Cookies) moraju u ovom sluaju biti aktivni.'; +$strCopyDatabaseOK = 'Baza %s je prekopirana u %s'; $strCopyTable = 'Kopiraj tabelu u (baza.tabela):'; $strCopyTableOK = 'Tabela %s je kopirana u %s.'; $strCopyTableSameNames = 'Ne mogu da kopiram tabelu u samu sebe!'; @@ -155,6 +166,7 @@ $strCzech = ' $strCzechSlovak = 'eko-slovaki'; $strDBComment = 'Komentar baze:'; +$strDBCopy = 'Kopiraj bazu u'; $strDBGContext = 'Kontekst'; $strDBGContextID = 'Kontekst ID'; $strDBGHits = 'Pogodaka'; @@ -227,6 +239,7 @@ $strEndRaw = 'KRAJ SIROVO'; $strEnglish = 'Engleski'; $strEnglishPrivileges = ' Napomena: MySQL imena privilegija moraju da budu na engleskom '; $strError = 'Greka'; +$strEscapeWildcards = 'Pre dokera _ i % treba staviti znak \ ako ih koristite samostalno'; $strEstonian = 'Estonski'; $strExcelEdition = 'Excel izdanje'; $strExcelOptions = 'Excel opcije'; @@ -296,11 +309,16 @@ $strIndex = 'Klju $strIndexHasBeenDropped = 'Klju %s je obrisan'; $strIndexName = 'Ime kljua :'; $strIndexType = 'Tip kljua :'; +$strIndexWarningMultiple = 'Vie od jednog %s kljua je napravljeno za kolonu `%s`'; +$strIndexWarningPrimary = 'PRIMARY i INDEX kljuevi ne bi trebali da budu istovremeno postavljeni za kolonu `%s`'; +$strIndexWarningTable = 'Problem pri indeksiranju tabele `%s`'; +$strIndexWarningUnique = 'UNIQUE i INDEX kljuevi ne bi trebali da budu istovremeno postavljeni za kolonu `%s`'; $strIndexes = 'Kljuevi'; $strInnodbStat = 'InnoDB status'; $strInsecureMySQL = 'Vaa konfiguraciona datoteka sadri podeavanja (root bez lozinke) koja odgovaraju standardnom MySQL privilegovanom nalogu. Va MySQL server radi sa ovim podeavanjima, otvoren je za upade, i zaista treba da ispravite ovaj sigurnosni rizik.'; $strInsert = 'Novi zapis'; $strInsertAsNewRow = 'Unesi kao novi red'; +$strInsertBookmarkTitle = 'Molimo unesite naziv markera'; $strInsertNewRow = 'Unesi novi red'; $strInsertTextfiles = 'Uvezi podatke iz tekstualne datoteke'; $strInsertedRowId = 'ID umetnutih redova:'; @@ -382,6 +400,7 @@ $strName = 'Ime'; $strNeedPrimaryKey = 'Trebalo bi da definiete primarni klju za ovu tabelu.'; $strNext = 'Sledei'; $strNo = 'Ne'; +$strNoActivity = 'Nije bilo aktivnosti %s ili vie sekundi, molimo prijavite se ponovo'; $strNoDatabases = 'Baza ne postoji'; $strNoDatabasesSelected = 'Nije izabrana ni jedna baza.'; $strNoDescription = 'nema opisa'; @@ -401,6 +420,7 @@ $strNoRights = 'Nije Vam dozvoljeno da budete ovde!'; $strNoRowsSelected = 'Nema odabranih redova'; $strNoSpace = 'Nedovoljno prostora za snimanje datoteke %s.'; $strNoTablesFound = 'Tabele nisu pronaene u bazi.'; +$strNoThemeSupport = 'Nema podrke za teme, molimo proverite konfiguraciju i/ili teme u direktorijumu %s.'; $strNoUsersFound = 'Korisnik nije naen.'; $strNoValidateSQL = 'Preskoi proveru SQL-a'; $strNone = 'nema'; @@ -432,6 +452,7 @@ $strPartialText = 'Deo teksta'; $strPassword = 'Lozinka'; $strPasswordChanged = 'Lozinka za %s je uspeno promenjena.'; $strPasswordEmpty = 'Lozinka je prazna!'; +$strPasswordHashing = 'Heiranje lozinke'; $strPasswordNotSame = 'Lozinke nisu identine!'; $strPdfDbSchema = 'Shema baze "%s" - Strana %s'; $strPdfInvalidTblName = 'Tabela "%s" ne postoji!'; @@ -568,6 +589,7 @@ $strSearchType = 'Tra $strSecretRequired = 'Konfiguraciona datoteka zahteva tajnu lozinku (blowfish_secret).'; $strSelectADb = 'Izaberite bazu'; $strSelectAll = 'Izaberi sve'; +$strSelectBinaryLog = 'Izaberite binarni dnevnik za pregled'; $strSelectFields = 'Izaberi polja (najmanje jedno)'; $strSelectNumRows = 'u upitu'; $strSelectTables = 'Izaberi tabele'; @@ -623,6 +645,7 @@ $strSubmit = 'Po $strSuccess = 'Va SQL upit je uspeno izvren'; $strSum = 'Ukupno'; $strSwedish = 'vedski'; +$strSwitchToDatabase = 'Prebaci se na kopiranu bazu'; $strSwitchToTable = 'Prei na kopiranu tabelu'; $strTable = 'Tabela'; @@ -684,6 +707,7 @@ $strUpgrade = 'Trebalo bi da unapredite va $strUsage = 'Zauzee'; $strUseBackquotes = 'Koristi \' za ograniavanje imena polja'; $strUseHostTable = 'Koristi tabelu domaina'; +$strUseTabKey = 'Koristite TAB taster za pomeranje od polja do polja, ili CTRL+strelice za slobodno pomeranje'; $strUseTables = 'Koristi tabele'; $strUseTextField = 'Koristi tekst polje'; $strUseThisValue = 'Koristi ovu vrednost'; @@ -722,26 +746,8 @@ $strYes = 'Da'; $strZeroRemovesTheLimit = 'Napomena: Postavljanje ovih opcija na 0 (nulu) uklanja limite.'; $strZip = '"zipovano"'; -$strAddFields = 'Add %s field(s)'; //to translate -$strInsertBookmarkTitle = 'Please insert bookmark title'; //to translate -$strNoThemeSupport = 'No themes support, please check your configuration and/or your themes in directory %s.'; //to translate -$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate -$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate -$strBinLogName = 'Log name'; //to translate -$strBinLogPosition = 'Position'; //to translate -$strBinLogEventType = 'Event type'; //to translate -$strBinLogServerId = 'Server ID'; //to translate -$strBinLogOriginalPosition = 'Original position'; //to translate -$strBinLogInfo = 'Information'; //to translate -$strBinaryLog = 'Binary log'; //to translate -$strSelectBinaryLog = 'Select binary log to view'; //to translate -$strDBCopy = 'Copy database to'; //to translate -$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate -$strSwitchToDatabase = 'Switch to copied database'; //to translate -$strPasswordHashing = 'Password Hashing'; //to translate -$strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate -$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate -$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/slovak-iso-8859-2.inc.php b/lang/slovak-iso-8859-2.inc.php index 481a34bc5..15a88b237 100644 --- a/lang/slovak-iso-8859-2.inc.php +++ b/lang/slovak-iso-8859-2.inc.php @@ -740,4 +740,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/slovak-utf-8.inc.php b/lang/slovak-utf-8.inc.php index a50ba6144..266a9bdd7 100644 --- a/lang/slovak-utf-8.inc.php +++ b/lang/slovak-utf-8.inc.php @@ -741,4 +741,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/slovak-windows-1250.inc.php b/lang/slovak-windows-1250.inc.php index 7b473bdac..97dff729d 100644 --- a/lang/slovak-windows-1250.inc.php +++ b/lang/slovak-windows-1250.inc.php @@ -740,4 +740,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/slovenian-iso-8859-2.inc.php b/lang/slovenian-iso-8859-2.inc.php index bf7174368..79243f8e6 100644 --- a/lang/slovenian-iso-8859-2.inc.php +++ b/lang/slovenian-iso-8859-2.inc.php @@ -740,4 +740,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/slovenian-utf-8.inc.php b/lang/slovenian-utf-8.inc.php index b91cde1d2..0eeb002c2 100644 --- a/lang/slovenian-utf-8.inc.php +++ b/lang/slovenian-utf-8.inc.php @@ -741,4 +741,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/slovenian-windows-1250.inc.php b/lang/slovenian-windows-1250.inc.php index c3424b2f6..d97dd0400 100644 --- a/lang/slovenian-windows-1250.inc.php +++ b/lang/slovenian-windows-1250.inc.php @@ -740,4 +740,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/spanish-iso-8859-1.inc.php b/lang/spanish-iso-8859-1.inc.php index ff18106af..76127694b 100644 --- a/lang/spanish-iso-8859-1.inc.php +++ b/lang/spanish-iso-8859-1.inc.php @@ -28,6 +28,7 @@ $strAddConstraints = 'A $strAddDeleteColumn = 'Aadir/borrar columna de criterio'; $strAddDeleteRow = 'Aadir/borrar fila de criterio'; $strAddDropDatabase = 'Aada DROP DATABASE'; +$strAddFields = 'Aada %s campo(s)'; $strAddHeaderComment = 'Aada su propio comentario en el encabezado (\\n segmenta las oraciones)'; $strAddIfNotExists = 'Aada en CASO DE NO EXISTIR'; $strAddIntoComments = 'Aada en los comentarios'; @@ -55,6 +56,7 @@ $strAnd = 'y luego'; $strAny = 'cualquiera'; $strAnyHost = 'Cualquier servidor'; $strAnyUser = 'Cualquier usuario'; +$strApproximateCount = 'Podra ser aproximado. Lase la FAQ 3.11'; $strArabic = 'rabe'; $strArmenian = 'Armenio'; $strAscending = 'Ascendente'; @@ -68,8 +70,15 @@ $strBack = 'Volver'; $strBaltic = 'Bltico'; $strBeginCut = 'INICIO DEL CORTE'; $strBeginRaw = 'INICIO DEL VOLCADO'; +$strBinLogEventType = 'Tipo de evento'; +$strBinLogInfo = 'Informacin'; +$strBinLogName = 'Nombre con el cual se registr'; +$strBinLogOriginalPosition = 'Posicin original'; +$strBinLogPosition = 'Posicin'; +$strBinLogServerId = 'ID del servidor'; $strBinary = ' Binario '; $strBinaryDoNotEdit = ' Binario - no editar! '; +$strBinaryLog = 'Log binario'; $strBookmarkAllUsers = 'Permitir que todo usuario pueda acceder a este bookmark'; $strBookmarkDeleted = 'El "bookmark" ha sido borrado.'; $strBookmarkLabel = 'Etiqueta'; @@ -121,6 +130,7 @@ $strColumnPrivileges = 'Privilegios espec $strCommand = 'Comando'; $strComments = 'Comentarios'; $strCommentsForTable = 'COMENTARIOS PARA LA TABLA'; +$strCompatibleHashing = 'Compatible con MySQL 4.0'; $strCompleteInserts = 'Completar los "Inserts"'; $strCompression = 'Compresin'; $strConfigFileError = 'phpMyAdmin no puede leer el fichero de configuracin!
Esto puede suceder si php encuentra un error sintctico en l o bien php no puede encontrar el fichero.
Intente acceder al fichero de configuracin directamente mediante el siguiente enlace y compruebe el(los) mensaje(s) de error que reciba. En muchas ocasiones falta una coma o punto y coma en algn sitio.
Si recibe una pgina en blanco, todo est correcto.'; @@ -130,6 +140,7 @@ $strConnections = 'Conexiones'; $strConstraintsForDumped = 'Filtros para las tablas descargadas (dump)'; $strConstraintsForTable = 'Filtros para la tabla'; $strCookiesRequired = 'Las "cookies" deben estar habilitadas pasado este punto.'; +$strCopyDatabaseOK = 'La base de datos %s ha sido copiada a %s'; $strCopyTable = 'Copiar la tabla a (base de datos.tabla):'; $strCopyTableOK = 'La tabla %s se copi a %s.'; $strCopyTableSameNames = 'No es posible copiar la tabla a la misma!'; @@ -149,6 +160,7 @@ $strCzech = 'Checo'; $strCzechSlovak = 'Checo-Eslovaco'; $strDBComment = 'Comentario de la base de datos: '; +$strDBCopy = 'Copie la base de datos a'; $strDBGContext = 'Contexto'; $strDBGContextID = 'ID del contexto'; $strDBGHits = 'Hits'; @@ -221,6 +233,7 @@ $strEndRaw = 'FIN DEL VOLCADO'; $strEnglish = 'Ingls'; $strEnglishPrivileges = ' Nota: Los nombres de los privilegios de MySQL estn expresados en ingls '; $strError = 'Error'; +$strEscapeWildcards = 'Los comodines _ y % deben acompaarse de \ para usarlos de manera literal'; $strEstonian = 'Estonio'; $strExcelEdition = 'Edicin Excel'; $strExcelOptions = 'Opciones de Excel'; @@ -290,11 +303,16 @@ $strIndex = ' $strIndexHasBeenDropped = 'El ndice %s ha sido eliminado'; $strIndexName = 'Nombre del ndice :'; $strIndexType = 'Tipo de ndice :'; +$strIndexWarningMultiple = 'Se cre ms de una clave %s para la columna `%s`'; +$strIndexWarningPrimary = 'Las claves PRIMARIA e INDICE no deben seleccionarse juntas para la columna `%s`'; +$strIndexWarningTable = 'Problemas con los ndices de la tabla `%s`'; +$strIndexWarningUnique = 'Las claves UNICA e INDICE no deben seleccionarse juntas para la columna `%s`'; $strIndexes = 'ndices'; $strInnodbStat = 'Estado del InnoDB'; $strInsecureMySQL = 'Su archivo de configuracin contiene parmetros (root sin contrasea) que corresponden a la cuenta privilegiada predeterminada de MySQL. Su servidor de MySQL est usando estos valores, que constituyen una vulnerabilidad. Se le recomienda corregir esta brecha de seguridad.'; $strInsert = 'Insertar'; $strInsertAsNewRow = 'Insertar como una nueva fila'; +$strInsertBookmarkTitle = 'Por favor, inserte un ttulo para el bookmark'; $strInsertNewRow = 'Insertar nueva fila'; $strInsertTextfiles = 'Insertar archivo de texto en la tabla'; $strInsertedRowId = 'Se insert la id de la fila:'; @@ -376,6 +394,7 @@ $strName = 'Nombre'; $strNeedPrimaryKey = 'Usted debe definir una llave primaria para esta tabla.'; $strNext = 'Prxima'; $strNo = 'No'; +$strNoActivity = 'No ha habido actividad desde hace %s o ms segundos, por favor reingrese al sitio'; $strNoDatabases = 'No hay bases de datos'; $strNoDatabasesSelected = 'No se seleccionaron bases de datos.'; $strNoDescription = 'Sin descripcin'; @@ -395,6 +414,7 @@ $strNoRights = ' $strNoRowsSelected = 'No se seleccionaron filas'; $strNoSpace = 'No hay suficiente espacio para guardar el archivo %s.'; $strNoTablesFound = 'No se han encontrado tablas en la base de datos.'; +$strNoThemeSupport = 'No existe soporte para Temas, por favor, revise su configuracin y/o sus temas en el directorio %s.'; $strNoUsersFound = 'Usuario(s) no encontrado(s).'; $strNoValidateSQL = 'Saltarse la validacin del SQL'; $strNone = 'Ninguna'; @@ -426,6 +446,7 @@ $strPartialText = 'Textos parciales'; $strPassword = 'Contrasea'; $strPasswordChanged = 'La contrasea para %s fue cambiada exitosamente.'; $strPasswordEmpty = 'La contrasea est vaca!'; +$strPasswordHashing = 'Hashing de la contrasea'; $strPasswordNotSame = 'Las contraseas no coinciden!'; $strPdfDbSchema = 'Esquema de la base de datos "%s" - Pgina %s'; $strPdfInvalidTblName = 'La tabla "%s" no existe!'; @@ -562,6 +583,7 @@ $strSearchType = 'Encontrado:'; $strSecretRequired = 'El archivo de configuracin ahora necesita salvoconducto (una frase secreta) (blowfish_secret).'; $strSelectADb = 'Seleccione una base de datos'; $strSelectAll = 'Seleccione todo'; +$strSelectBinaryLog = 'Seleccione el log binario para ver'; $strSelectFields = 'Seleccionar campos (al menos uno):'; $strSelectNumRows = 'en la consulta'; $strSelectTables = 'Seleccionar tablas'; @@ -617,6 +639,7 @@ $strSubmit = 'Enviar'; $strSuccess = 'Su consulta ha sido ejecutada con xito'; $strSum = 'Nmero de filas'; $strSwedish = 'Sueco'; +$strSwitchToDatabase = 'Seleccione la base de datos copiada'; $strSwitchToTable = 'Cambie (switch) a la tabla copiada'; $strTable = 'Tabla'; @@ -678,6 +701,7 @@ $strUpgrade = 'Usted deber $strUsage = 'Uso'; $strUseBackquotes = 'Usar "backquotes" con tablas y nombres de campo'; $strUseHostTable = 'Use la tabla Anfitrin (Host)'; +$strUseTabKey = 'Use la tecla TAB para saltar de un valor a otro, o CTRL+flechas para moverse a cualquier parte'; $strUseTables = 'Usar tablas'; $strUseTextField = 'Use el campo de texto'; $strUseThisValue = 'Use este valor'; @@ -716,26 +740,8 @@ $strYes = 'S $strZeroRemovesTheLimit = 'Nota: si cambia los parmetros de estas opciones a 0 (cero), remueve el lmite.'; $strZip = '"comprimido con zip"'; -$strAddFields = 'Add %s field(s)'; //to translate -$strInsertBookmarkTitle = 'Please insert bookmark title'; //to translate -$strNoThemeSupport = 'No themes support, please check your configuration and/or your themes in directory %s.'; //to translate -$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate -$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate -$strBinLogName = 'Log name'; //to translate -$strBinLogPosition = 'Position'; //to translate -$strBinLogEventType = 'Event type'; //to translate -$strBinLogServerId = 'Server ID'; //to translate -$strBinLogOriginalPosition = 'Original position'; //to translate -$strBinLogInfo = 'Information'; //to translate -$strBinaryLog = 'Binary log'; //to translate -$strSelectBinaryLog = 'Select binary log to view'; //to translate -$strDBCopy = 'Copy database to'; //to translate -$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate -$strSwitchToDatabase = 'Switch to copied database'; //to translate -$strPasswordHashing = 'Password Hashing'; //to translate -$strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate -$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate -$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/spanish-utf-8.inc.php b/lang/spanish-utf-8.inc.php index 7b947ccf8..cb9e858e4 100644 --- a/lang/spanish-utf-8.inc.php +++ b/lang/spanish-utf-8.inc.php @@ -29,6 +29,7 @@ $strAddConstraints = 'Añada constreñimientos'; $strAddDeleteColumn = 'Añadir/borrar columna de criterio'; $strAddDeleteRow = 'Añadir/borrar fila de criterio'; $strAddDropDatabase = 'Añada DROP DATABASE'; +$strAddFields = 'Añada %s campo(s)'; $strAddHeaderComment = 'Añada su propio comentario en el encabezado (\\n segmenta las oraciones)'; $strAddIfNotExists = 'Añada en CASO DE NO EXISTIR'; $strAddIntoComments = 'Añada en los comentarios'; @@ -56,6 +57,7 @@ $strAnd = 'y luego'; $strAny = 'cualquiera'; $strAnyHost = 'Cualquier servidor'; $strAnyUser = 'Cualquier usuario'; +$strApproximateCount = 'Podría ser aproximado. Léase la FAQ 3.11'; $strArabic = 'Árabe'; $strArmenian = 'Armenio'; $strAscending = 'Ascendente'; @@ -69,8 +71,15 @@ $strBack = 'Volver'; $strBaltic = 'Báltico'; $strBeginCut = 'INICIO DEL CORTE'; $strBeginRaw = 'INICIO DEL VOLCADO'; +$strBinLogEventType = 'Tipo de evento'; +$strBinLogInfo = 'Información'; +$strBinLogName = 'Nombre con el cual se registró'; +$strBinLogOriginalPosition = 'Posición original'; +$strBinLogPosition = 'Posición'; +$strBinLogServerId = 'ID del servidor'; $strBinary = ' Binario '; $strBinaryDoNotEdit = ' Binario - ¡no editar! '; +$strBinaryLog = 'Log binario'; $strBookmarkAllUsers = 'Permitir que todo usuario pueda acceder a este bookmark'; $strBookmarkDeleted = 'El "bookmark" ha sido borrado.'; $strBookmarkLabel = 'Etiqueta'; @@ -122,6 +131,7 @@ $strColumnPrivileges = 'Privilegios específicos para la columna'; $strCommand = 'Comando'; $strComments = 'Comentarios'; $strCommentsForTable = 'COMENTARIOS PARA LA TABLA'; +$strCompatibleHashing = 'Compatible con MySQL 4.0'; $strCompleteInserts = 'Completar los "Inserts"'; $strCompression = 'Compresión'; $strConfigFileError = '¡phpMyAdmin no puede leer el fichero de configuración!
Esto puede suceder si php encuentra un error sintáctico en él o bien php no puede encontrar el fichero.
Intente acceder al fichero de configuración directamente mediante el siguiente enlace y compruebe el(los) mensaje(s) de error que reciba. En muchas ocasiones falta una coma o punto y coma en algún sitio.
Si recibe una página en blanco, todo está correcto.'; @@ -131,6 +141,7 @@ $strConnections = 'Conexiones'; $strConstraintsForDumped = 'Filtros para las tablas descargadas (dump)'; $strConstraintsForTable = 'Filtros para la tabla'; $strCookiesRequired = 'Las "cookies" deben estar habilitadas pasado este punto.'; +$strCopyDatabaseOK = 'La base de datos %s ha sido copiada a %s'; $strCopyTable = 'Copiar la tabla a (base de datos.tabla):'; $strCopyTableOK = 'La tabla %s se copió a %s.'; $strCopyTableSameNames = '¡No es posible copiar la tabla a la misma!'; @@ -150,6 +161,7 @@ $strCzech = 'Checo'; $strCzechSlovak = 'Checo-Eslovaco'; $strDBComment = 'Comentario de la base de datos: '; +$strDBCopy = 'Copie la base de datos a'; $strDBGContext = 'Contexto'; $strDBGContextID = 'ID del contexto'; $strDBGHits = 'Hits'; @@ -222,6 +234,7 @@ $strEndRaw = 'FIN DEL VOLCADO'; $strEnglish = 'Inglés'; $strEnglishPrivileges = ' Nota: Los nombres de los privilegios de MySQL están expresados en inglés '; $strError = 'Error'; +$strEscapeWildcards = 'Los comodines _ y % deben acompañarse de \ para usarlos de manera literal'; $strEstonian = 'Estonio'; $strExcelEdition = 'Edición Excel'; $strExcelOptions = 'Opciones de Excel'; @@ -291,11 +304,16 @@ $strIndex = 'Índice'; $strIndexHasBeenDropped = 'El índice %s ha sido eliminado'; $strIndexName = 'Nombre del índice :'; $strIndexType = 'Tipo de índice :'; +$strIndexWarningMultiple = 'Se creó más de una clave %s para la columna `%s`'; +$strIndexWarningPrimary = 'Las claves PRIMARIA e INDICE no deben seleccionarse juntas para la columna `%s`'; +$strIndexWarningTable = 'Problemas con los índices de la tabla `%s`'; +$strIndexWarningUnique = 'Las claves UNICA e INDICE no deben seleccionarse juntas para la columna `%s`'; $strIndexes = 'Índices'; $strInnodbStat = 'Estado del InnoDB'; $strInsecureMySQL = 'Su archivo de configuración contiene parámetros (root sin contraseña) que corresponden a la cuenta privilegiada predeterminada de MySQL. Su servidor de MySQL está usando estos valores, que constituyen una vulnerabilidad. Se le recomienda corregir esta brecha de seguridad.'; $strInsert = 'Insertar'; $strInsertAsNewRow = 'Insertar como una nueva fila'; +$strInsertBookmarkTitle = 'Por favor, inserte un título para el bookmark'; $strInsertNewRow = 'Insertar nueva fila'; $strInsertTextfiles = 'Insertar archivo de texto en la tabla'; $strInsertedRowId = 'Se insertó la id de la fila:'; @@ -377,6 +395,7 @@ $strName = 'Nombre'; $strNeedPrimaryKey = 'Usted debe definir una llave primaria para esta tabla.'; $strNext = 'Próxima'; $strNo = 'No'; +$strNoActivity = 'No ha habido actividad desde hace %s o más segundos, por favor reingrese al sitio'; $strNoDatabases = 'No hay bases de datos'; $strNoDatabasesSelected = 'No se seleccionaron bases de datos.'; $strNoDescription = 'Sin descripción'; @@ -396,6 +415,7 @@ $strNoRights = '¡Usted no tiene suficientes privilegios para estar aquí ahora! $strNoRowsSelected = 'No se seleccionaron filas'; $strNoSpace = 'No hay suficiente espacio para guardar el archivo %s.'; $strNoTablesFound = 'No se han encontrado tablas en la base de datos.'; +$strNoThemeSupport = 'No existe soporte para Temas, por favor, revise su configuración y/o sus temas en el directorio %s.'; $strNoUsersFound = 'Usuario(s) no encontrado(s).'; $strNoValidateSQL = 'Saltarse la validación del SQL'; $strNone = 'Ninguna'; @@ -427,6 +447,7 @@ $strPartialText = 'Textos parciales'; $strPassword = 'Contraseña'; $strPasswordChanged = 'La contraseña para %s fue cambiada exitosamente.'; $strPasswordEmpty = '¡La contraseña está vacía!'; +$strPasswordHashing = 'Hashing de la contraseña'; $strPasswordNotSame = '¡Las contraseñas no coinciden!'; $strPdfDbSchema = 'Esquema de la base de datos "%s" - Página %s'; $strPdfInvalidTblName = '¡La tabla "%s" no existe!'; @@ -563,6 +584,7 @@ $strSearchType = 'Encontrado:'; $strSecretRequired = 'El archivo de configuración ahora necesita salvoconducto (una frase secreta) (blowfish_secret).'; $strSelectADb = 'Seleccione una base de datos'; $strSelectAll = 'Seleccione todo'; +$strSelectBinaryLog = 'Seleccione el log binario para ver'; $strSelectFields = 'Seleccionar campos (al menos uno):'; $strSelectNumRows = 'en la consulta'; $strSelectTables = 'Seleccionar tablas'; @@ -618,6 +640,7 @@ $strSubmit = 'Enviar'; $strSuccess = 'Su consulta ha sido ejecutada con éxito'; $strSum = 'Número de filas'; $strSwedish = 'Sueco'; +$strSwitchToDatabase = 'Seleccione la base de datos copiada'; $strSwitchToTable = 'Cambie (switch) a la tabla copiada'; $strTable = 'Tabla'; @@ -679,6 +702,7 @@ $strUpgrade = 'Usted debería actualizar su %s a la versión %s o más reciente. $strUsage = 'Uso'; $strUseBackquotes = 'Usar "backquotes" con tablas y nombres de campo'; $strUseHostTable = 'Use la tabla Anfitrión (Host)'; +$strUseTabKey = 'Use la tecla TAB para saltar de un valor a otro, o CTRL+flechas para moverse a cualquier parte'; $strUseTables = 'Usar tablas'; $strUseTextField = 'Use el campo de texto'; $strUseThisValue = 'Use este valor'; @@ -717,26 +741,8 @@ $strYes = 'Sí'; $strZeroRemovesTheLimit = 'Nota: si cambia los parámetros de estas opciones a 0 (cero), remueve el límite.'; $strZip = '"comprimido con zip"'; -$strAddFields = 'Add %s field(s)'; //to translate -$strInsertBookmarkTitle = 'Please insert bookmark title'; //to translate -$strNoThemeSupport = 'No themes support, please check your configuration and/or your themes in directory %s.'; //to translate -$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate -$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate -$strBinLogName = 'Log name'; //to translate -$strBinLogPosition = 'Position'; //to translate -$strBinLogEventType = 'Event type'; //to translate -$strBinLogServerId = 'Server ID'; //to translate -$strBinLogOriginalPosition = 'Original position'; //to translate -$strBinLogInfo = 'Information'; //to translate -$strBinaryLog = 'Binary log'; //to translate -$strSelectBinaryLog = 'Select binary log to view'; //to translate -$strDBCopy = 'Copy database to'; //to translate -$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate -$strSwitchToDatabase = 'Switch to copied database'; //to translate -$strPasswordHashing = 'Password Hashing'; //to translate -$strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate -$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate -$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/swedish-iso-8859-1.inc.php b/lang/swedish-iso-8859-1.inc.php index 1b217808a..b964e5bfe 100644 --- a/lang/swedish-iso-8859-1.inc.php +++ b/lang/swedish-iso-8859-1.inc.php @@ -738,4 +738,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/swedish-utf-8.inc.php b/lang/swedish-utf-8.inc.php index a186f4c05..b1d523c3e 100644 --- a/lang/swedish-utf-8.inc.php +++ b/lang/swedish-utf-8.inc.php @@ -739,4 +739,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/thai-tis-620.inc.php b/lang/thai-tis-620.inc.php index 181c5ea49..76e914627 100644 --- a/lang/thai-tis-620.inc.php +++ b/lang/thai-tis-620.inc.php @@ -763,4 +763,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/thai-utf-8.inc.php b/lang/thai-utf-8.inc.php index e3ff9b8c1..448320fdd 100644 --- a/lang/thai-utf-8.inc.php +++ b/lang/thai-utf-8.inc.php @@ -764,4 +764,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/turkish-iso-8859-9.inc.php b/lang/turkish-iso-8859-9.inc.php index 831829975..f0814ee97 100644 --- a/lang/turkish-iso-8859-9.inc.php +++ b/lang/turkish-iso-8859-9.inc.php @@ -1,17 +1,17 @@ $cfg[\'BZipDump\'] ynergesiniFALSE
\'a deitirmeniz gerekmektedir. Bz2 sktrma zelliklerini kullanmak istiyorsanz ,bir sonraki php srmne gncelleme yapmanz gerekmektedir.php hata raporu %s\' e baknz '; -$strBzip = '"bzipped"'; +$strBzip = '"bzip"'; $strCSVOptions = 'CSV seenekleri'; $strCalendar = 'Takvim'; @@ -122,7 +130,7 @@ $strChangePassword = ' $strCharset = 'Karakter seti'; $strCharsetOfFile = 'Dosyann karakter seti:'; $strCharsets = 'Karakter setleri'; -$strCharsetsAndCollations = 'Karakter setleri ve karlatrmalar(collation)'; +$strCharsetsAndCollations = 'Karakter setleri ve karlatrmalar'; $strCheckAll = 'Tmn se'; $strCheckOverhead = 'Batan aaya kontrol et'; $strCheckPrivs = 'mtiyazlar kontrol et'; @@ -130,12 +138,13 @@ $strCheckPrivsLong = '"%s" veritaban $strCheckTable = 'Tabloyu kontrol et'; $strChoosePage = 'Ltfen dzenlemek istediiniz sayfay sein'; $strColComFeat = 'Stun yorumlar gsteriliyor'; -$strCollation = 'Karlatrma(Collation)'; +$strCollation = 'Karlatrma'; $strColumnNames = 'Stun adlar'; $strColumnPrivileges = 'Stuna zg yetkiler'; $strCommand = 'Komut'; $strComments = 'Stun yorum,iliki ve MIME tiplerini ier.'; $strCommentsForTable = 'TABLO YORUMLARI'; +$strCompatibleHashing = 'MySQL 4.0 uyumlu'; $strCompleteInserts = 'Her INSERT komutunda stun adlarn ekle'; $strCompression = 'Sktrma'; $strConfigFileError ='phpMyAdmin konfigurasyon dosyanz okuyamad....
Bu php yorumlama hatas bulduu zaman veya dosyay bulamad zaman meydana gelebilir..
Ltfen aadaki linki kullanarak dosyay direkt olarak arn ve aldnz php hata mesajlarn okuyunuz.ou durumda herhangi bir yerde trnak veya noktal virgl eksiktir
Bo bir sayfayla karlarsanz ,herey yolunda demektir.'; @@ -145,6 +154,7 @@ $strConnections = 'Ba $strConstraintsForDumped = 'Dkm yaplm tablolar iin kstlamalar'; $strConstraintsForTable = 'Tablo iin kstlamalar'; $strCookiesRequired = 'Cookieler ak olmaldr.'; +$strCopyDatabaseOK = '%s veritaban %s\` e kopyaland.'; $strCopyTable = 'Tabloyu (veritaban.tablo) kopyala :'; $strCopyTableOK = '%s tablosu %s zerine kopyaland.'; $strCopyTableSameNames = 'Tabloyu aynsna kopyalayamyor!'; @@ -164,6 +174,7 @@ $strCzech = ' $strCzechSlovak = 'eke-Slovaka'; $strDBComment = 'Veritaban yorumu:'; +$strDBCopy = 'Veritabann uraya kopyala:'; $strDBGContext = 'erik'; $strDBGContextID = 'erik ID'; $strDBGHits = 'Giriler(hit)'; @@ -236,6 +247,7 @@ $strEndRaw = 'END RAW'; $strEnglish = 'ngilizce'; $strEnglishPrivileges = ' Not: MySQL yetki adlar ngilizce olarak belirtilmitir '; $strError = 'Hata'; +$strEscapeWildcards = '_ ve % jokerleri harfi harfine kullanlmak isteniyorsa \ ile beraber kullanlmaldr.'; $strEstonian = 'Estonyaca'; $strExcelEdition = 'Excel tipi'; $strExcelOptions = 'Excel ayarlar'; @@ -248,7 +260,7 @@ $strExtra = 'Ekstra'; $strFailedAttempts = 'Baarsz denemeler'; $strField = 'Alan'; $strFieldHasBeenDropped = '%s alan kaldrlmtr'; -$strFields = 'Alan Says'; +$strFields = 'Alanlar'; $strFieldsEmpty = ' Alan says bo! '; $strFieldsEnclosedBy = 'Kapatma karakteri'; $strFieldsEscapedBy = 'Ka karakteri'; @@ -277,7 +289,7 @@ $strGlobalValue = 'Global de $strGo = 'Git'; $strGrantOption = 'Hak'; $strGreek = 'Yunanca'; -$strGzip = '"gziplenmi"'; +$strGzip = '"gzip"'; $strHasBeenAltered = 'dzenlendi.'; $strHasBeenCreated = 'yaratld.'; @@ -305,6 +317,10 @@ $strIndex = ' $strIndexHasBeenDropped = '%s indeks\'i silindi.'; $strIndexName = 'ndeks ismi :'; $strIndexType = 'ndeks tipi :'; +$strIndexWarningMultiple = '`%s` stunu iin birden fazla %s anahtar yaratld. '; +$strIndexWarningPrimary = 'PRIMARY ve INDEX anahtarlarnn ikisine birden `%s` stunu iin deer verilemez.'; +$strIndexWarningTable = '`%s` tablosunun indexleri ile ilgili sorunlar'; +$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`'; $strIndexes = 'ndeksler'; $strInnodbStat = 'InnoDB durumu'; $strInsecureMySQL = 'Konfigurasyon dosyanz (ifresiz root) varsaylan MySQL yetki dosyasyla aynen uyuan ayarlar ieriyor.MySQL sunucunuz bu varsaylan ayarlarla alyor,dardan girie ak,ve bu gvenlik an hemen dzeltmeniz gerekmektedir.'; @@ -380,7 +396,7 @@ $strMoveTableSameNames = 'Tabloyu ayn $strMultilingual = 'oklu dil'; $strMustSelectFile = 'Eklemek istediiniz dosyay semeniz gerekir.'; $strMySQLCharset = 'MySQL karakter seti'; -$strMySQLConnectionCollation = 'MySQL balant karlatrmas(collation)'; +$strMySQLConnectionCollation = 'MySQL balant karlatrmas'; $strMySQLReloaded = 'MySQL yeniden yklendi.'; $strMySQLSaid = 'MySQL kts: '; $strMySQLServerProcess = ' MySQL %pma_s1% %pma_s2% zerinde %pma_s3% olarak alyor'; @@ -392,6 +408,7 @@ $strName = ' $strNeedPrimaryKey = 'Bu tablo iin birincil anahtar tanmlamanz gerekir.'; $strNext = 'Sonraki'; $strNo = 'Hayr'; +$strNoActivity = '%s veya daha fazla saniye boyunca hibir ilem yaplmad, ltfen yeniden giri yapnz'; $strNoDatabases = 'Veritaban yok'; $strNoDatabasesSelected = 'Veritaban seilmedi.'; $strNoDescription = 'Tanmlama yok'; @@ -443,6 +460,7 @@ $strPartialText = 'K $strPassword = 'ifre'; $strPasswordChanged = '%s iin ifre baaryla deitirildi.'; $strPasswordEmpty = 'ifre alan doldurulmad!'; +$strPasswordHashing = 'ifre Hash yntemi'; $strPasswordNotSame = 'Girilen ifreler ayn deil!'; $strPdfDbSchema = ' "%s" veritabannn emas - Sayfa %s'; $strPdfInvalidTblName = ' "%s" tablosu bulunamyor !'; @@ -579,6 +597,7 @@ $strSearchType = 'BUL :'; $strSecretRequired = 'Ayar dosyas iin gizli bir ifre gerekiyor (blowfish_secret).'; $strSelectADb = ' Ltfen bir veritaban seiniz'; $strSelectAll = 'Tmn se'; +$strSelectBinaryLog = 'Grntlemek istediiniz binari kaydn seiniz'; $strSelectFields = 'Alan se (en az bir)'; $strSelectNumRows = 'sorgu ierisinde'; $strSelectTables = 'Tablolar se'; @@ -634,6 +653,7 @@ $strSubmit = 'Onayla'; $strSuccess = 'SQL sorgunuz baaryla altrlmtr'; $strSum = 'toplam'; $strSwedish = 'svece'; +$strSwitchToDatabase = 'Kopyalanm veritabann kullan.'; $strSwitchToTable = 'Kopyalanm tabloya ge'; $strTable = 'Tablo:'; @@ -695,6 +715,7 @@ $strUpgrade = '%s %s veya daha sonraki bir s $strUsage = 'Kullanm'; $strUseBackquotes = 'Tablo ve alan isimleri iin ters trnak " ` " iaretini kullan'; $strUseHostTable = 'Host tablosunu kullan'; +$strUseTabKey = 'Deerden deere gemek iin TAB tuunu istediiniz herhangi bir yere gitmek iin CTRL+OK TULARI\`n kullann.'; $strUseTables = 'Tablolar kullan'; $strUseTextField = 'Metin alann kullan'; $strUseThisValue = 'Bu deeri kullan'; @@ -733,23 +754,8 @@ $strYes = 'Evet'; $strZeroRemovesTheLimit = 'Not: Bu seeneklerin 0\'a ayarlanmas snr kaldrr..'; $strZip = '"ziplenmi"'; -$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate -$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate -$strBinLogName = 'Log name'; //to translate -$strBinLogPosition = 'Position'; //to translate -$strBinLogEventType = 'Event type'; //to translate -$strBinLogServerId = 'Server ID'; //to translate -$strBinLogOriginalPosition = 'Original position'; //to translate -$strBinLogInfo = 'Information'; //to translate -$strBinaryLog = 'Binary log'; //to translate -$strSelectBinaryLog = 'Select binary log to view'; //to translate -$strDBCopy = 'Copy database to'; //to translate -$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate -$strSwitchToDatabase = 'Switch to copied database'; //to translate -$strPasswordHashing = 'Password Hashing'; //to translate -$strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate -$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate -$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate -$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/turkish-utf-8.inc.php b/lang/turkish-utf-8.inc.php index 72ae8a925..3c29b7b38 100644 --- a/lang/turkish-utf-8.inc.php +++ b/lang/turkish-utf-8.inc.php @@ -753,4 +753,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/ukrainian-utf-8.inc.php b/lang/ukrainian-utf-8.inc.php index c31e64c1d..5501bb98c 100644 --- a/lang/ukrainian-utf-8.inc.php +++ b/lang/ukrainian-utf-8.inc.php @@ -744,4 +744,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/lang/ukrainian-windows-1251.inc.php b/lang/ukrainian-windows-1251.inc.php index 528827f22..b3f10b4d2 100644 --- a/lang/ukrainian-windows-1251.inc.php +++ b/lang/ukrainian-windows-1251.inc.php @@ -743,4 +743,10 @@ $strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for col $strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate $strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate +$strNoActivity = 'No activity since %s seconds or more, please login again'; //to translate +$strApproximateCount = 'May be approximate. See FAQ 3.11'; //to translate +$strSQLExportCompatibility = 'SQL export compatibility'; //to translate +$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate +$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate +$strAfterInsertNext = 'Edit next row'; //to translate ?> diff --git a/left.php b/left.php index 05f38fe18..2472c4252 100644 --- a/left.php +++ b/left.php @@ -61,34 +61,15 @@ global $list_item, $table_item; } } -function PMA_reduceNest($_table) { - +/* This will take a 1-dimensional array, and shift as many elemnts off + * the end, until the allowed maximum level is reached */ +function PMA_reduceNest(&$_table) { if ($GLOBALS['cfg']['LeftFrameTableLevel'] > 0) { - $max = $GLOBALS['cfg']['LeftFrameTableLevel']; - $temp_table = $_table; - $new_table = array(); - $last_index = 0; - for ($ti = 0; $ti <= $max; $ti++) { - if (isset($temp_table[$ti])) { - $new_table[$ti] = $temp_table[$ti]; - unset($temp_table[$ti]); - $last_index = $ti; - } + $elements = count($_table); + for ($ti = $elements; $ti > $GLOBALS['cfg']['LeftFrameTableLevel']; $ti--) { + unset($_table[$ti]); } - - $_table = $new_table; } - - return $_table; -} - -function PMA_indent($spaces) { - $string = ''; - for ($i = 0; $i <= $spaces; $i++) { - $string .= ' '; - } - - return $string; } function PMA_nestedSetHeaderParent($baseid, $key, $keyhistory, $indent, $indent_level, $val, $childout = true) { @@ -112,15 +93,15 @@ function PMA_nestedSetHeaderParent($baseid, $key, $keyhistory, $indent, $indent_ } echo "\n"; - echo PMA_indent($indent * 5) . '' . "\n"; - echo PMA_indent($indent * 6) . '' . "\n"; echo "\n"; if ($childout) { - echo PMA_indent($indent * 5) . '' . "\n"; + echo str_repeat(' ', $indent * 5) . ''; + echo str_repeat(' ', $indent * 5) . '
' . "\n"; + echo str_repeat(' ', $indent * 6) . '' . "\n"; + echo str_repeat(' ', $indent * 6) . '' . htmlspecialchars($name) . ' (' . $counter . ')' . "\n"; - echo PMA_indent($indent * 5) . ''; echo '
' . "\n"; - echo PMA_indent($indent * 6) . '' . htmlspecialchars($name) . ' (' . $counter . ')
' . "\n"; + echo str_repeat(' ', $indent * 5) . '' . "\n"; } } } if ($firstGroup && $firstGroupClose) { - echo PMA_indent($indent * 4) . '' . "\n"; + echo str_repeat(' ', $indent * 4) . '' . "\n"; } elseif ($firstGroup) { - echo PMA_indent($indent * 4) . '' . "\n"; + echo str_repeat(' ', $indent * 4) . '' . "\n"; } } @@ -182,11 +163,11 @@ function PMA_nestedSet($baseid, $tablestack, $key = '__protected__', $keyhistory $loops = 0; foreach ($tablestack['pma_name'] AS $tkey => $tval) { - echo PMA_indent($indent * 5) . '' . "\n"; } } @@ -143,15 +124,15 @@ function PMA_nestedSetHeader($baseid, $tablestack, $keyhistory, $indent, $indent } if ($headerOut) { - echo PMA_indent($indent * 5) . '' . "\n"; + echo str_repeat(' ', $indent * 5) . ''; + echo str_repeat(' ', $indent * 5) . '
'; $items = explode("\n", $tablestack['pma_list_item'][$tkey]); foreach ($items AS $ikey => $ival) { echo "\n"; - echo PMA_indent(($indent * 5)) . $ival; + echo str_repeat(' ', ($indent * 5)) . $ival; } echo "\n"; @@ -194,7 +175,7 @@ function PMA_nestedSet($baseid, $tablestack, $key = '__protected__', $keyhistory } if ($divClose) { - echo PMA_indent($indent * 5) . ''; + echo str_repeat(' ', $indent * 5) . ''; } } elseif (is_array($tablestack)) { @@ -376,8 +357,8 @@ if (!$cfg['QueryFrame']) { .' onmouseover="this.style.backgroundColor=\'#ffffff\';" onmouseout="this.style.backgroundColor=\'\';" align="middle" />' : '' . $strHome . '') . ''; - // Logout for advanced authentication - if ($cfg['Server']['auth_type'] != 'config') { + // if we have chosen server show logout for advanced authentication + if ($server != 0 && $cfg['Server']['auth_type'] != 'config') { echo $str_spacer_links; echo '' . ($cfg['MainPageIconic'] @@ -547,6 +528,7 @@ if ($num_dbs > 1) { natsort($table_array); } + $book_sql_cache = PMA_queryDBBookmarks($db, $cfg['Bookmark'], $table_array); foreach ($table_array as $table => $table_sortkey) { $alias = (!empty($tooltip_name) && isset($tooltip_name[$table])) ? htmlspecialchars($tooltip_name[$table]) @@ -561,7 +543,7 @@ if ($num_dbs > 1) { ? $alias : htmlspecialchars($table)); - $book_sql_query = PMA_queryBookmarks($db, $cfg['Bookmark'], '\'' . PMA_sqlAddslashes($table) . '\'', 'label'); + $book_sql_query = (isset($book_sql_cache[$table]) ? $book_sql_cache[$table] : FALSE); $list_item = ''; $list_item .= '
'; @@ -578,7 +560,7 @@ if ($num_dbs > 1) { $_table[$key] = '__protected__'; } } - $_table = PMA_reduceNest($_table); + PMA_reduceNest($_table); if (count($_table) == 1) { array_unshift($_table, ''); @@ -611,6 +593,7 @@ if ($num_dbs > 1) { $table_title = array(); $table_array = array(); // Gets the list of tables from the current database + $book_sql_cache = PMA_queryDBBookmarks($db, $cfg['Bookmark'], $table_array); while (list($table) = PMA_DBI_fetch_row($tables)) { $table_array[$table] = ''; $url_title = (!empty($tooltip) && isset($tooltip[$table])) @@ -620,7 +603,7 @@ if ($num_dbs > 1) { ? htmlspecialchars($tooltip_name[$table]) : ''; - $book_sql_query = PMA_queryBookmarks($db, $cfg['Bookmark'], '\'' . PMA_sqlAddslashes($table) . '\'', 'label'); + $book_sql_query = (isset($book_sql_cache[$table]) ? $book_sql_cache[$table] : FALSE); // natural order or not, use an array for the table list @@ -804,6 +787,7 @@ else if ($num_dbs == 1) { natcasesort($table_array); } + $book_sql_cache = PMA_queryDBBookmarks($db, $cfg['Bookmark'], $table_array); foreach ($table_array as $table => $table_sortkey) { $alias = (!empty($tooltip_name) && isset($tooltip_name[$table])) ? htmlspecialchars($tooltip_name[$table]) @@ -818,7 +802,7 @@ else if ($num_dbs == 1) { ? $alias : htmlspecialchars($table)); - $book_sql_query = PMA_queryBookmarks($db, $cfg['Bookmark'], '\'' . PMA_sqlAddslashes($table) . '\'', 'label'); + $book_sql_query = (isset($book_sql_cache[$table]) ? $book_sql_cache[$table] : FALSE); if ($cfg['LeftFrameLight']) { echo "\n"; @@ -844,7 +828,7 @@ else if ($num_dbs == 1) { $_table[$key] = '__protected__'; } } - $_table = PMA_reduceNest($_table); + PMA_reduceNest($_table); if (count($_table) == 1) { array_unshift($_table, ''); diff --git a/libraries/auth/cookie.auth.lib.php b/libraries/auth/cookie.auth.lib.php index 1f1530308..8aac9fd7c 100644 --- a/libraries/auth/cookie.auth.lib.php +++ b/libraries/auth/cookie.auth.lib.php @@ -2,11 +2,10 @@ /* $Id$ */ // vim: expandtab sw=4 ts=4 sts=4: - // +--------------------------------------------------------------------------+ // | Set of functions used to run cookie based authentication. | // | Thanks to Piotr Roszatycki
and | -// | Dan Wilson who builds this patch for the Debian package. | +// | Dan Wilson who built this patch for the Debian package. | // +--------------------------------------------------------------------------+ @@ -14,8 +13,6 @@ if (!isset($coming_from_common)) { exit; } -require_once('./libraries/blowfish.php'); - // Gets the default font sizes PMA_setFontSizes(); // Defines the cookie path and whether the server is using https or not @@ -24,82 +21,13 @@ $cookie_path = substr($pma_uri_parts['path'], 0, strrpos($pma_uri_parts['path' $is_https = (isset($pma_uri_parts['scheme']) && $pma_uri_parts['scheme'] == 'https') ? 1 : 0; $current_time = time(); -/** - * String padding - * - * @param string input string - * @param integer length of the result - * @param string the filling string - * @param integer padding mode - * - * @return string the padded string - * - * @access public - */ -function full_str_pad($input, $pad_length, $pad_string = '', $pad_type = 0) { - $str = ''; - $length = $pad_length - strlen($input); - if ($length > 0) { // str_repeat doesn't like negatives - if ($pad_type == STR_PAD_RIGHT) { // STR_PAD_RIGHT == 1 - $str = $input.str_repeat($pad_string, $length); - } elseif ($pad_type == STR_PAD_BOTH) { // STR_PAD_BOTH == 2 - $str = str_repeat($pad_string, floor($length/2)); - $str .= $input; - $str .= str_repeat($pad_string, ceil($length/2)); - } else { // defaults to STR_PAD_LEFT == 0 - $str = str_repeat($pad_string, $length).$input; - } - } else { // if $length is negative or zero we don't need to do anything - $str = $input; - } - return $str; -} - -/** - * Encryption using blowfish algorithm - * - * @param string original data - * @param string the secret - * - * @return string the encrypted result - * - * @access public - * - * @author lem9 - */ -function PMA_blowfish_encrypt($data, $secret) { - $pma_cipher = new Horde_Cipher_blowfish; - $encrypt = ''; - for ($i=0; $i encryptBlock($block, $secret); - } - return base64_encode($encrypt); -} - -/** - * Decryption using blowfish algorithm - * - * @param string encrypted data - * @param string the secret - * - * @return string original data - * - * @access public - * - * @author lem9 - */ -function PMA_blowfish_decrypt($encdata, $secret) { - $pma_cipher = new Horde_Cipher_blowfish; - $decrypt = ''; - $data = base64_decode($encdata); - for ($i=0; $i decryptBlock(substr($data, $i, 8), $secret); - } - return trim($decrypt); +// Uses faster mcrypt library if available +// (Note: mcrypt.lib.php needs $cookie_path and $is_https) +// TODO: try to load mcrypt? +if (function_exists('mcrypt_encrypt')) { + require_once('./libraries/mcrypt.lib.php'); +} else { + require_once('./libraries/blowfish.php'); } /** @@ -150,15 +78,12 @@ function PMA_auth() // username // do not try to use pma_cookie_username as it was encoded differently // in previous versions and would produce an undefined offset in blowfish - if (!empty($_COOKIE) && isset($_COOKIE['pma_cookie_username-' . $server])) { $default_user = $_COOKIE['pma_cookie_username-' . $server]; } - $decrypted_user = isset($default_user) ? PMA_blowfish_decrypt($default_user, $GLOBALS['cfg']['blowfish_secret']) : ''; $pos = strrpos($decrypted_user, ':'); $default_user = substr($decrypted_user, 0, $pos); - // server name if (!empty($GLOBALS['pma_cookie_servername'])) { $default_server = $GLOBALS['pma_cookie_servername']; @@ -526,12 +451,18 @@ function PMA_auth_check() $decrypted_user = PMA_blowfish_decrypt($PHP_AUTH_USER, $GLOBALS['cfg']['blowfish_secret']); $pos = strrpos($decrypted_user, ':'); $PHP_AUTH_USER = substr($decrypted_user, 0, $pos); - $decrypted_time = (int)substr($decrypted_user, $pos + 1); - /* User inactive too long */ - /* FIXME: maybe we could say it to user... */ - if ($decrypted_time < $GLOBALS['current_time'] - $GLOBALS['cfg']['LoginCookieValidity']) { + // User inactive too long + if ($decrypted_time > 0 && $decrypted_time < $GLOBALS['current_time'] - $GLOBALS['cfg']['LoginCookieValidity']) { + // Display an error message only if the inactivity has lasted + // less than 4 times the timeout value. This is to avoid + // alerting users with a error after "much" time has passed, + // for example next morning. + if ($decrypted_time > $GLOBALS['current_time'] - ($GLOBALS['cfg']['LoginCookieValidity'] * 4)) { + $GLOBALS['no_activity'] = TRUE; + PMA_auth_fails(); + } return FALSE; } @@ -681,6 +612,8 @@ global $conn_error, $server; if (isset($GLOBALS['allowDeny_forbidden']) && $GLOBALS['allowDeny_forbidden']) { $conn_error = $GLOBALS['strAccessDenied']; + } else if (isset($GLOBALS['no_activity']) && $GLOBALS['no_activity']) { + $conn_error = sprintf($GLOBALS['strNoActivity'],$GLOBALS['cfg']['LoginCookieValidity']); } else if (PMA_DBI_getError()) { $conn_error = PMA_DBI_getError(); } else if (isset($php_errormsg)) { diff --git a/libraries/blowfish.php b/libraries/blowfish.php index 611ad5ffb..4e7cfff08 100644 --- a/libraries/blowfish.php +++ b/libraries/blowfish.php @@ -1,5 +1,8 @@ setKey($key); } - list($L, $R) = array_values(unpack('N*', $block)); +// change for phpMyAdmin + $L = null; + $R = null; + + $retarray = array_values(unpack('N*', $block)); + if(isset($retarray[0])) { + $L = $retarray[0]; + } + if(isset($retarray[1])) { + $R = $retarray[1]; + } +// end change for phpMyAdmin $L ^= $this->p[17]; $R ^= ((($this->s1[($L >> 24) & 0xFF] + $this->s2[($L >> 16) & 0x0ff]) ^ $this->s3[($L >> 8) & 0x0ff]) + $this->s4[$L & 0x0ff]) ^ $this->p[16]; @@ -468,4 +482,85 @@ class Horde_Cipher_blowfish { } } + +// higher-level functions: + +/** + * String padding + * + * @param string input string + * @param integer length of the result + * @param string the filling string + * @param integer padding mode + * + * @return string the padded string + * + * @access public + */ +function full_str_pad($input, $pad_length, $pad_string = '', $pad_type = 0) { + $str = ''; + $length = $pad_length - strlen($input); + if ($length > 0) { // str_repeat doesn't like negatives + if ($pad_type == STR_PAD_RIGHT) { // STR_PAD_RIGHT == 1 + $str = $input.str_repeat($pad_string, $length); + } elseif ($pad_type == STR_PAD_BOTH) { // STR_PAD_BOTH == 2 + $str = str_repeat($pad_string, floor($length/2)); + $str .= $input; + $str .= str_repeat($pad_string, ceil($length/2)); + } else { // defaults to STR_PAD_LEFT == 0 + $str = str_repeat($pad_string, $length).$input; + } + } else { // if $length is negative or zero we don't need to do anything + $str = $input; + } + return $str; +} + +/** + * Encryption using blowfish algorithm + * + * @param string original data + * @param string the secret + * + * @return string the encrypted result + * + * @access public + * + * @author lem9 + */ +function PMA_blowfish_encrypt($data, $secret) { + $pma_cipher = new Horde_Cipher_blowfish; + $encrypt = ''; + for ($i=0; $i encryptBlock($block, $secret); + } + return base64_encode($encrypt); +} + +/** + * Decryption using blowfish algorithm + * + * @param string encrypted data + * @param string the secret + * + * @return string original data + * + * @access public + * + * @author lem9 + */ +function PMA_blowfish_decrypt($encdata, $secret) { + $pma_cipher = new Horde_Cipher_blowfish; + $decrypt = ''; + $data = base64_decode($encdata); + for ($i=0; $i decryptBlock(substr($data, $i, 8), $secret); + } + return trim($decrypt); +} + ?> diff --git a/libraries/bookmark.lib.php b/libraries/bookmark.lib.php index 4dbf83c42..c3d4e67a5 100644 --- a/libraries/bookmark.lib.php +++ b/libraries/bookmark.lib.php @@ -109,6 +109,46 @@ function PMA_queryBookmarks($db, $cfgBookmark, $id, $id_field = 'id', $action_bo } // end of the 'PMA_queryBookmarks()' function +/** + * Gets bookmarked DefaultQuery for a Table + * + * @global resource the controluser db connection handle + * + * @param string the current database name + * @param array the bookmark parameters for the current user + * @param array the list of all labels to look for + * + * @return array bookmark SQL statements + * + * @access public + */ +function &PMA_queryDBBookmarks($db, $cfgBookmark, &$table_array) +{ + global $dbh; + + $boommarks = array(); + + if (empty($cfgBookmark['db']) || empty($cfgBookmark['table'])) { + return $bookmarks; + } + + $search_for = array(); + foreach($table_array AS $table => $table_sortkey) { + $search_for[] = "'" . PMA_sqlAddslashes($table) . "'"; + } + + $query = 'SELECT label, query FROM ' . PMA_backquote($cfgBookmark['db']) . '.' . PMA_backquote($cfgBookmark['table']) + . ' WHERE dbase = \'' . PMA_sqlAddslashes($db) . '\'' + . (count($search_for) > 0 ? ' AND label IN (' . implode(', ', $search_for) . ')' : ''); + $result = PMA_DBI_try_query($query, $dbh); + if (!$result || PMA_DBI_num_rows($result) < 1) return $bookmarks; + while ($row = PMA_DBI_fetch_assoc($result)) { + $bookmarks[$row['label']] = $row['query']; + } + + return $bookmarks; +} // end of the 'PMA_queryBookmarks()' function + /** * Adds a bookmark * diff --git a/libraries/common.lib.php b/libraries/common.lib.php index 6ef9954f5..120a8da5d 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -142,7 +142,7 @@ if (isset($cfg['FileRevision'])) { } else { $cfg['FileRevision'] = array(1, 1); } -if ($cfg['FileRevision'][0] < 2 || ($cfg['FileRevision'][0] == 2 && $cfg['FileRevision'][1] < 44)) { +if ($cfg['FileRevision'][0] < 2 || ($cfg['FileRevision'][0] == 2 && $cfg['FileRevision'][1] < 48)) { require_once('./libraries/config_import.lib.php'); } @@ -299,7 +299,7 @@ if (strtolower($cfg['OBGzip']) == 'auto') { * If not, it will use default images */ // Theme Manager -if (!isset($_COOKIE['pma_theme']) || empty($_COOKIE['pma_theme'])){ +if (!$cfg['ThemeManager'] || !isset($_COOKIE['pma_theme']) || empty($_COOKIE['pma_theme'])){ $GLOBALS['theme'] = $cfg['ThemeDefault']; $ThemeDefaultOk = FALSE; if ($cfg['ThemePath']!='' && $cfg['ThemePath'] != FALSE) { @@ -982,64 +982,107 @@ if ($is_minimum_common == FALSE) { */ $display_pmaAbsoluteUri_warning = 0; - // Olivier: Setup a default value to let the people and lazy syadmins - // work anyway, but display a big warning on the main.php - // page. + // Setup a default value to let the people and lazy syadmins work anyway, + // but display a big warning on the main.php page. if (empty($cfg['PmaAbsoluteUri'])) { - if (!empty($_SERVER)) { - $SERVER_ARRAY = '_SERVER'; - } else { - $SERVER_ARRAY = 'GLOBALS'; - } // end if - if (isset(${$SERVER_ARRAY}['HTTP_HOST'])) { - $HTTP_HOST = ${$SERVER_ARRAY}['HTTP_HOST']; - } - if (isset(${$SERVER_ARRAY}['HTTPS'])) { - $HTTPS = ${$SERVER_ARRAY}['HTTPS']; - } - if (isset(${$SERVER_ARRAY}['SERVER_PORT'])) { - $SERVER_PORT = ${$SERVER_ARRAY}['SERVER_PORT']; - } - if (isset(${$SERVER_ARRAY}['REQUEST_URI'])) { - $REQUEST_URI = ${$SERVER_ARRAY}['REQUEST_URI']; - } - if (isset(${$SERVER_ARRAY}['PATH_INFO'])) { - $PATH_INFO = ${$SERVER_ARRAY}['PATH_INFO']; - } - if (isset(${$SERVER_ARRAY}['HTTP_SCHEME'])) { - $HTTP_SCHEME = ${$SERVER_ARRAY}['HTTP_SCHEME']; + + $url = array(); + + // At first we try to parse REQUEST_URI, it might contain full URI + if (!empty($_SERVER['REQUEST_URI'])) { + $url = parse_url($_SERVER['REQUEST_URI']); } - // in some cases $REQUEST_URI contains full URI including protocol and host, so just use it: - if (isset($REQUEST_URI) && preg_match('@https?://@', $REQUEST_URI)) { - $cfg['PmaAbsoluteUri'] = substr($REQUEST_URI, 0, strrpos($REQUEST_URI, '/') + 1); - } else { - if (!empty($HTTP_SCHEME)) { - $cfg['PmaAbsoluteUri'] = $HTTP_SCHEME . '://'; + // If we don't have scheme, we didn't have full URL so we need to dig deeper + if (empty($url['scheme'])) { + // Scheme + if (!empty($_SERVER['HTTP_SCHEME'])) { + $url['scheme'] = $_SERVER['HTTP_SCHEME']; } else { - $cfg['PmaAbsoluteUri'] = ((!empty($HTTPS) && strtolower($HTTPS) != 'off') ? 'https' : 'http') . '://'; - } - $port_in_HTTP_HOST = (strpos($HTTP_HOST, ':') > 0); - $cfg['PmaAbsoluteUri'] .= $HTTP_HOST; - - // if $cfg['PmaAbsoluteUri'] is empty and port == 80 or port == 443, do not add ":80" or ":443" - // to the generated URL -> prevents a double password query in case of http authentication. - - if (!(!$port_in_HTTP_HOST && !empty($SERVER_PORT) && ($SERVER_PORT == 80 || $SERVER_PORT == 443))) { - $cfg['PmaAbsoluteUri'] .= ((!empty($SERVER_PORT) && !$port_in_HTTP_HOST) ? ':' . $SERVER_PORT : ''); + $url['scheme'] = (!empty($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) != 'off') ? 'https' : 'http'; } - // rabus: if php is in CGI mode, $PHP_SELF often contains the path to the CGI executable. - // This is why we try to get the path from $REQUEST_URI or $PATH_INFO first. - if (isset($REQUEST_URI)) { - $cfg['PmaAbsoluteUri'] .= substr($REQUEST_URI, 0, strrpos($REQUEST_URI, '/') + 1); - } else if (isset($PATH_INFO)) { - $cfg['PmaAbsoluteUri'] .= substr($PATH_INFO, 0, strrpos($PATH_INFO, '/') + 1); + // Host and port + if (!empty($_SERVER['HTTP_HOST'])) { + if (strpos($_SERVER['HTTP_HOST'], ':') > 0) { + list($url['host'], $url['port']) = explode(':', $_SERVER['HTTP_HOST']); + } else { + $url['host'] = $_SERVER['HTTP_HOST']; + } + } else if (!empty($_SERVER['SERVER_NAME'])) { + $url['host'] = $_SERVER['SERVER_NAME']; } else { - $cfg['PmaAbsoluteUri'] .= substr($PHP_SELF, 0, strrpos($PHP_SELF, '/') + 1); + header('Content-Type: text/html; charset=' . $charset); + // Displays the error message + ?> + + + + + phpMyAdmin + + + + + + + +phpMyAdmin -
++
+ + + + '<', + '>' => '>', + '[i]' => '', + '[/i]' => '', + '[b]' => '', + '[br]' => '
+
', + '[/b]' => '', + ); + return strtr($message, $replace_pairs); + } + /** * Displays a message at the top of the "main" (right) frame * @@ -1555,6 +1613,9 @@ if (typeof(window.parent) != 'undefined' { global $cfg; + // Sanitizes $message + $message = PMA_sanitize($message); + // Corrects the tooltip text via JS if required if (!empty($GLOBALS['table']) && $cfg['ShowTooltip']) { $result = PMA_DBI_try_query('SHOW TABLE STATUS FROM ' . PMA_backquote($GLOBALS['db']) . ' LIKE \'' . PMA_sqlAddslashes($GLOBALS['table'], TRUE) . '\''); @@ -2272,7 +2333,9 @@ if (typeof(document.getElementById) != 'undefined' if (!isset($row[$i]) || is_null($row[$i])) { $condition .= 'IS NULL AND'; } else { - if ($meta->type == 'blob' + if ($meta->numeric) { + $condition .= '= ' . $row[$i] . ' AND'; + } elseif ($meta->type == 'blob' // hexify only if this is a true not empty BLOB && stristr($field_flags, 'BINARY') && !empty($row[$i])) { diff --git a/libraries/config_import.lib.php b/libraries/config_import.lib.php index 9a8094e31..444c217f4 100644 --- a/libraries/config_import.lib.php +++ b/libraries/config_import.lib.php @@ -943,10 +943,10 @@ if ($cfg['ShowFunctionFields']) { 'LCASE', 'UCASE', 'NOW', - 'OLD_PASSWORD', + 'OLD_PASSWORD', 'PASSWORD', 'MD5', - 'SHA1', + 'SHA1', 'ENCRYPT', 'RAND', 'LAST_INSERT_ID', @@ -1004,7 +1004,7 @@ if ($cfg['ShowFunctionFields']) { 'SOUNDEX', 'LCASE', 'UCASE', - 'OLD_PASSWORD', + 'OLD_PASSWORD', 'PASSWORD', 'MD5', 'SHA1', @@ -1224,6 +1224,9 @@ if (!isset($cfg['Export']['sql_structure'])) { if (!isset($cfg['Export']['sql_data'])) { $cfg['Export']['sql_data'] = TRUE; } +if (!isset($cfg['Export']['sql_compat'])) { + $cfg['Export']['sql_compat'] = 'NONE'; +} if (!isset($cfg['Export']['sql_backquotes'])) { $cfg['Export']['sql_backquotes'] = TRUE; } diff --git a/libraries/database_interface.lib.php b/libraries/database_interface.lib.php index 1f1d02a72..97f234219 100644 --- a/libraries/database_interface.lib.php +++ b/libraries/database_interface.lib.php @@ -163,7 +163,7 @@ function PMA_DBI_postConnect($link) { } $mysql_charset = $GLOBALS['mysql_charset_map'][$GLOBALS['charset']]; - if (empty($collation_connection) || (strpos('_', $collation_connection) ? substr($collation_connection, 0, strpos('_', $collation_connection)) : $collation_connection) == $mysql_charset) { + if (empty($collation_connection) || (strpos($collation_connection, '_') ? substr($collation_connection, 0, strpos($collation_connection, '_')) : $collation_connection) == $mysql_charset) { PMA_DBI_query('SET NAMES ' . $mysql_charset . ';', $link, PMA_DBI_QUERY_STORE); } else { PMA_DBI_query('SET CHARACTER SET ' . $mysql_charset . ';', $link, PMA_DBI_QUERY_STORE); @@ -172,7 +172,7 @@ function PMA_DBI_postConnect($link) { PMA_DBI_query('SET collation_connection = \'' . $collation_connection . '\';', $link, PMA_DBI_QUERY_STORE); } $collation_connection = PMA_DBI_get_variable('collation_connection', PMA_DBI_GETVAR_SESSION, $link); - $charset_connection = PMA_DBI_get_variable('character_set_connection', PMA_DBI_GETVAR_SESSION, $link); + $charset_connection = PMA_DBI_get_variable('character_set_connection', PMA_DBI_GETVAR_SESSION, $link); // Add some field types to the list // (we pass twice here; feel free to code something better :) diff --git a/libraries/dbg/profiling.php b/libraries/dbg/profiling.php index d29b1b485..56f55212f 100644 --- a/libraries/dbg/profiling.php +++ b/libraries/dbg/profiling.php @@ -18,7 +18,7 @@ if (isset($GLOBALS['DBG']) && $GLOBALS['DBG'] * AUTHOR: Dmitri Dmitrienko*/ - dbg_get_profiler_results(&$dbg_prof_results); + dbg_get_profiler_results($dbg_prof_results); echo ' ' . "\n" . '' . "\n" . @@ -36,7 +36,7 @@ if (isset($GLOBALS['DBG']) && $GLOBALS['DBG'] '' . "\n"; foreach ($dbg_prof_results['line_no'] AS $idx => $line_no) { $mod_no = $dbg_prof_results['mod_no'][$idx]; - dbg_get_module_name($mod_no, &$mod_name); + dbg_get_module_name($mod_no, $mod_name); //if (strpos("!".$mod_name, 'dbg.php') > 0) continue; @@ -52,10 +52,10 @@ if (isset($GLOBALS['DBG']) && $GLOBALS['DBG'] $time_min = sprintf('%.3f', $time_min); $time_max = sprintf('%.3f', $time_max); - dbg_get_source_context($mod_no, $line_no, &$ctx_id); + dbg_get_source_context($mod_no, $line_no, $ctx_id); //use a default context name if needed - if (dbg_get_context_name($ctx_id, &$ctx_name) + if (dbg_get_context_name($ctx_id, $ctx_name) && strcmp($ctx_name,'') == 0) { $ctx_name = "::main"; } diff --git a/libraries/defines.lib.php b/libraries/defines.lib.php index f01be5699..0c1d0ff7f 100644 --- a/libraries/defines.lib.php +++ b/libraries/defines.lib.php @@ -20,7 +20,7 @@ */ // phpMyAdmin release if (!defined('PMA_VERSION')) { - define('PMA_VERSION', '2.6.1-dev'); + define('PMA_VERSION', '2.6.1-rc2'); } if (!defined('PMA_THEME_VERSION')) { diff --git a/libraries/display_export.lib.php b/libraries/display_export.lib.php index 3259f7848..13e004d97 100644 --- a/libraries/display_export.lib.php +++ b/libraries/display_export.lib.php @@ -237,7 +237,20 @@ if (!$hide_structure) { ?> style="vertical-align: middle" />
= 40100) { ?> + + ' . "\n" . ' ' . "\n" + . ' value="' . $del_query . '" ' . (isset($GLOBALS['checkall']) ? 'checked="checked"' : '') . ' />' . "\n" . ' ' . "\n"; } } diff --git a/libraries/export/sql.php b/libraries/export/sql.php index fe169ce9b..b814b15de 100644 --- a/libraries/export/sql.php +++ b/libraries/export/sql.php @@ -56,6 +56,11 @@ function PMA_exportHeader() { global $crlf; global $cfg; + if (PMA_MYSQL_INT_VERSION >= 40100 && isset($GLOBALS['sql_compat']) && $GLOBALS['sql_compat'] != 'NONE') { + $result = PMA_DBI_query('SET @@SQL_MODE="' . $GLOBALS['sql_compat'] . '"'); + PMA_DBI_free_result($result); + } + $head = $GLOBALS['comment_marker'] . 'phpMyAdmin SQL Dump' . $crlf . $GLOBALS['comment_marker'] . 'version ' . PMA_VERSION . $crlf . $GLOBALS['comment_marker'] . 'http://www.phpmyadmin.net' . $crlf @@ -143,8 +148,12 @@ function PMA_exportDBHeader($db) { * @access public */ function PMA_exportDBFooter($db) { - if (isset($GLOBALS['sql_constraints'])) return PMA_exportOutputHandler($GLOBALS['sql_constraints']); - return TRUE; + $result = TRUE; + if (isset($GLOBALS['sql_constraints'])) { + $result = PMA_exportOutputHandler($GLOBALS['sql_constraints']); + unset($GLOBALS['sql_constraints']); + } + return $result; } /** @@ -534,8 +543,8 @@ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) // a binary field // Note: with mysqli, under MySQL 4.1.3, we get the flag // "binary" for those field types (I don't know why) - } else if (stristr($field_flags[$j], 'BINARY') - && isset($GLOBALS['hexforbinary']) + } else if (stristr($field_flags[$j], 'BINARY') + && isset($GLOBALS['hexforbinary']) && $fields_meta[$j]->type != 'datetime' && $fields_meta[$j]->type != 'date' && $fields_meta[$j]->type != 'time' diff --git a/libraries/fpdf/font/FreeSans.ctg.z b/libraries/fpdf/font/FreeSans.ctg.z new file mode 100644 index 0000000000000000000000000000000000000000..164785c1fb65078ea1292b41e1825e82994e6ce2 GIT binary patch literal 4503 zcmb=J^Y%9D1sU^A3=hJ#Uzs!$3U2m+8InnTGjI0IluWixtD3yFw$AU|J`3^ZLEqQy z*9y#byY%MY=Ktre@f;9;IDNOB&8+N<3JNSu2LxD}oD4Yl6ctojnl1>i9dfeZ z;1^U-a%nmtz`DrEq=U~;LG4J>4FUE?PBtC M}$bSZ%C zl#`_fzvu#`kfu`stgD<%SMZtcd&Tj8=d1wkEN9sj++P>inKZOr;E-|_&fq$`z;a8& z`vt07nyy`7yX9n^!7sZ&xuogb1=d|o<}dhc7pQ+}x_5#7my`Vqe&z%Po~DBaENzDj zB>0pQRC<~&8n7KZWFf&XoS@{>bkcxz*&&k|e8vfCXPRyrus=IwGlQQyK~bma=mwT) zhm0clv=da F7Jr}^y$=CVV2H@K=3^xri9Enwg~ zq-eq8{y;;f`Edc0-yzK(f_{f3Ex4aQu!(8tF5uKVEV_g1`U9&w4YLcl^A5}I;Qs!= z&ZeRL14muc@eeHX4xRtNGw(2W1?Tz)rh6K )0u7QD}CZe%N0}MlTM5B)e7KYl0#;XQ! zhAK^sP!049HJTc;G(a;{YiiWez|2sqsd1?RlA&r-BU1w-L(QhfJ`J#B4AGk!{WP#L z)NX3LXaMV855>?Mr@L1yS~Wv!o!5#<|G&4b4*Iugi`L>(bwc{jmwsB+wCcswse3{q zLx29VR}Kvg4Za%66&idsXltl!X!zCOuc6FW15AT@Lxrz~m <^DQ1Yh~2RYpZ&* zR^M9rZB_HD6;> 8X ~6EiqfIo3;Aa!+7hRdknX)e4EvN zYh_vG*SlH$w^o0v-1_%b!~XvZte&iw4RgN|Sn4Aiu3qzYa-7xDx{&2pB}=cZp8q+& zJT5js{HkhcWNct~?ZoU?yLK(itJ)g |-0Qf5rQ&*WQ0>#rp#DuUdbNtNrnmSzfei{x6Re7yn%9exusW z$DDBBzC1T`Vgk=6-LS8369ag@ZIrtc-}YmPy-M4m3leOHlPq}NZ&j|)RB}6XLV|U1 zl1WdWp@G`5LpLPYA1B%L^m7_0svSBq MW-tXOY5DYK8t5)N{AC8Cagy4Z zo=5}jw8L*^Fc&B3o$0MK(0_LLPXq&ZlA=zJ>jn+6!;d1EypuF_dQ&&(OgsE3;^F-d zyF!k5MM$nr2wl^5btBugBT*63uM=X|w13^mXm-TyhQ#cI;GDLz8(HhxbvKG`J7#u6 z>~>=Hn+Dm9!ez(wZiwzqEPvBzyHWhxF}oY$zZ2_a8kh?O_>L)Bh_pW}kZDvd6zMx= zXd!m|Va1#V;X)z5W11GC%O94^X*4brJ9o^|Lj3u|nwSReLP5P_syjrcKP-xA)GicV zcg%E$*!73s>u?M}<=Lhihy@&(d)$7Od2mp{zA(_CFB|L!<*g#iD *;=i{;NA8`r#xKh9m#x&DLczJuF;@ZEpR&J@(*vgD+|WL0-Y4F%Rk2Si$$ zf(*F)6g5;@7hMo(I}~KW oD`(f A6~*p@EnyK=I-Y? v(rTry`?9$|t zIer&Btz7LdWm-9>zm%D~oV#SA-o?~iPT?=5VwX#oOwRi|cYTMzf8Q5oKi5^f(7U_% z_m>8_OUj?tWxd#_|EpzQ)z9-^dgfi`uJT;}!gTM#?O*!tU1sNs%Dl2 XUcX-rXzvbUg@mMWB zx5W6hj@9aO%QpZ1RrF%cKBMX9)_#7m$7=q$_1rI-c1_S*)BR%6t{HmkykAV(HAQdj z=@*-J&Cz?G8|xT;Wok)ktZVqyt9!~y|NEGh_{Mr)|916t#maT-mcM?@wrgSD66xQI zd`p7kZ~B;D*R|Vxt^dAHiTB-8r=wq+?OL0+{Pyo8*%J4=p5@nKOTzE^mS49m@xSZ+ z{aS5F{9XU=*O|XK*n03^bGG|!#dG!WmjYX-{ws^^j=8-y+*h o2y( z?eqJ+Z}aP~akmzjzw)ixeD71?zO}c$dpF)&w*9qie8v8 )Zy?ccKW`S;fI zzi9q7!ER0ei^acY*sb%g_&E93lz$&TFRt9X{HtVqW!U`7&%d(P2F72SZom1iXl-cx z(<_{c)R`A z-0AzT%kxO2{@K4;%IKEF;bT(iOh1wteHG#*Z~R!l*!P0|+TZds6V!HaCOXXuP}{ Z;s;&6eDYA+)cI)Yy|0a(&)#>w)8G5~@)47bJ~@x)&Q)7C{gLGRKPH?$ zPLp5AAM?(c^dsBT*GS(#FX%^
jgI|~ zp0Am{r}$3A^=Hc#t$flSYWDB`FQ3rhvmxKFXU~|mY}(4)S2K1ko44}4tJI9PWfzZE zO3zkXwleeE#=Cd67~GT0i<%X-Y-{G{nNzoYefrj?`tre&FUPHF&l+~sA1nD5B!2m7 ziSb=u{>zu;-= vbzTRn!!XDy8H z`4|Y-8-G$UzUgBa{9o7I@T`xy@fjcE(`U?z&%_v?Kl8u*% L^@fh2 zxBbi5XQ!vv=d3r-KCAWkue)*fo-Nnb7~iWm*?ceO!>8V~$v1Ph%~%`vmwofu9CPb4 ze(U$0eq&aBCT{cjH|FeT9E(qM%YN%EJ0fFx{7hl-p*beY{}|W&iBI*LZTxJFW%{|< z+;OiLP1l=wdj6WXr{cfP;!tc6a6%;>*|+b^S~v6cv$ma?c{6W6>)V >>F-k%2!bWQ9ul}_9C#)5(UiG$3H=7Ipe zV+So++Mfi-%sN~U!FT+jC6oIT51E;Z3qtyiU9@C7{v<+X_Tz$>zT+P)8P%V-%$YH{ zAjt37NlVt{PeSI*x?B+Dcl@O#bNUmXIWspGgq=Hf(~|x9lbAWPKNrNEJN|PggZLAt zm>Jy#fqKV|?qr$%Bq(Oq>4HeT<4<=og+K9%nYp?kbltJ5JK3&3iHe#1x*&Gl@vl1> z&7Zj4nK8Q{IPcimovii8b$5zxe`a=P+U>&XcL!t{e>}DgzcX|9k5lXJ^zJU^kKe2Q z{n5QU?Z1oc-<@Z!+1O~)!Two5?$qI$w-0Ta+&^i^o!w`xQ>oMc_@m9i@cAbuR~Y$! zyt@38$-HyMHD71ibf HR;kxHH~$SGP}@{;??TpmwF` z`e&wlrd|K|ea}4e4{rC4%&z3le=1)gou7XH?~FZ@%RlDbJ6v5kfBoM1{2v_cj zkl*;;)2r@`{}0XoXU^aF&LXn^!Sp{}@t>vZPQU-LSNtbK!d|)6ds?Qg*>-Hx)@wHz z%ocE^FyB@%Tfvpqd|SY530JD~Z3DA4T oF=pG(CV#$FW42#6f%}%zwhg*T-M5mq?a)p1z7@1>i|*sIq1UEuewxb~eKBm) z)LhZ%t6`h3=5j?}zP4%W-hWox)~!u{eVc9D!rT<;+iKfZ=BCZQEq1N^{`%a^=$qHJ z_2y>Zu3Y zn7cb-&Hpee>P6_P3eUH}7rhf1CaL=D)HA*%!C-C&=csS3C`{ zKEt PyZ^$QWjC -GNa>A&m#nc4TeC2O|!=uQ6pWMBSt)_)Asug0ep-~4}~u71wxhef+$ z{x7lr9&i0W{_xYEyTcV)1RmAz+*ALZ>)+;`>#JUQqZU qvtLN ?t=s 1148,'Descent'=>-459,'CapHeight'=>1148,'Flags'=>32,'FontBBox'=>'[-797 -459 1632 1148]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>600); +$up=-151; +$ut=50; +$cw=array( + 13=>333, 32=>278, 33=>278, 34=>355, 35=>556, 36=>556, 37=>889, 38=>667, 39=>191, 40=>333, 41=>333, 42=>389, 43=>584, 44=>278, 45=>333, 46=>278, + 47=>278, 48=>556, 49=>556, 50=>556, 51=>556, 52=>556, 53=>556, 54=>556, 55=>556, 56=>556, 57=>556, 58=>278, 59=>278, 60=>584, 61=>584, 62=>584, + 63=>556, 64=>1015, 65=>667, 66=>667, 67=>722, 68=>722, 69=>667, 70=>611, 71=>778, 72=>722, 73=>278, 74=>500, 75=>667, 76=>556, 77=>833, 78=>722, + 79=>778, 80=>667, 81=>778, 82=>722, 83=>667, 84=>611, 85=>722, 86=>667, 87=>944, 88=>667, 89=>667, 90=>611, 91=>278, 92=>278, 93=>278, 94=>469, + 95=>556, 96=>333, 97=>556, 98=>556, 99=>500, 100=>556, 101=>556, 102=>278, 103=>556, 104=>556, 105=>222, 106=>222, 107=>500, 108=>222, 109=>833, 110=>556, + 111=>556, 112=>556, 113=>556, 114=>333, 115=>500, 116=>278, 117=>556, 118=>500, 119=>722, 120=>500, 121=>500, 122=>500, 123=>334, 124=>260, 125=>334, 126=>584, + 8364=>556, 1027=>611, 8218=>222, 402=>556, 8222=>333, 8230=>1000, 8224=>556, 8225=>556, 710=>333, 8240=>1000, 352=>667, 8249=>333, 338=>1000, 1036=>667, 381=>611, 1039=>722, + 8216=>222, 8217=>221, 8220=>333, 8221=>333, 8226=>350, 8211=>556, 8212=>1000, 732=>333, 8482=>1000, 353=>500, 8250=>333, 339=>944, 1116=>500, 382=>500, 376=>667, 160=>278, + 161=>333, 162=>556, 163=>556, 164=>556, 165=>556, 166=>260, 167=>556, 168=>333, 169=>737, 170=>370, 171=>556, 172=>584, 173=>333, 174=>737, 175=>333, 176=>606, + 177=>584, 178=>351, 179=>351, 180=>333, 181=>556, 182=>537, 183=>278, 184=>333, 185=>351, 186=>365, 187=>556, 188=>869, 189=>869, 190=>869, 191=>611, 192=>667, + 193=>667, 194=>667, 195=>667, 196=>667, 197=>667, 198=>1000, 199=>722, 200=>667, 201=>667, 202=>667, 203=>667, 204=>278, 205=>278, 206=>278, 207=>278, 208=>722, + 209=>722, 210=>778, 211=>778, 212=>778, 213=>778, 214=>778, 215=>584, 216=>778, 217=>722, 218=>722, 219=>722, 220=>722, 221=>666, 222=>666, 223=>611, 224=>556, + 225=>556, 226=>556, 227=>556, 228=>556, 229=>556, 230=>889, 231=>500, 232=>556, 233=>556, 234=>556, 235=>556, 236=>278, 237=>278, 238=>278, 239=>278, 240=>556, + 241=>556, 242=>556, 243=>556, 244=>556, 245=>556, 246=>556, 247=>584, 248=>611, 249=>556, 250=>556, 251=>556, 252=>556, 253=>500, 254=>555, 255=>500, 256=>667, + 257=>556, 258=>667, 259=>556, 260=>667, 261=>556, 262=>722, 263=>500, 264=>722, 265=>500, 266=>722, 267=>500, 268=>722, 269=>500, 270=>722, 271=>635, 272=>722, + 273=>556, 274=>667, 275=>556, 276=>667, 277=>556, 278=>667, 279=>556, 280=>667, 281=>556, 282=>667, 283=>556, 284=>778, 285=>556, 286=>778, 287=>556, 288=>778, + 289=>556, 290=>778, 291=>556, 292=>722, 293=>556, 294=>722, 295=>556, 296=>278, 297=>278, 298=>278, 299=>222, 300=>278, 301=>278, 302=>278, 303=>222, 304=>278, + 305=>278, 306=>700, 307=>374, 308=>500, 309=>222, 310=>667, 311=>500, 312=>500, 313=>556, 314=>222, 315=>556, 316=>222, 317=>556, 318=>292, 319=>556, 320=>500, + 321=>556, 322=>222, 323=>722, 324=>556, 325=>722, 326=>556, 327=>722, 328=>556, 329=>556, 330=>722, 331=>556, 332=>778, 333=>556, 334=>778, 335=>556, 336=>778, + 337=>556, 340=>722, 341=>333, 342=>722, 343=>333, 344=>722, 345=>333, 346=>667, 347=>500, 348=>667, 349=>500, 350=>667, 351=>500, 354=>611, 355=>278, 356=>611, + 357=>308, 358=>611, 359=>278, 360=>722, 361=>556, 362=>722, 363=>556, 364=>722, 365=>556, 366=>722, 367=>556, 368=>722, 369=>556, 370=>722, 371=>556, 372=>944, + 373=>722, 374=>667, 375=>500, 377=>611, 378=>500, 379=>611, 380=>500, 383=>278, 384=>556, 386=>667, 387=>556, 388=>667, 389=>556, 390=>722, 391=>722, 392=>500, + 393=>722, 395=>667, 396=>556, 398=>667, 399=>778, 400=>667, 401=>611, 403=>778, 409=>500, 413=>722, 414=>556, 415=>778, 421=>556, 423=>667, 424=>500, 425=>611, + 427=>278, 429=>278, 430=>611, 452=>1311, 453=>1208, 454=>1056, 455=>1056, 456=>778, 457=>444, 458=>1158, 459=>944, 460=>778, 461=>667, 462=>556, 463=>278, 464=>278, + 465=>778, 466=>556, 467=>722, 468=>556, 469=>722, 470=>556, 471=>722, 472=>556, 473=>722, 474=>556, 475=>722, 476=>556, 477=>556, 478=>667, 479=>556, 480=>667, + 481=>556, 482=>1000, 483=>889, 484=>778, 485=>556, 486=>778, 487=>556, 488=>667, 489=>500, 490=>778, 491=>556, 492=>778, 493=>556, 496=>222, 497=>1333, 498=>1222, + 499=>1056, 500=>778, 501=>556, 504=>722, 505=>556, 506=>667, 507=>556, 508=>1000, 509=>889, 510=>778, 511=>611, 512=>667, 513=>556, 514=>667, 515=>556, 516=>667, + 517=>556, 518=>667, 519=>556, 520=>278, 521=>278, 522=>278, 523=>278, 524=>778, 525=>556, 526=>778, 527=>556, 528=>722, 529=>333, 530=>722, 531=>333, 532=>722, + 533=>556, 534=>722, 535=>556, 536=>667, 537=>500, 538=>611, 539=>278, 542=>722, 543=>556, 550=>667, 551=>556, 552=>667, 553=>556, 554=>778, 555=>556, 556=>778, + 557=>556, 558=>778, 559=>556, 560=>778, 561=>556, 562=>667, 563=>500, 592=>556, 593=>556, 594=>556, 595=>556, 596=>500, 598=>556, 599=>556, 600=>556, 601=>556, + 603=>500, 604=>500, 608=>556, 609=>556, 613=>556, 614=>556, 615=>556, 616=>222, 617=>222, 618=>278, 621=>222, 623=>833, 624=>833, 625=>833, 626=>556, 627=>556, + 629=>556, 633=>333, 634=>333, 635=>333, 636=>333, 637=>333, 638=>278, 639=>278, 642=>500, 643=>278, 644=>278, 645=>278, 647=>278, 648=>278, 649=>556, 652=>500, + 653=>722, 654=>500, 656=>500, 668=>500, 670=>500, 672=>556, 711=>333, 714=>333, 715=>333, 728=>333, 729=>333, 730=>333, 731=>333, 733=>333, 768=>0, 769=>0, + 770=>0, 771=>0, 772=>0, 774=>0, 775=>0, 776=>0, 778=>0, 779=>0, 780=>0, 783=>0, 785=>0, 786=>0, 787=>0, 788=>0, 806=>0, 807=>0, + 808=>0, 884=>199, 885=>199, 890=>332, 894=>278, 900=>414, 901=>747, 902=>730, 903=>278, 904=>664, 905=>681, 906=>230, 908=>792, 910=>710, 911=>758, 912=>286, + 913=>684, 914=>628, 915=>582, 916=>684, 917=>650, 918=>628, 919=>683, 920=>750, 921=>236, 922=>684, 923=>684, 924=>800, 925=>654, 926=>630, 927=>750, 928=>721, + 929=>638, 931=>628, 932=>628, 933=>684, 934=>717, 935=>723, 936=>745, 937=>720, 938=>236, 939=>684, 940=>608, 941=>528, 942=>547, 943=>307, 944=>515, 945=>596, + 946=>516, 947=>531, 948=>560, 949=>510, 950=>462, 951=>526, 952=>526, 953=>286, 954=>516, 955=>560, 956=>574, 957=>504, 958=>470, 959=>550, 960=>661, 961=>566, + 962=>535, 963=>616, 964=>532, 965=>515, 966=>741, 967=>572, 968=>662, 969=>740, 970=>286, 971=>515, 972=>553, 973=>518, 974=>740, 1024=>667, 1025=>667, 1026=>766, + 1028=>722, 1029=>667, 1030=>278, 1031=>278, 1032=>500, 1033=>1080, 1034=>1014, 1035=>766, 1037=>722, 1038=>650, 1040=>667, 1041=>667, 1042=>667, 1043=>611, 1044=>812, 1045=>667, + 1046=>1023, 1047=>667, 1048=>728, 1049=>728, 1050=>667, 1051=>673, 1052=>844, 1053=>719, 1054=>778, 1055=>719, 1056=>667, 1057=>722, 1058=>611, 1059=>650, 1060=>936, 1061=>667, + 1062=>741, 1063=>648, 1064=>828, 1065=>850, 1066=>897, 1067=>872, 1068=>667, 1069=>722, 1070=>1032, 1071=>702, 1072=>556, 1073=>556, 1074=>522, 1075=>430, 1076=>602, 1077=>556, + 1078=>837, 1079=>500, 1080=>567, 1081=>567, 1082=>510, 1083=>557, 1084=>618, 1085=>558, 1086=>556, 1087=>557, 1088=>576, 1089=>500, 1090=>496, 1091=>500, 1092=>912, 1093=>500, + 1094=>578, 1095=>520, 1096=>692, 1097=>712, 1098=>734, 1099=>690, 1100=>552, 1101=>500, 1102=>758, 1103=>543, 1104=>556, 1105=>556, 1106=>568, 1107=>430, 1108=>500, 1109=>500, + 1110=>222, 1111=>278, 1112=>222, 1113=>840, 1114=>850, 1115=>568, 1117=>556, 1118=>500, 1119=>556, 1164=>667, 1165=>552, 1166=>667, 1167=>556, 1168=>611, 1169=>430, 1170=>611, + 1171=>430, 1172=>611, 1173=>430, 1174=>1023, 1175=>837, 1176=>667, 1177=>500, 1178=>667, 1179=>500, 1180=>667, 1181=>500, 1182=>667, 1183=>500, 1184=>667, 1185=>500, 1186=>722, + 1187=>556, 1188=>1060, 1189=>764, 1190=>722, 1191=>556, 1192=>722, 1193=>500, 1194=>722, 1195=>500, 1196=>611, 1197=>496, 1198=>667, 1199=>500, 1200=>667, 1201=>500, 1202=>667, + 1203=>500, 1204=>774, 1205=>608, 1206=>642, 1207=>508, 1208=>642, 1209=>508, 1210=>642, 1211=>508, 1212=>778, 1213=>556, 1214=>688, 1215=>556, 1216=>278, 1217=>1023, 1218=>837, + 1219=>667, 1220=>500, 1223=>722, 1224=>556, 1227=>642, 1228=>508, 1232=>667, 1233=>556, 1234=>667, 1235=>556, 1236=>1000, 1237=>889, 1238=>667, 1239=>556, 1240=>778, 1241=>556, + 1242=>778, 1243=>556, 1244=>1023, 1245=>837, 1246=>667, 1247=>500, 1248=>667, 1249=>500, 1250=>728, 1251=>567, 1252=>728, 1253=>567, 1254=>778, 1255=>556, 1256=>778, 1257=>556, + 1258=>778, 1259=>556, 1260=>722, 1261=>500, 1262=>650, 1263=>500, 1264=>650, 1265=>500, 1266=>650, 1267=>500, 1268=>648, 1269=>520, 1272=>872, 1273=>690, 1329=>722, 1330=>705, + 1331=>774, 1332=>754, 1333=>722, 1334=>751, 1335=>485, 1336=>722, 1337=>782, 1338=>655, 1339=>699, 1340=>417, 1341=>853, 1342=>791, 1343=>711, 1344=>588, 1345=>663, 1346=>665, + 1347=>665, 1348=>756, 1349=>623, 1350=>773, 1351=>603, 1352=>722, 1353=>648, 1354=>722, 1355=>751, 1356=>750, 1357=>722, 1358=>748, 1359=>667, 1360=>699, 1361=>623, 1362=>417, + 1363=>785, 1364=>638, 1365=>778, 1366=>716, 1370=>222, 1371=>133, 1372=>325, 1373=>333, 1374=>344, 1377=>833, 1378=>556, 1379=>572, 1380=>581, 1381=>550, 1382=>588, 1383=>448, + 1384=>556, 1385=>568, 1386=>582, 1387=>545, 1388=>301, 1389=>799, 1390=>556, 1391=>554, 1392=>533, 1393=>548, 1394=>552, 1395=>552, 1396=>544, 1397=>222, 1398=>544, 1399=>456, + 1400=>556, 1401=>390, 1402=>833, 1403=>509, 1404=>547, 1405=>533, 1406=>610, 1407=>887, 1408=>556, 1409=>545, 1410=>352, 1411=>853, 1412=>588, 1413=>579, 1414=>690, 1415=>545, + 1417=>278, 1418=>367, 1456=>70, 1457=>335, 1458=>329, 1459=>329, 1460=>70, 1461=>200, 1462=>200, 1463=>188, 1464=>188, 1465=>70, 1467=>329, 1468=>70, 1469=>70, 1470=>488, + 1471=>200, 1472=>212, 1473=>0, 1474=>0, 1475=>278, 1476=>70, 1488=>640, 1489=>591, 1490=>466, 1491=>598, 1492=>622, 1493=>212, 1494=>351, 1495=>623, 1496=>608, 1497=>200, + 1498=>526, 1499=>550, 1500=>600, 1501=>623, 1502=>621, 1503=>212, 1504=>378, 1505=>607, 1506=>587, 1507=>575, 1508=>568, 1509=>540, 1510=>590, 1511=>606, 1512=>547, 1513=>776, + 1514=>687, 1792=>600, 1793=>201, 1794=>201, 1795=>201, 1796=>201, 1797=>500, 1798=>500, 1799=>500, 1800=>370, 1801=>370, 1802=>574, 1803=>574, 1804=>645, 1805=>574, 1808=>452, + 1809=>452, 1810=>574, 1811=>645, 1812=>645, 1813=>509, 1814=>509, 1815=>682, 1816=>585, 1817=>404, 1818=>627, 1819=>718, 1820=>718, 1821=>484, 1822=>682, 1823=>600, 1824=>660, + 1825=>682, 1826=>538, 1827=>718, 1828=>718, 1829=>718, 1830=>574, 1831=>574, 1832=>638, 1833=>585, 1834=>509, 1835=>682, 1836=>682, 1840=>1, 1841=>1, 1842=>1, 1843=>1, + 1844=>1, 1845=>1, 1846=>1, 1847=>1, 1848=>1, 1849=>1, 1850=>1, 1851=>1, 1852=>1, 1853=>1, 1854=>1, 1855=>1, 1856=>1, 1857=>1, 1858=>1, 1859=>1, + 1860=>1, 1861=>1, 1862=>1, 1863=>1, 1864=>1, 1865=>1, 1866=>1, 2305=>6, 2306=>6, 2309=>644, 2310=>816, 2311=>392, 2312=>392, 2313=>459, 2314=>661, 2315=>641, + 2317=>423, 2320=>423, 2321=>816, 2323=>816, 2324=>816, 2325=>393, 2326=>622, 2327=>424, 2328=>472, 2329=>508, 2330=>517, 2331=>583, 2332=>549, 2333=>503, 2334=>538, 2335=>444, + 2336=>480, 2337=>519, 2338=>479, 2339=>504, 2340=>439, 2341=>542, 2342=>427, 2343=>520, 2344=>415, 2345=>415, 2346=>401, 2347=>401, 2348=>442, 2349=>520, 2350=>463, 2351=>451, + 2352=>319, 2353=>319, 2354=>549, 2355=>641, 2357=>442, 2358=>589, 2359=>398, 2360=>506, 2361=>430, 2364=>6, 2365=>438, 2366=>172, 2367=>172, 2368=>172, 2369=>6, 2370=>6, + 2371=>6, 2373=>6, 2375=>6, 2376=>6, 2377=>172, 2379=>172, 2380=>172, 2381=>6, 2384=>898, 2385=>6, 2406=>584, 2407=>584, 2408=>584, 2409=>584, 2410=>584, 2411=>584, + 2412=>584, 2413=>584, 2414=>584, 2415=>584, 2416=>898, 2433=>300, 2434=>400, 2435=>300, 2437=>640, 2438=>780, 2439=>520, 2440=>520, 2441=>530, 2442=>550, 2443=>620, 2444=>420, + 2447=>480, 2448=>620, 2451=>620, 2452=>720, 2453=>652, 2454=>500, 2455=>490, 2456=>466, 2457=>540, 2458=>490, 2459=>540, 2460=>630, 2461=>590, 2462=>680, 2463=>510, 2464=>490, + 2465=>520, 2466=>520, 2467=>470, 2468=>540, 2469=>490, 2470=>470, 2471=>490, 2472=>452, 2474=>560, 2475=>650, 2476=>480, 2477=>588, 2478=>480, 2479=>470, 2480=>480, 2482=>472, + 2486=>512, 2487=>470, 2488=>470, 2489=>520, 2492=>160, 2494=>180, 2495=>180, 2496=>180, 2497=>320, 2498=>329, 2499=>195, 2500=>260, 2503=>340, 2504=>340, 2507=>740, 2508=>740, + 2509=>400, 2519=>180, 2524=>540, 2525=>520, 2527=>470, 2528=>612, 2529=>420, 2530=>234, 2531=>360, 2534=>460, 2535=>420, 2536=>520, 2537=>540, 2538=>400, 2539=>400, 2540=>560, + 2541=>390, 2542=>480, 2543=>420, 2544=>480, 2545=>470, 2546=>400, 2547=>470, 2548=>400, 2549=>400, 2550=>400, 2551=>120, 2552=>440, 2553=>420, 2554=>420, 2565=>744, 2566=>914, + 2567=>690, 2568=>670, 2569=>596, 2570=>596, 2575=>498, 2576=>744, 2579=>596, 2580=>744, 2581=>550, 2582=>534, 2583=>618, 2584=>690, 2585=>546, 2586=>518, 2587=>592, 2588=>492, + 2589=>574, 2590=>514, 2591=>526, 2592=>556, 2593=>524, 2594=>528, 2595=>574, 2596=>484, 2597=>534, 2598=>504, 2599=>534, 2600=>538, 2602=>534, 2603=>506, 2604=>562, 2605=>516, + 2606=>546, 2607=>670, 2608=>538, 2610=>726, 2611=>726, 2613=>514, 2614=>546, 2616=>546, 2617=>517, 2620=>286, 2622=>172, 2623=>190, 2624=>190, 2625=>1, 2626=>1, 2631=>1, + 2632=>1, 2635=>1, 2636=>1, 2637=>1, 2649=>534, 2650=>618, 2651=>492, 2652=>484, 2654=>506, 2662=>616, 2663=>480, 2664=>560, 2665=>480, 2666=>468, 2667=>492, 2668=>514, + 2669=>538, 2670=>572, 2671=>560, 2672=>1, 2674=>498, 2675=>596, 2676=>900, 2689=>33, 2690=>33, 2693=>767, 2694=>961, 2695=>500, 2696=>495, 2697=>528, 2698=>702, 2699=>885, + 2709=>501, 2710=>612, 2711=>619, 2712=>569, 2713=>532, 2714=>358, 2715=>620, 2716=>606, 2717=>602, 2718=>631, 2719=>495, 2720=>528, 2721=>531, 2722=>511, 2723=>614, 2724=>294, + 2725=>344, 2726=>425, 2727=>345, 2728=>611, 2730=>512, 2731=>578, 2732=>428, 2733=>423, 2734=>231, 2735=>582, 2736=>344, 2738=>558, 2739=>670, 2741=>537, 2742=>592, 2743=>568, + 2744=>600, 2745=>544, 2749=>531, 2750=>232, 2751=>232, 2752=>232, 2753=>33, 2754=>33, 2755=>33, 2759=>33, 2760=>33, 2763=>232, 2764=>232, 2768=>903, 2790=>479, 2791=>416, + 2792=>465, 2793=>469, 2794=>498, 2795=>463, 2796=>451, 2797=>510, 2798=>455, 2799=>488, 2818=>131, 2819=>302, 2821=>560, 2822=>644, 2823=>632, 2825=>630, 2827=>553, 2831=>604, + 2835=>520, 2837=>572, 2838=>570, 2839=>580, 2840=>565, 2842=>580, 2844=>564, 2845=>575, 2847=>565, 2848=>565, 2849=>524, 2858=>572, 2859=>700, 2863=>655, 2864=>620, 2866=>652, + 2867=>560, 2870=>565, 2871=>565, 2872=>545, 2873=>524, 2878=>128, 2879=>1, 2880=>190, 2881=>1, 2882=>1, 2883=>1, 2887=>396, 2912=>563, 2918=>508, 2919=>424, 2920=>440, + 2921=>600, 2922=>600, 2923=>600, 2924=>600, 2925=>600, 2926=>511, 2927=>483, 2946=>479, 2947=>893, 2949=>1018, 2950=>1170, 2951=>916, 2952=>676, 2953=>836, 2954=>1225, 2958=>744, + 2959=>744, 2960=>848, 2962=>813, 2963=>813, 2964=>813, 2965=>688, 2969=>744, 2970=>676, 2972=>848, 2974=>984, 2975=>777, 2979=>1338, 2980=>664, 2984=>561, 2985=>1029, 2986=>607, + 2990=>697, 2991=>697, 2992=>434, 2993=>617, 2994=>869, 2995=>859, 2996=>697, 2997=>869, 2999=>1145, 3000=>1064, 3001=>1316, 3006=>424, 3007=>125, 3008=>596, 3009=>539, 3014=>596, + 3015=>650, 3016=>973, 3018=>1286, 3019=>1286, 3020=>1706, 3021=>333, 3031=>859, 3034=>778, 3035=>881, 3036=>876, 3037=>648, 3041=>744, 3203=>342, 3205=>620, 3206=>591, 3207=>600, + 3208=>776, 3209=>1138, 3210=>1464, 3214=>574, 3215=>570, 3216=>580, 3218=>589, 3219=>597, 3220=>625, 3221=>256, 3222=>565, 3223=>326, 3224=>604, 3225=>651, 3226=>408, 3228=>611, + 3230=>843, 3231=>610, 3232=>258, 3233=>317, 3234=>328, 3235=>803, 3236=>317, 3237=>328, 3238=>352, 3239=>352, 3240=>317, 3248=>248, 3249=>621, 3250=>620, 3251=>620, 3302=>649, + 3303=>550, 3304=>573, 3305=>567, 3306=>562, 3307=>557, 3308=>562, 3309=>567, 3310=>557, 3311=>557, 3458=>468, 3459=>318, 3461=>660, 3465=>778, 3466=>807, 3467=>830, 3473=>838, + 3476=>860, 3481=>1000, 3482=>973, 3483=>860, 3484=>997, 3486=>740, 3488=>838, 3489=>886, 3490=>886, 3492=>1295, 3493=>1295, 3495=>838, 3496=>860, 3497=>860, 3498=>860, 3499=>1403, + 3501=>973, 3502=>838, 3503=>660, 3504=>860, 3505=>973, 3507=>660, 3508=>886, 3509=>838, 3510=>860, 3511=>973, 3512=>838, 3513=>860, 3514=>886, 3515=>807, 3517=>830, 3520=>838, + 3521=>973, 3522=>886, 3523=>886, 3524=>973, 3525=>830, 3526=>973, 3530=>0, 3535=>432, 3536=>380, 3537=>420, 3538=>0, 3539=>0, 3540=>0, 3542=>0, 3544=>501, 3545=>652, + 3551=>648, 7680=>667, 7681=>556, 7682=>667, 7683=>556, 7684=>667, 7685=>556, 7686=>667, 7687=>556, 7688=>722, 7689=>500, 7690=>722, 7691=>556, 7692=>722, 7693=>556, 7694=>722, + 7695=>556, 7696=>722, 7697=>556, 7698=>722, 7699=>556, 7700=>667, 7701=>556, 7702=>667, 7703=>556, 7704=>667, 7705=>556, 7706=>667, 7707=>556, 7708=>667, 7709=>556, 7710=>611, + 7711=>278, 7712=>778, 7713=>556, 7714=>722, 7715=>556, 7716=>722, 7717=>556, 7718=>722, 7719=>556, 7720=>722, 7721=>556, 7722=>722, 7723=>556, 7724=>278, 7725=>222, 7726=>278, + 7727=>278, 7728=>667, 7729=>500, 7730=>667, 7731=>500, 7732=>667, 7733=>500, 7734=>556, 7735=>222, 7736=>556, 7737=>222, 7738=>556, 7739=>222, 7740=>556, 7741=>222, 7742=>833, + 7743=>833, 7744=>833, 7745=>833, 7746=>833, 7747=>833, 7748=>722, 7749=>556, 7750=>722, 7751=>556, 7752=>722, 7753=>556, 7754=>722, 7755=>556, 7756=>778, 7757=>556, 7758=>778, + 7759=>556, 7760=>778, 7761=>556, 7762=>778, 7763=>556, 7764=>667, 7765=>556, 7766=>667, 7767=>556, 7768=>722, 7769=>333, 7770=>722, 7771=>333, 7772=>722, 7773=>333, 7774=>722, + 7775=>333, 7776=>667, 7777=>500, 7778=>667, 7779=>500, 7780=>667, 7781=>500, 7782=>667, 7783=>500, 7784=>667, 7785=>500, 7786=>611, 7787=>278, 7788=>611, 7789=>278, 7790=>611, + 7791=>278, 7792=>611, 7793=>278, 7794=>722, 7795=>556, 7796=>722, 7797=>556, 7798=>722, 7799=>556, 7800=>722, 7801=>556, 7802=>722, 7803=>556, 7804=>667, 7805=>500, 7806=>667, + 7807=>500, 7808=>944, 7809=>722, 7810=>944, 7811=>722, 7812=>944, 7813=>722, 7814=>944, 7815=>722, 7816=>944, 7817=>722, 7818=>667, 7819=>500, 7820=>667, 7821=>500, 7822=>667, + 7823=>500, 7824=>611, 7825=>500, 7826=>611, 7827=>500, 7828=>611, 7829=>500, 7830=>556, 7831=>278, 7832=>722, 7833=>500, 7835=>278, 7840=>667, 7841=>556, 7844=>667, 7845=>556, + 7846=>667, 7847=>556, 7850=>667, 7851=>556, 7852=>667, 7853=>556, 7854=>667, 7855=>556, 7856=>667, 7857=>556, 7860=>667, 7861=>556, 7862=>667, 7863=>556, 7864=>667, 7865=>556, + 7868=>667, 7869=>556, 7870=>667, 7871=>556, 7872=>667, 7873=>556, 7876=>667, 7877=>556, 7878=>667, 7879=>556, 7882=>278, 7883=>222, 7884=>778, 7885=>556, 7888=>778, 7889=>556, + 7890=>778, 7891=>556, 7894=>778, 7895=>556, 7896=>778, 7897=>556, 7908=>722, 7909=>556, 7922=>667, 7923=>500, 7924=>667, 7925=>500, 7928=>667, 7929=>500, 7936=>596, 7937=>596, + 7938=>596, 7939=>596, 7940=>596, 7941=>596, 7942=>596, 7943=>596, 7944=>684, 7945=>684, 7946=>684, 7947=>684, 7948=>684, 7949=>684, 7950=>684, 7951=>684, 7952=>510, 7953=>510, + 7954=>510, 7955=>510, 7956=>510, 7957=>510, 7960=>650, 7961=>650, 7962=>650, 7963=>650, 7964=>650, 7965=>650, 7968=>526, 7969=>526, 7970=>526, 7971=>526, 7972=>526, 7973=>526, + 7974=>526, 7975=>526, 7976=>683, 7977=>683, 7978=>683, 7979=>683, 7980=>683, 7981=>683, 7982=>683, 7983=>683, 7984=>286, 7985=>286, 7986=>286, 7987=>286, 7988=>286, 7989=>286, + 7990=>286, 7991=>286, 7992=>236, 7993=>236, 7994=>236, 7995=>236, 7996=>236, 7997=>236, 7998=>236, 7999=>236, 8000=>550, 8001=>550, 8002=>550, 8003=>550, 8004=>550, 8005=>550, + 8008=>750, 8009=>750, 8010=>750, 8011=>750, 8012=>750, 8013=>750, 8016=>515, 8017=>515, 8018=>515, 8019=>515, 8020=>515, 8021=>515, 8022=>515, 8023=>515, 8025=>684, 8027=>684, + 8029=>684, 8031=>684, 8032=>740, 8033=>740, 8034=>740, 8035=>740, 8036=>740, 8037=>740, 8038=>740, 8039=>740, 8040=>720, 8041=>720, 8042=>720, 8043=>720, 8044=>720, 8045=>720, + 8046=>720, 8047=>720, 8048=>596, 8049=>596, 8050=>510, 8051=>510, 8052=>526, 8053=>526, 8054=>286, 8055=>286, 8056=>550, 8057=>550, 8058=>515, 8059=>515, 8060=>740, 8061=>740, + 8064=>596, 8065=>596, 8066=>596, 8067=>596, 8068=>596, 8069=>596, 8070=>596, 8071=>596, 8072=>882, 8073=>882, 8074=>882, 8075=>882, 8076=>882, 8077=>882, 8078=>882, 8079=>882, + 8080=>526, 8081=>526, 8082=>526, 8083=>526, 8084=>526, 8085=>526, 8086=>526, 8087=>526, 8088=>857, 8089=>857, 8090=>857, 8091=>857, 8092=>857, 8093=>857, 8094=>857, 8095=>857, + 8096=>740, 8097=>740, 8098=>740, 8099=>740, 8100=>740, 8101=>740, 8102=>740, 8103=>740, 8104=>945, 8105=>945, 8106=>945, 8107=>945, 8108=>945, 8109=>945, 8110=>945, 8111=>945, + 8112=>596, 8113=>596, 8114=>596, 8115=>596, 8116=>596, 8118=>596, 8119=>596, 8120=>684, 8121=>684, 8122=>684, 8123=>684, 8124=>882, 8125=>278, 8126=>201, 8127=>333, 8128=>278, + 8129=>333, 8130=>526, 8131=>526, 8132=>536, 8134=>526, 8135=>526, 8136=>650, 8137=>650, 8138=>683, 8139=>683, 8140=>857, 8141=>582, 8142=>582, 8143=>333, 8144=>286, 8145=>286, + 8146=>286, 8147=>286, 8150=>286, 8151=>312, 8152=>236, 8153=>236, 8154=>236, 8155=>236, 8157=>582, 8158=>582, 8159=>333, 8160=>515, 8161=>515, 8162=>515, 8163=>515, 8164=>566, + 8165=>566, 8166=>515, 8167=>515, 8168=>684, 8169=>684, 8170=>684, 8171=>684, 8172=>638, 8173=>333, 8174=>393, 8175=>333, 8178=>740, 8179=>740, 8180=>740, 8182=>740, 8183=>740, + 8184=>750, 8185=>750, 8186=>720, 8187=>720, 8188=>939, 8189=>333, 8190=>333, 8208=>333, 8219=>221, 8223=>333, 8227=>350, 8241=>1360, 8242=>278, 8243=>469, 8244=>680, 8245=>278, + 8246=>469, 8247=>680, 8251=>622, 8252=>556, 8253=>556, 8260=>167, 8263=>1112, 8264=>834, 8265=>834, 8267=>537, 8304=>351, 8305=>351, 8308=>351, 8309=>351, 8310=>351, 8311=>351, + 8312=>351, 8313=>351, 8320=>351, 8321=>351, 8322=>351, 8323=>351, 8324=>351, 8325=>353, 8326=>351, 8327=>351, 8328=>351, 8329=>351, 8359=>1445, 8360=>1222, 8362=>869, 8459=>969, + 8460=>615, 8464=>809, 8465=>519, 8466=>874, 8470=>1008, 8475=>850, 8476=>644, 8486=>720, 8487=>720, 8488=>512, 8490=>667, 8491=>667, 8492=>908, 8493=>623, 8496=>562, 8497=>611, + 8498=>611, 8499=>1080, 8531=>869, 8532=>869, 8533=>869, 8534=>869, 8535=>869, 8536=>869, 8537=>869, 8538=>869, 8539=>869, 8540=>869, 8541=>869, 8542=>869, 8543=>869, 8544=>278, + 8545=>556, 8546=>834, 8547=>945, 8548=>667, 8549=>945, 8550=>1223, 8551=>1501, 8552=>945, 8553=>667, 8554=>945, 8555=>1223, 8556=>556, 8557=>722, 8558=>722, 8559=>833, 8560=>222, + 8561=>444, 8562=>666, 8563=>722, 8564=>500, 8565=>722, 8566=>944, 8567=>1166, 8568=>722, 8569=>500, 8570=>722, 8571=>944, 8572=>222, 8573=>500, 8574=>556, 8575=>833, 8592=>987, + 8593=>603, 8594=>987, 8595=>603, 8596=>1042, 8597=>1042, 8629=>658, 8656=>987, 8657=>603, 8658=>987, 8659=>603, 8660=>1042, 8704=>667, 8706=>556, 8707=>667, 8709=>556, 8710=>711, + 8711=>711, 8712=>713, 8713=>713, 8719=>823, 8720=>823, 8721=>804, 8722=>584, 8723=>584, 8727=>500, 8730=>542, 8733=>713, 8734=>713, 8736=>768, 8743=>603, 8744=>603, 8745=>768, + 8746=>768, 8747=>556, 8748=>796, 8749=>956, 8750=>556, 8756=>863, 8764=>549, 8766=>584, 8769=>584, 8770=>584, 8771=>584, 8777=>636, 8800=>548, 8804=>584, 8805=>584, 8853=>768, + 8854=>768, 8855=>768, 8869=>658, 8960=>823, 9674=>489, 9834=>555, 63033=>556, 63034=>556, 63035=>556, 63036=>556, 63037=>556, 63038=>556, 63039=>556, 63040=>556, 63041=>556, 63166=>222, + 63171=>333, 63196=>556, 64256=>556, 64257=>500, 64258=>500, 64259=>778, 64260=>778, 64261=>556, 64262=>778, 64285=>200, 64286=>305, 64287=>400, 64288=>587, 64289=>890, 64290=>848, 64291=>872, + 64292=>800, 64293=>850, 64294=>873, 64295=>797, 64296=>937, 64297=>584, 64298=>776, 64299=>776, 64300=>776, 64301=>776, 64302=>640, 64303=>640, 64304=>640, 64305=>591, 64306=>466, 64307=>598, + 64308=>622, 64309=>262, 64310=>351, 64312=>608, 64313=>270, 64314=>526, 64315=>550, 64316=>600, 64318=>621, 64320=>378, 64321=>607, 64323=>575, 64324=>568, 64326=>590, 64327=>606, 64328=>547, + 64329=>776, 64330=>687, 64331=>212, 64332=>591, 64333=>550, 64334=>568, 64335=>640, 65533=>788); +$enc=''; +$diff=''; +$file='FreeSans.z'; +$ctg='FreeSans.ctg.z'; +$originalsize=236376; +?> diff --git a/libraries/fpdf/font/FreeSans.z b/libraries/fpdf/font/FreeSans.z new file mode 100644 index 0000000000000000000000000000000000000000..579bfdd2728a522978e4b8620b1355808b456288 GIT binary patch literal 131363 zcmb=J^JY(ZO-QKJ|N3(?x6Jf>UwcV7$ipLFfMdc1Zy|**Voon)o!*DKh_JZ2zUlA~ z7Svh8>gX^fROd!PXveOIYoR=hX?5?b)0rCY{(bkaZvFN5`}1pREsEdQp0o7-X>;E4 zxnIu&Cl39ME)qwseDa%nn$6bg6=!0^)|tC6pZ@)2-Jicx3fCE|@fA8`zIe~3_?NH6 z sX_T@lw?bLGjz z$;Z~%{rjhxc;ba}i}%$ln#O78s MPgx>$jsT9k)#M(B8ax@};^t`{ec=yyo7s z {zcfNvzf9VBgsHd#$65heO>a zwqqWbk6oOoRVDRr$$jTT>|es uw*DS!9< zK_%07w%2djlQiZVzYst0ysoCt *0)yl)n&Mf=yzae4D1Uqbno)q`I9HtRqC^cx o a4 z*kw!_x~r`Hh8bL zoOgDcW%Ln;<%bo#TAJ)me4n_!%g=B1iG{UQa#Kx<10Qcc_Bl=d|M`6zKEE}K%l^6M z>6QH-e4lr|y)*Y?i?jHg;tQX5#9kNsv!(b^{PEr^#cvg}Cwpz(w@Pl4@3HAe?zZ`_ z&A)K&fmJkHRJWt_27a4NgPRfZYuq#BpIdIdx6A$87QZ9&4YxdL?7fv!JF`soeDr_r z_%Ag(m-=_x{Qho}`z_Vj{>@jn)w}1uTk(IPdG@*YRk~e;Ygh%%i=EDEM=#!HmSK5g zkDdv0ZGGN4-(R;1)R|nT_TA52E|XngZ1exDR8qWsUAj)SU-s)>`wy41_HAop)Hh)M z!p3?a^4peL&6clA1kChr2|qBXkl%B1FUzg{mo`n_kjHXdR` st@3WKTX$nt%96KD zw{-7Z@ww >)gTrS$H~zB!6sTf(JX_RU&re>$YzwM?+m zV)BeLOU&M-_1Zh@*r`mj-%vJB^yH&WZ^i%q qm=juDF}u+Qa>}-0D2r%dbaIMV+lXwsBe7i{CRHYTWjgof4ngru`ve z^2Ya#RS#wd%)Nc~w-VQ4*L>$yamLlsIadnT^3|UD>o0p=Uif00+?MyBV;=wf-S=DG z;+soP=8ewyt$#1LzFY6OP9mgX>7w-u-%Z;yS-M#M>i43PRr>;_KatyE!|^}k=hevd z)rMOA)eQC1R+<>dZ7ExG{8nl8yv#j+Lq)P>%yLrn7rlM#Rr!pKuc`b%_>b=lxszh! zVjpgHJ 0j;G%oXF>6ZT+ zr ?+iy4S4s^S!Wpwf0^^@vOJ|1G%@nj(1tIM`P8GJ7*toZhxPc|D#J| zVt?ntwz@@E1X}FWS8&<7Ot_`B=}PmL%77)S?^}BN2 1`$P3e-Y&b!6lTYOl>oT@u7bN+sD&R?I4n~HZtt+{*k)y{7|x{bkm zZ(7$mto!c1{^TN;$&Y0wcD(m`kRAO?EXZ8=gL~tuXE}@R&Q~!i*;#p{-MIY~pSf4X zyz`q2Ue)Tq;}?Fr!T8<-wXQ31HBq{sj(VP(sqU(Ff+;FivR?Rdr2O)3#w$+(WVMe< zt(|(@MMopxZBF}DFY6BvS-7&M&sef6DBisLZx-A6dz+o>+;^Wgn`-I4>g=ub6z9f& zF*b|0zm $%$?Ugy_xdvJ=Fmkx$unyI;K*VtGAxf_`Rx_JhC0 zTk^K_7x^FF%eUvvj`Qyv_py4txp3_2*NgMA-wT^HsBLiHeE8R9n = zdt_Uf!lk_BUtK@wo%d@JOwjuNn&-5O(A%_gg;Mj_zc)-(ko93+?5H2WEqCQfs#f)) zUWL#fD^<6hW-Gs)`t(_Yz6XPF GOY}}l%_wA;A=YI*-G{jiEKG`3|oz@(e zp#Jq>*PZ_D$5Q7%Sby@xU%Rp`$1A2a^1a^iZ`OI+FW=PvT3-JY{EoBz&+%`CNBGWF zuxFM=+)b^XS1$VSk?xLnDb@aAiriPq%M#LUH)WUny(9DZ%8guM`$PY&KIpyXxqjp< zfAyai!VFCpb!XgK{8Qn;JMMEcQK3(lJ|nG%Nffb zuXePBYYAIe9=rXn;@d{H*`b=p|4LZDzj-~h^X`WaE7)#xDXvvMsIh_LO0(1i{Uy4$ z*R4Lg>gBSt>(7TiKQWo-+lKhhZ{{r9y*5zuc4_Usq_;B*l6tC3es8?Hp=sx$wfP+x z(c-DXoo(hfvj6d!*C* *vRr zA4QCe7(<%VcbZSIvYz#uX-d)FXq5o*NiNK_r*f)IEx)C7{?PJlz3`3kr^9afqkDR^ z_bvZauW!};K6mehz5Fk@;+Ulm>b$$&^sepdi`vG@a)a~nGoLHl{Z~_3!P$AG#icgB zwkiGo=6QPCZFQn=+a0xUvQi7#` TlC(dwidq&Udvk3zHJ#%6FbzP`<1G^NF @Civnf5r=8O-m$klyp5Y?ii 1NyB?TJ#qd|l?7?pk+mll||1oeRu=AIkbRFHh-0=B^JVc4t19 z-O*;5>)`+A7QfHt*ksKjRknGXcxEadioBb;TTlMM&5UO+`rc? )`szGZXE=iSnemcjew7S{U-*Phs(bdyik zjGNo+sHBkVl7(|W7*E;QE}^t&i}}YN3e(O%Z0mkwyzg (VoB zdG6dY|8vbl*Zmo}GROF?AGbOzS7w~9vNr$okMxQ#HKiXp59_o(w;Szmtv)%+=6jKY z)qLe0@?Nu5j&OC~QRgXQtf>wvc(?DL@b^7$-+s+MSeTjZUR$)~@BjOI+OM3qZ9Me-+xNaVC-dee%dCAXuQj!J?c=Cw`IB
a$Nz0FpWPP`yZ7fi zkLv3`-`_9&U!VEkyw5V~nH-<^r~lD!{ynu#?=Ii5eQW48_pjeAL$`HU-%|ftwq4h! z{`!{NQfHrk-lE#~ntx~AtiQLbYUggcbw)RO>p83FdiAaEj`4iUmCfHaZ(I7?_ni{g z@3C3jYXADp@^!>t*=xn-SyzhRDCceMwXxP!Ub{cz{qzj=yBGiIDd(ymNqx=o_U`l@ zHH-aXwmsdRvHtU$+HY(6U%g)_v|)4V@6BHY|K7cE-u&CD`MJg!|NVY%F}h*);{8G% zv+vfoe5+RPRlc1&xhz6HLBG 9tjz4a?Mo67~K=U&c`&MYt7 zFTD2f_a~iK_x-cJw~{sab}3ic+{SgykN3`K`!D2vxFmW;qE+_8l5CUt=PysQSZDv_ z*USH6;)fkxM;vyzc+lX3TW{h5-QBLYPi(&Y|7_mjy4Pig>t6l&C*3dk?e?;ZW|!VQ zs#Cu;yX=4Ti<;f6zWJX%#-7{mcx7&kUH>w^ohHA%SgoVDtiCs#Q}m7B5t?@T>VogR zPjmz_f5%kc=dinGq4GIb{@~2@2kyVUv+?O_qnC>sD|^gq@At&qcKkax?eo@ionm_; zRH`!X+ZN61xw2nAw=dHBPtI&^zQc`{3A-O!PRywn*X@6OKXBQtb&~tG|Mh%VE)d`K zZOhxOVZZG-wlKbo@?Mu+IbWf@( e-tRZ7uU~bt_fNRx z^W{epmOoC?_`NCVSy0>LHTRQmI&V$tElyo;I&bgo^^4jUHr2l1TDL!4f6;Rufj0-= zyf3Kbd3~~3GbX*u#Prs;u5EnQPdArus8@geKI89}zwzDK^Pj!Xk)6-HHT!L>!mcX` z*<3bjFYbSTPhV-SUx&wY{jcY5?RB{2@GkRy;rGmcb+OU;U&~jl?+V)LTOS|x>c=|A z=*d2Q(qGR1`rf(4?#}0n`|fA_t8 gV7P5tlrhc>C{%`NM_ivb$Z~mW~l3yIu zBEj-DL6Al1=bR;u-yJO~u0HI4_=r>Vd`zrM`GT#7zrJr0?~oB~Klkmvy~pBwFXNKA zpI5}&3(OXoxctrj-5=`z)Uy5k&REqo^VGlH{I_Wtrc=%x3BV*I?WA>mzu+q$5!4v{owrrnl}y3Z#c2x+=hD} zW<0cA{?PCEoO^{;*I)84Uw!WH+;+?LWpU4Ij{KbQxqqG9x|Qqh_MFNvtCFbgi9E)X z?4F#S9G>i-9RE1vana+d$8L}P9@{-;d@T5Q^|9n* ;cc(?J=W4-=rTeE7LHyiIh zF6>`!Gw<___aD2CXUiS8^{bro`NxgNdycoBU{{v!s?qs0^TgkY?n?JNYy>OSJ{>;s zd7`-T|BgLboEuystfH%;*do}X*rMB_#G?43`XcSN)a3m<`f2x3si(3} C4OmM) )hRmn-7Zf3%bh2slA^h{ouIrhsTmXKJKwmtDoAtLBsKD;NPnW zrcS+$^1%;|$87ak8}>T?)8idhOYKZKn!69O*w^rIw#~G%4?ED$)uukD<#N?>VZY^b z&smvTZ7-C2Vsoi-?Pt5^;d9RK;tJ2d&a>FW>M(!);`xThBY5mj_1^8R?b&*4>9MKD zs(WVl?0#@u@kim6ibEArbv225685ANnN`mG<8yMEPjH{6eBBn~sk3*@W;@g$b-Cnn z&}Fa7f0xBBV_qiiyMCtM48Ozu-f5|2`%d;V{1D9BHe>SHm(P5P*X^8pu0QIt(PyvE zY@chNu|GUs_F4GZ+-J7Wrk`;?d;IM32glQ`?8A2D7wqS+%PGJAyzXSO yU*=*bxl{X7!jsh#k1P4R&g=bS@oD#o`%2Qf zhlFxEH <;)7z!1FKu z7`Rs-?l<@`QDCmjT)|k$y@GXfTIIElSswF#?#}YZqvXTl=5zhCX8g|owD`b5{zBbH zQFeba>eoKrYSb&g%|7S;t$SPcCRX45CVu<$w&^+SIlps%=Tzt3&f&kY?S|QHvm489 zFT1(ymfFo@w_oKX=WgA0aofagg4+_eE!@Tx9Um duwCdun zv%8M&I=Sm$)%Mc8U-e!qWM^luGQBw~qjzn{nW&G+s9c&*nwe^1HZkFTxQ* nF55mkF30Ld$%4%I%lDSq`kptny}f1g%a_a4 zXUk>Xy0v9#X7S}+%R+s%XH7HL&5pXYWl3h> d8A#URkp4*1D+mar ^k`C{Wt9|=wb$EY_ZOPZx)$Hru?cDYH)#mW>n7egf7am)7Y;|wA z)c=e>dq2+aoh}`p=ac1=)04f$#LcA5gw34Il+BFI Nl~uvtjMSgKef *TJ;pK;k>ZKBuVCvACLu~J^rkE9<-CF$?2 zeR $v>1Gml(9Pd_s&(!4dhdGhA&)w3_Alzsp3 z< mSzR5RALRyWt*zhJ|P9l5(F zeUtUFE_)Rdc5i9+_II{b-(KBap6{9(y8j>ZDt108o0JzD9xA(ag|5DSZ|lp(xBfQ& zo?P~~{rskQcbWbE^7H%t>hG!eaN*(fxZ0;%7bjJnol&^x-^P`~N8Wr)I%{U=+_AB^ zL|0u;z&bw8s%q1>%1cg$SvOCuJv&WSFyEwp4tLm^_`2`As?F~0e)vx}>GR=!n 7gqTV>9?EhU!+tp)M&K?E3CLs7cFVS6~}(-@BNksB5HG{ zH)uQUSi@{ne3o^2!_>9+?G$_FI>_E&>}x#jG-Jl;Esh+Y-3nqjz6WjKHdy8^@`CLi zbI(Ibo~#3AAB=uPa;*0#kpI#4_%g?bsRDMZ8IpgPa6UX;9G~+!wdQ{K!G5P7JDXJw z+^E}ex&QCV`;VP|Bsc$0RAhQ|AWf0Umhl_gB5#2z)`isqkJ)M&HyBq~Rk(Kuyy00` zzk;)b@rA%Nh6=fDtPAQbZr?9>#=V~Xh3rGNH0D1tjqfI&5$%+lR>m;j_2G1lW4&(w zGoJNvvbr m|^2-kk*ueR>wRR-xG3F}me1O6*-GFV^ExV)^XnPL96KE@k2rT#`AZZ0|Icf9}Q zey)j)XC<$ >)l92uLU_L4?Ati=i0E6dE@H_zomN_ww1bU z@B6S(+3sBk#{)n0FR#zcnfow9vQF!;|I;5kW%lm+!tmnW)bp_q)6M6VChyDpuu%H@ z?!B5W =T)E9h#S5$<+`w6-0a&i_Pr0| ;6hCmjCwUah&~^_s4hqeGpq;b5s8RxAy;k zFRr!!_mbcI_v81BZyBxl54_8Ivg+baspwT7qrav*@u*B^JM_J=ph}_AdcqApmv+Z9 z<{efB9QXO$o*#T+BXN#P@t*SwYms$4s%eKGTrfy7?kQ~Ft9_*4k&%qG+k(?43J&a8 z{NRs9jwI`ScjIdrJ3^dwS1Qgkeez49Cc^v8u|s>UQeJ;Zm)*B=alY*5>xsvABptZ% z_!#rA9(BLR4-Zv5GLhS>mhhM*>#$3Wo#1Y@iLWO=c%<@W-WJ(}>r31e)eb*Ad1w9} z;Rlm7pF9_NHq%LWmJ`o1gKr_n=ANp!ydhW0W|rIimoJQE &me65?_yOoM&-u^6RfJ zg8k#ps`?dAX52T+nqxw7@k-9(jmdge=Z>B)?z|Y2@?6oH|NnXC?Ug_B L>+1ejIb5(3)ieGzx zU0bqP^-mn@`7pu9p }yHa zt#<6`t11w$y63uko=hBn`t`?)zy5fd_oLLjvfR9Iuk>&8fcItr#qSS3tDf;)uEyi0 zfb_@XZYk!M>XrYRPtuqEc+l f4o}v$`{?9&8;%`nC5Rguw3`b z%C$2aUa$R8sr@Nh@-<_{cZM>XhI)C0^>Ro4^9NbW9f{|kWPQ8it=X>}=QQbk^&MN^ zE57>a{NrU}(c8qFsu@4*n$F8La`#Ut?_Y3R`NnUKnrfDPxy$u(kGH+Ove12FJ$vPz z=B;V$hBZAuY~AM8_f-9}h^dv?Z`T(;&!Js?#(z(XKPnq*yLQ;M`uRUxy?o~X%s=0F zzS$h!JNL_N&pqWrhv&Z7EUfpoWxMsmw|+S_VzKj5@1)PH7ytFXseSi_V)2;!t!Ii~ z{FN~}fAP6x$*r?iyJzp(FKze!*txq$YR&Id&a0fiyv)|W=KF)+woeYr)oc=%{ciL< z?#mtS{O^<2S4Sp)TX@+n>#tqP_lNC&kEGh~yKz2ht9 m9GNU;LBWC3jTceWLZLIqoaf-9H`;{P9iv(+~Y0Z%bd@ef{Lr>nF!w|9Dnf^O>z` z599y)4*$54{;^elVY91Zo_kM0E`QPM*(dg&{PjVs@{ichx}G00i|5HW_b1=6Z;Q>J z{5t>e^X;AQZ})sO`&d7FSLvKtr83rio6{}({vD5G@1Gof{Ni^D%VL@6e&h3;KZ=>= z&2jj~QfS+FPF>
}%O}>0-#tI!e)@;UlFzIT$E2?iPycXOvgiws=?9+D2RvqbkKcJe@%j6O zx2u1=vwieYZtGjyPrq%y)x1wUUj5>S+_pXa|L>{Sz5o2D_EFWeZ#s2 {yZFhu-37mtvQMej)N%fmuDIs#Hse71{li<|cRuC+@s9o2 z55a$bJZk>?-TBw|CbeXTkL+*G=z67d_QId%@BGI)|G$^rpHnsa5B;tem|uTj?)?)- z?|=AjKlA(iGrz6B{w#m=n| ?H2H;}n5q4ufK__E z!L#{SPT6n#=>O@tzr~Mq-39OG7d-H{_@JKrr?ap3#k~%{@QM4mwy&S`J^bOV(44$Q zVde)XW 5}OFz^5UiLcevgFMCB6dkcZ;7R&$9Eq^+ue*QdwiUJonf0_6q3uI#gJS$ zZ*tx11A&TvZ#T+5s8(c_P+njk!8)V;^BkU2tj-763LH)(lyJOcdLevCB_%`jhtCOv zUu|5>(F|3s-x*G{>{m}|VY>OC@Wa*#6HmAqxjnHtU^6kEGqaPa`@nH0x7Mbl4J>;! zQ%cw>B2Gvg>#$_46E(UfpCe) 3i7qR-b$7DO{g4 zzjMy)ijn#owO=R2>XYP)Nsad;!&`DT%f$#8O_oSeWv-cVcJrI?)-#eU7i`7rpCtv$ z{rx0iZqI2D&uArX5XV@{?S1gIlUOO!8P?iV!+#oeK_|A|xFlA;^)+jq$fhMydz4dt zTW#Q3;Ld*Rm4T?h|4RuC^SwSgyPG@w@4Inv;*WBt<9 3& zbyCDDuCUhbesF)?k+rYiJC!+`pG(`+ZtZYi?#L?j+Nz_BZ{GCA%r|OyTf3b*@}ks% z$)}te^jFVVf1lauoBQ#9)~zxO&)F9Eo7S%S&S5#>BYV CcE~Ynwlp7A)v{U3jEM=5e38+hc8pIWrDy=6rJCh@g|7Qn}i~>nTYF ztp9u)9|u49bH$FK&gZcGWr^Zn8V)*X51J+0TjzA1HST=v^X{xunb^0phmLQ4cp~S^ zY%cp}Pne4q%E@05{#{kHUT$aAmsRbbzaBpz?sTs8bMeI4?lI3F9 zk7xP2<@d$@>=d1s*J>aA@j3I6myE}11a5CLyl(c(&Lz&S$Cv-{^!AtkIqGimecyg~ zzx&2~_CGfo?d1<&??2dne5Ggq urgwjYxCw-)FpZ| ~6OQ2J-%vWG9QonP_0(0TsFj}zb6 zHreSPo){j%9QX9!>Kk9AK3a2K|JStd&D|%jkNo7Cx0loY-lBi|TkZQFeoj8}BKJ{| zjNg0(G4&PG-zR+ctf}ML8GL2w *ZUWpX8-cPVb=%6f7Zu;Jny(~`Rq5xyE>lZ_Kw^AH~zP&``Z)sMKZb0k!Syb zY5FI3ufOn^sqmNdzCUg0Z^WN$Ut@jW@S1By0q4IMrT0=NKEJ>Cm_6yE^51%w>GG0~ z-QWG6yW_uXT M5NI#tSw zo~qs(VAuG-cwtR@!)d3VXIbL8pZ?z*z!==hHHTe~Q}ha}jb2EB-4Cx76U wN z>|`eKTqu2^@S!i@@GlNinf?6^*9Cv1seIn#wqoKL^G)n47`YkD`j*^3k^F$$VUC+% zcVOWHi4ewT@~yUu ( z24>T_40S6N<4liiWV6ox5X<#%< 5I5DHQ!J_Bj_2dopJawx} znQugP=Vxu)DVBHjQGZlPYHje=7g62ow!W|ui#@*Rbwr75_qt^D=Fo !YPFp$n+@Mr!J&aVFY!A%Qs0nP` NKCzuPL zn95m@bf|Qp+N0~8KT4JA=61xZLzr{scf_k7y4h*ZWy*QZmy2~~L(D9edbNXFJ-;)S z%xzgW`NGuFSYNm6CvTWa?p8~_p7Lf^&zqDKb!BVGn @Xe&ccCCoO z`pklCsXMdSwlAAlfBC^_lOKl)BYf54E_Yrpd1N}b0)xr($dq|^+5~pv4cTmEXBFZg z^nrDfH%yu3&$yJSSsDx1pKWP3mMmA>H`g=ooJ;%6f;6>X=Und3Jd!9@IKx#YO|U)k zNaD4UhJBkKT-V8&?Yedbt9bgsqc;l*&0^+oiKi#u&dHh0C7%Ac{pOVuH$Rk_+0Et> ze>Q{RUuyi4X9s3men{inGm|+V#5{2>@s8z>?Q-|79G+eEC%V7>^~ZeMozeX{wwu15 zxTYN4&sTggQP1j(Yx~X@2GeV1c Gv54Uapn91)ydp!U1$B#8NHuCbD^@Bg3?EHCU*3Tamc0aA>SLiIz z({(6g+{8U0w&4v^inzjVhMTNCyBTD~794geiSRfZ6T$J}u+yIn0`qiT$`m(7pV+}I zS*~cM Cz7XLO!zs7 zxvBf%`A6Z5mRls&>AID17RE8@Pk*po^)F*xw9}hu0?$ VqZ;r;MwP{mFWdmZQdsV{c()J~u1eEP(~)EnD+WTM*SrzPGt%871! zQ&h8Uj!m3jZ496O^kDhv#_x)X>MXbEy0)Qfc|=^vU0%PyTYfddc-Ag3&yDgWH;h z+1d|2a%COis@cf&J4|7>(9Nkmdxg%ePkA%-#U7z^>s`uJ=fr#7TYDs5`y=b|ysce@ z;R}yzrGSVp5v_8oCCWuNt^ROSt7c=@pNQW3VUy)oUraRpxp7uuxbkkPx#5o=Uwv{Z zt0>cSQ}%?|<~LF)*A;fN-84P1&asROB*d(L?ZD5iA1ZV|MsVw2KXiZVlk-u>BHjO& z{wR>Oy2G0P?$G-3#N)9ae(7EN_4Ui{**kI?woA|WESIy7{b%)t&vK78O|+9 C{ofOB_ur{| z^6l{DzbD?Nulal8?eXouKi;i7cDw%#V+y~)d&ZhFhX3*o{}^N}8~!jpvuk+6Xi>{> zH{RhL>z8WA`aKPO`U=09Ht8SuFTUZq!W@eeyGkcm#;M5ZKUy!oa<%@Y?*f0UUAXEw z_wQw?k3STzAIQ#kc<$jN4-NKN@TB(#r1vLW7CdI-^r!E__tc~hTy?drQQx%6_P4ED zAIf0yU25wG(_gZ#>leTHBc2k!JZ+!fo%;>H^C!6HKiF@+@@&4*vDsG|wm-NVT~pU> zdH>N(!>sd$$10?4@2RC7fB2>F+NH-&?i5y3%rX7KQd!QFH@87p{lP`fH`a}O>MyF9 z_WC89=dAe3SGLbNZ?Chh4X3}~Mzc9e- u{8y3v(G(v z{QblK>Vn_4Id$@S`}x(+E&3n-@I`!NzJ0@S`Jl^oOKgw-d440imc`%x(P#H79sM2u zkAHZbZ1IP4S6vg=e53!%kG!~C>@@ed{``mk&wqIT{K}p4Cok)F92I}@UG;IDC(r&z zKf{l_)qb}7fK)N#zq;Ogx9&Ggo_y6TQDEJouXUQ2y7_llb n-y-y-!si8CTvt|Ecp^XaBd(zG=2=pD(%jtNm8lVza1;flj}*E7Gr4KGf-P z`tfteF|}VmSdToL!{x)XW=+uZwbgnt6GYA5txQ%Gy!mNO&f>F1)pTCGn u)H;)L0V?Nt`=15;x&P&WW*0iGa)rpOM)mF79_|I-kKE9^6`h)Y7+?hoOKa@;d z{g;bLiZv=E!6C WC9 50u7w?%K_rR46fDi2$vHeqVOvB`Tp-fx+}@z!$V$!&iZh$TfcZG7qSW%Hld z<|N_Ryv#YzIb5dQO=1$AGJC~wrC7Bix6Xd_F3C*X^Jk_1!#$pFZ?!!CK4Yf*T-obu zbW8q9=Fd*6EBB-6vutzh2)Lw=VObTk^*J-X|Jm5C4fx&C4k|?w7ae`i92n>eL@c zLbtrUVy>>Y)avlz&FNJpW>rxLei TS5slC>AhBHNN19XB5ks5X4R+@|zjoBUVhqu-kMwB4^=q2QGE zi?wq5iS9jT7D&kF&wYRI(tBh6oqA?>Ht8Q-T>P#e{5sd`baso?+t=zZjrf1@=HaiG zFRj|%Hf{H}O>rCQK32VEl3e+6@!l6#H~DXlGw=AnsU~UZ!-=;}oM2eWwfgB*q5cI2 zio~Z&yPi0naY{*k`O8JizO7uc=%= z^JJEya@S$!L%Y;>{;~*_PU^mTyH+W ;Lo|3=s$=Frytx=ns+4;5W%O8U-xI(g~m B<9+mysYv%tsRAskkg?H`mEsWFl zY|@nNS(kY4>a>^1LVK!Rj#O>+H=g PmgYvkQ9`UR(O=ZQix| zsQ-q4Ha|bMMq I{YO^RMHL3LKAr z*%`a%?yqNG=R{7KAeI_)NBvSthP2pi^-GJLQ+^z9`G0A~wPxYJ*2hjowiYkjmKz&* zBfTs!%56ewiC;~B58vFV)?G3BJY4$R-!(Y;UdW|wnU^m=H)i64`;NcEPv2viQO(?| zY }!`S>+hd@`18)EwxOwkPv`jEw7u e7zW5)0M}zF6}2*1O}U zV(&Y@4E4DEx+Z4%{}bw4t6F%rz7vi;*4=fa*txswyXV|3*KMB0g{R9FZT=v5)#Ud4 zD$~-$Cv$!<@JmimtKV>L+UvgZy8Yji{l8s1c1|RCf@J3W`8p>G*|aW5>FsA$K7Fce z`qZ1+pXY0xv75$IaL#kGrPdiKmFtFceqPJCb^ra&g?e2T7rShFuC8A6ZGM;_N9CH@ z(!HT8W0XWhcivu5Fh3%Ee%_|Fs_T?4Ex+$*|KIiJy|~Ciy>+T;(;d}689ioR9J|NM z`?Qj;U#sC;d!B%)6ALv{T{-piS`*_AN`Kj#(389Cq3W}DI&7J%cP~u6cjJ1#e&&AR zCmtWtzJ7U SUsolSqKaFd-{#N_QJ&e4ySjl!-`FX=oPH!*czk7R(Y%TT}nBKbW zDHYWGRQ}rg %!+5FGKWQ@6K5Hb$ q%Q(y;B05=P9KH-s)OD_0F_t@7%A!7Y)xY zb;*@{H+6z_hG+Es1BtGolQ+f8VLGe4Xl?zSSi^nW9{rpDbpGAs;Hy1PzSYiuJNM@0 zvom7y_Fl-pG;#Veo@2($8$T-Mm~=LXiS0U~W){9c#4@1G=Aw0e+V#%$@9qib-;osB z7CkrKFy(K2`}VaJhPwZ~rhI$eV3M}duxIgHGp2~N+C^LInd2r^=lxM!AC>*&?k4x( zR;&1r&aKY7lrR0VRNEF=reSFj%y;olzPO8#sQsQ^`Jf#iI&%*meAc?KQug}xqDIG= zRj)SR5MjM~_xFPhj9cg3`y00Jg88l5iUS{(T<8#e${3h?_s%Y#xpB9iY45yZRsZD7 z%hLY$v)?=oG~4a_a)m|t^Ibpuu6D2TIi|PDzi{gQb {fqP3zI^SO zT{9 fEgzme0ao zNR>VR8EUtaTTnLpLJybo -xAfk?<2=2?W;9CQfo6WIaima^{W|9 zic){MIIMT`x^;5O;;)W<-?wpo+4g_xYqnfJ_GN&I3oW@jISa&yh_VLzV-{*vWzwwZ>Sv%|T z
-`SmC@XZ66^qJN(>nc|GRO{TmyK~8gPmgAAov2n8 zk$+0&b!KT@SyJ}r6HRZr@(xaHKIFTLEC03GkIs~DTI;rVyj<~UU8m!(1qGK+-cR&d z^vkF==6~TVF6DQ%RUr|#H{NFdCU-4U<=Ky{XFVEv@6@>2Q*N%EA!%Q8^j)U+ZoWOQ zC!Shl_;KY-)^mFOVPb9DlfNyD_{?+7C8J*ScwX<}?r)Qe69m*>}q <#47q=Nk zxdzvMUA6w>C3Q1(D~CR*U#qpkR_C7yU9G*v>k5B#n3C|D6CTaB6P5%UGlpKeu&ZT@ z%>RbvyS7PLS*le!&XTuOomTqcyU8lU*4n8Xx+2Ab=g$bq_3P9ARiPL4&qKHJ$t ?@zG{)e6d5Czea>)miX`V{)vMpPTF+lmyEO0ZV^jb2tAd&HY`mw}uIgt? ze82qKE#rAU%NJj%K6N$dti{K3CM)Y^e>=50_({%dtC@+m+Uch+Udw;;T>aa>S9Mjp zZrUbZ&;A*ZeYmIpyx+u$vu4yB{nc^hpV;EEB#rWv;)W$IPdvWa&RuK!WTCYDN#|=( zrTbnTo7u%Rb@9*jdv!xiZq}{|SG-_S_U81fn(43aml@jB|DI{c6Meb<)NfB~<5lxt z$hy4Wf2*4PX+WBTz~1wvhAt&L<5pg;zZq(G`rH*)>%w1|Zu{?kU3l*Ev$8b(oleW5 z&Kn-?-)6V!$~K?bj`tT&y?0}$hH>zBiN5TB`!A e(-c1 z&oK`3?+3oUTQxg=`j2hKhu6H{Hp}+R>6{OzO25B)@N|mY!q77@TTCCT=f6F>D1Ms% z=ZAs8)(Y3&e_K4k=fqkaiS0`?>Ixj^bGqKu4^v|+@AF&h#rIlBh^tut`}`Z3Uy^Na z^SshHACg)YH$(Q8_3E6$zUh+nkrDIv9nm)Yc4nHcnQWw9T-%K3_UQ{8etJ%I552J= zVsr8Pjw76mq0e^x2)V!XZ4{U0Dv9_PPec^kd%gsjuAI0r`*Mxg+T6Dfm5xvCy?Jr7 zuX_4(k+aJJp8ayYAA9uGnkzEZ*-Z1T&zEz4nx5DCw|SbVI*-l^Tf_9={b37J3t!&2 zrmAvj$y&p?+IOE^`Lyx&uI1mS#$CIwZFKti)3(r*vbcFqU#iX2_q3nd+9~ihL|R_< z#fDQ`Q=f)4p1Y`fk4qynR^@PzR(A4grq@Bm*QcoPX}_~y?A%~^U{_1%N(~d6Rq@*X z+vRtwluDVKA1yChKI^UR?T`qkPeD_I=bPmBzq=R}DR^t5^Gf|KRVpX>*9xUtp5aMY z#G!e$;nb#0d5wvV2kVwOJ-v5wmj3;hCL647T-~`@%M9e!6#e7qv$(!2Gu z)wgUrYd$M>M#b~UPY>s U3dCR;j8CDQsGz3%{Hybj!2DeUbrRR@qXajZDGfM zfA8{;k$4>~xa`i_yW6&Y*DjlQb=r|54Ij+bW*ye@S+)1zh2odZdyCnt`A%u<)xKNq z@p_W3=B@mdS?&wHzgeyNc)9S<(XiiAC;S$zG1_jTkW;j%Jk=+pD0ENz>NPFB_4=O+ zUWv^-u`k~#uAt!jjVTVVS xsfmX^RL~<1kTFrK6$Hh! lnE4O3o?&<}v zp1t$?Exq6O$cm}|-dzkdkvZ!dE-?AF-L$V~-adP3ZE$o(^dos2{UbY99l5 |o#&c6Bb3YN*GeKOatpSLvMxAm*4WnRN{$Nwra|MC;wZ4fKguCLXy zp3U_u#P(0~an;?s!^B)A&Q|fvSg>pU^5DpbEvvi5S~ew^S88(=K3Op}u=Yz=!RMM^ z^7qP}4d1hK?Xk^T93`Hk( l;?&`~>-?x3+7QT~ZRgA>XLphFXRCW7~_`G~v&c3j?TFf^l=FMw+1Eswg zDZhWudL5Hd`6m5U(EG&TDACgU*Y4V{nf_J$YtP 6Eu{B4!2iH@%&9`2-2Lqc7N7;!;k+ntI}V6 zz438b?EQ?bJxA7l@0oHkS~W^;mD!armYq|oetnrK>!PHtwzcwdaM AMeI{?@! dvwf(^FsPn&qX;;fwg*TXg+cXW!Y(bw_l!#m!OP_j2C-v-T-Y+WSu}I S~Lru3IO~URyq$Rk~VL{6yF+KefI8cHI6R`z<%{$b-X&ujR|RsY)x%znZdT|HNvZ zne{izRr%%Z({3<3t6jO$w^mwBepBB<|G6~|&DZ*Goc#Rd^11rDjh*W@*0rr!ut!Jo z`=b+2wcF)yTGw1$l&E9*-=Z>T)>50Qkk^m-_wQTOKmTuUci!y1dQ&%Kf1a$(_E$hc zdU6&g=V#B)p;}r04}^v+4`p4bD0eq@(wtbWsmr(eMNfQLKdCV9cJIb;YfbCu-=~>g zi;Hl)ezopyYHj$E;GC70=0{Cgvfd;mz2yo&tKhBQbCupsE4y`N-h|6IBPlCIPHlF7w~w$A;v#=r@nG22lv;S!jLt~H5dLn>a*Fq-Olmhc^ CiQ}la36n; z*vmIK-t%lOc6H5|FulAgwZVH%xW~5X8&~)L-^rIaZ=wFR Frx&*OV>#7G&6WJ$l_)Ym49I!Rkd^P0hlS-C2LSS6E9I z#jL*5lbE>q5OZ+slA05{IfrQMtTr8i&rf3EM} x5;&ze n8VLSPHb46$DF|n@-348v;^yIr$r*7QbTu`~6;pe>4HI>hr za`Y!lS)Q`lTKiSlRw$O8%fzqC@0IwI99jMCEb?*Fm%V-N^fmTf zE-F2d2T;1PrVn@qB2cf-Jd^6zw*n9 z-T&R~TajNiWsTO(y{PLGX1!KI;<>EEgC}~gKL;K9Y}I~Ty{giE+Ou})IcGjDy{cNr z$mv;WyXbDM`}CCZ;_n%@3DKS|F-}E`f(`z?(g@ph-7`hkJ9&AUee`a%XPL89pRs11 zddj- ?Dx)V aH&V?-o9F%+suMEEG$Bo_KTT!i~mJPg5(tW ~x+w;x;^%JllrMuw{UmcIHDQD-4{`(Nhoz`u+1Hd;OJUgu%D|L30M!|yDXYSiza zoxdtNrz!ePK$A>$+p-w%AlC&`p59Z;W$QWV`{wep;MzsmJL}UbzH5|Ew~SWzFPZ-M zxSd4N`z4(7vU1+4>91eve8`$dZePOJ2?w3oPTzVcnRt2b-0I`gzh>Xgul&7a=|Wpu z9@|HkW1imGm@H72@yTWJ8rkCh_3Q0|b}zj6S6xrq%!f;USJBT63vZP>8^wM*qSx#p zSo!U}=$qx|-%NXN_SI?Tixn|5BWH@Z|9!DCa`|kf+tL5^lK1Ql_TA)Lw_V|S(+WS$ zbDNTPwQpW{!r<`D)VK-3Q`2_~nP;9k!B^ZqDe`b|>?5wWDK+;Glqq`rwA@{> -RG5=XU?o@;Z0%zP4NT`lv}M$uqZ3pOd`z!_FV}HP_#i7++F6yYbpNkI0#~zCHUk zJ@TcN_wRi!$DaM|-#G1F>ifI0q7rXksVr?jxODsUoVUBPGIs`-UAQ#yzwU*({U@%A zrMmuNbNR7!%h!@3u1;S+t)j`Q#|}A#e?9tNC|mQ;RhgSnd(*bh4Bfr;Yx>uyNJ+VS zTH>c4XYoH5JH6I?!T*QfotOB$pC%T1M{BqD>lKfdym?cw{>g(4dkoHBN!Yr4MQB*R ziFe@YH+gGySywtH&J?`2mih3eujW%`ZnF HHcw%111P3{$I{`*DKI_kWYYKxet*wU6AlAD`++RFS^$HcI! z6kU@Kymaig?>GH7(`6Djx-4DJy5pqF{3+G3-A+n2T9+0(CI2xEtMK-ZJe9L@gWB=L zb^l6loXtO;Z?){GTDaPpch4VBlbrQ9UB~c_t wr zy8i^%SB^8^437LdlCQzlr^ChdE>Q6CZTlmaPOtcMcHY|B*eS~n3S4zxW_eE_b?32t zR&W0$eZ8Bu@V(#T5E1Q~CuhGqTYkH)yFE8xYq^t_mer2!-8!pI_pV-}vn4 ~kmG>NB3XY?^q+{>6&X-TY6BcRf4u?J(=7ovqwE=Vy3N+u(JZRn#+l zug5Kau9rsVCrWcpnRaBkP?OD`Q+HA_dv4lpJz{0|GSO+(NvT2XJ^jLEIv2q=Un5UCCfuq4VJ9h z=F#XoZQcV0zm<2+p4cE98p0{Fh@W$oL&_JHN{M4{ySGeb+iJ9$%j^kLr|0a0=Nv -_59dXt&uduX%CpKBr%QN>d(7u5GGK zKeXHL%#ol=l6RYncCpU2+r<3T%cM-!{9BGoxMkhu7fZe^EI;(dCpmqeYn#H;Ww}<; zUtiz&*|O;22KiSP?v+fGUcwN{Dx`VdlQH
8`eWi_V`~nWeSa!aFxgdY^Op3ofJ0-FFnSTgp$|Sa0)A zZfE_HM^+DGjrJrQ=esy1SK*}by589n6r`@ZEor^Ggtaz@JFLb)_PWRE4<4o8&&--p zrgz8ENGLOtJyX+ko9d=>9bC483=RtlVh+EbntA(-sa$Vp;4*D-?=>?gd{kFE`ek!b z<)mBI8thdJJRRpV>TmDdD4kUGMCU+ZEl)zT!LpO0M=YM)u9~u?)%M4sZOhoA`{Gw# z=FTlrJ3VJcet7z<$#b-h=}lf7FKc)=@AM|EsjOzAt0tz0r{7LBT5iPncUIF@9V>Z* z`X{y%TKKAF`u_7}l4IL*w$40T@ L_kEiC(k{FcsQJrx zOY%_v;`{I1?n@o}>hryI!)ND`V3*kv3$2^BZJhfhU* jQbc z#q-2J&=2p3lu;*=B9+EFJBBQ=hH=`-12y_h}*DcE>K*E_Wr~ ?7KNxZ(d&7@TzBJ=ZzzVw>V#V z9P*J^n8LnrNln!hpGC#X)XqrG5BBp=?|3+mrSIO`JGY+t6u+yOYiio-eR7$#qK&H0 zUO5L7oucOT2lO6giXAw7P@a2Re00UzvM=!m%Qmc@@MkH*-*T>5?^9g c@}e(nWSVn**M~*Z z1S* 5iLy>+gU>+O`y zM>7At-=orZpILo&ru=QrzbhwyKeRD)P99&tPucyG-7P!)3gj}TrTpkqZu;^eDe&-O z+Z)Ug^;`<_`ICMg{juWd6SI4c7q*>P@Ld1?1B;$34_;57{^H8qlbL-}oX_i)owCk- z_k3QBklY=UH{YJE(==X{YHKVs_w$<{UTz`s|HP&pX8v)7xy$*G^aYKOQ@XuPJ||^8 z1z&Nklznhpaqh!Yc2{*?%Imz`xh-h W>?=F z2@!L;{A 6>$jctjR<)55iJ~-D_ z!sC8YA}wL|zx|SjIr%25+iv?hS;pMIZilqmJkP@HA3moNt}t9?e0yZ}z3wyxg-*A3 z9!a*!3r+~nWXU#^f9QTNFiz%kqpbGC#Y?-JDjQh-tv{XTLnO0U$$a1J@UfQOA =1#esKCBNd%@h#o4QU7A+5`n8~()uZi>_RmYWt$b9 ztuLy}_A6J{JKkFJWKmB3?WQk{J1b9BeU!}1yt!X%qptocuP?ukN`zgTc zey*h4TQs|&b_=tOcHxJ9zEum4B`Q4JC2M0A!5Hthw#p)>z+*;TvXa@3?MWw>c`bGm zWS2Q}NAz8b_NC98xE~*GmdxW>Kf& DRs5QBwD%e9}dAF1PaqnXD@& z$eMF$KHapB&r~Bk&eHm_h_U?a*IvR$qP=n_TK;S}<9WK?R9&HM+T?k%-_#X%s@n%T zm-z6>?3Up>(C(SiYHJkUaYo~bRKK>_jLIcPvrm`rxU_1v$*(OQ3B`Gp9upS_s85^r zbBU4NDaplrAGsHm1sZPaxzOXe*!OqlyXg`MQtZCgjv*mQ-cH@;r@iz!xvHhID0JnL zYQ|YR9nUYgcWa5)jU6%Uzh_*Tbos=QSTSk2r<#f>v$TpPFBNjFWuLW0wazHhto7C< zMyryu`%XSu;&H`fv-cD)0d@7R*~cFJWZ8JR{^+?&o{yKuADPu~%%}F;O@H;SSxVO~ zb1E%=cW|zspe^gGvX;YlBGzC3d2sup+(qoALU-)7mVepfb4s5_-s!3Dk~!Dn8&A~> z>{Z{D8uNE{sojUef39b~J>m1t&G_Z~b3RpnBn0c5PS(uYT{*YJj(fwTN9kV#(#7Xx zxb58MZ?e+7V6MO6`u&efR60A|laCvI>^r&Wk@J?@od-Yu{`tFMhQ!a+JGU7s{SMN5 zrJG+>n9p)=5^Gb&wB=om%)gHQT;>v~$urkLif_fVt;<){ZvKD$eZ$9$;*K|`lq_Ur zeu)WZItz66L~|c+y)CnDU0!xnMO5g!JCkN|XO+EsV{4-AtliF)`Lnhz+k25{oTSX| z?R(Ns_G~pjcjEOPn;YlkUizIjo8iZ8RmJt{oc5Iy$}1YWA1QE6I3#@MseTH-yZ$Hd z6=h48|5x`vr`)vlyUF>#2M){4`*fpTYZ3EXKdUzHi|hWzeQC%rzcv45%JraMa_+mo z{SLNsTB^H9gYVI;3gtdWeH$eQJrm*Vx!bn?SFv@t{JnUO+1AOAnI^@1nKYDK6zzzY znevM>%Wpy$)9W2E%TGt&U3X=}(u*R(mQ#<0oDTh^A~eg5>3E%(V@FAh-MQn+GSc&Z zxLk10QQ3c0$@C}d%|$N?ig!(~_-*nvG$>+0$j= |AkR!ljjizYCA z%vF1sCUy6h(W7Vizc(JsQoiG}e~0kNzDtu&{}asi@Y5DQan`9i*Q(QT!EAHui$1}> z>=iEV{JP)7u6)kVYNLz0%BOj!yRNWbc_DVeL!GlHxB|H!3TzZ;S?#RT^6&cM)raej zrKV}x-Mp&!iuLv8OkLl@kBXW_S8jc|hAVpi8hg(+6Y1@0K8%r*Z^iFYQ=GI?vtiq2 z(}E!FM@L AEc4Ri^x@y0KY2FEo$za} z_Gl68JYB-N_aMVB(*(7w@b^lEMo-%rQF`IeD(_i8!+ vBJi*X!23bNyB6KIcT<4f&ko$v+sk&iA)?yZpoU zMYAtTY&v=4U*oC0Etl(lJ&(4LvBe~LVx0;&q$UBzqSGg$G z6m|XUzi0QanEqwBxcs5vl`yrd%O4(gnSW{C{-Yk&tNiW%cD$DCcy-8i(f-Ai8y<*N z9utt;{pI}B9jQglwpZ_E1+z@KrQ;K{KqZ#(spTi8y-PKs`#zgF1PW!n)SUG5xZka= z#T7dwzWZ2~ct5qO?%I2D-HE`L!I@`vuXmWfG9_SjrJHx%w4lSs4|GphA^z6c%0BJR zd4AnT2kQC*&sw#_YpKn= {;cm{G8Z#!(B<{WY2<)za1Dg-wWJz zICa}|r`+>J4}N@Nc(`9?kJrQg!*+o)E-IfsY-A`lzxXcK;g6~ltJ^Ys{wZ9H2`~{p zDK_i&38C3{Pe@FaHSFw5nbRXN{X@swCr22wHuwDP>Hf0)$gyACw|ZLs-aocgT>9Vt z&-Oc>{n*2(RaBkCmw0QBNiIV*%M< _$&?eu}(_|v2DF6Ln zo!YL+9^71Sn-v8&|F|su>qz(M$t8Cjn|}Lny(qu ^Sh>AvE;$5pO-D%chT?x<`LFRbRjP;{| CYBuklJwqh%?dGrHT``oHIh^B1U^z`W(waB6xY@4&hlAUGL}WM z=Hkf(OPp`W+nFBQ)@EDd)be)wk@r6DFV3^+-0gSiuZVd@cfkGNd-MNx&wKRp#7oV8 z$w{RmLO)$KmBNl|<&=KuSk&<(R=v~1?a-m>B%hy3Z=$dG@JH+`e(qQGo5OUX^rM$| z?c6$MCcTSNnlk6XCW*<8f3Dm&@Lzm4N7<&^wJPAj_2cJMsvN{#D+hjVbh6+|+c?*E zdCU#d^vK6tOF#8!eXuU$&q#beb^g{R76KY^HD($A_ASq~o3p>-eYUq$>Vo}ypBJ1r zO*pyiTwm_(Th=>^O^Ow7YOAt{iciQ`I6F> b4QpLm1 zRxY#3+!BBKfv|a-d!sa4akk!h<8x=%@3jio+&TBSyP-+4!XwQ&h6cY?irA85OAhU6 ztUu&k`RGog0#~-$9Km$9hw8<9=2+}Fd}EKrb-`Tm+0yMtUMvb!)II*(k!Q}86-u*S zwKVUZVP7||q9J+e9H!<)QA-Rn@5#IG3G`CF7WO7WxZ-s7oeJ#=;hy-DcT>((svD-A zORPQgao_Qsll^S&thTi6-gwuTbCR;*yRJ)p$?R3~>m!b@eeJW)cTTd<$864%3;ud< z@)4Tz`DFU6Ki1E-O+IVJIqjW7<+Q?W%g#^C(f_CVbJmHg7rqpm-R(5LyXCW4W7xlQ z8K$4Di^^{6-fB1TGrZ_LrRY)p?B2imn>$74il0-dv`hEzUHRq5$=R}#^;#_7y=t5p z)!Wvl@$5>bl3 Z*^<`=)npKeBO8 z!0OAtAN6gHtgoIUT7GoXu`@PHedO;(?!I_#)xTEjZu3L_b;Ys|%Kn~wx8B@hrNhrJ z0=E*E?oVm|7~XpMe#&i&M2okz-wc+CywxziWqtQa%C5)~Im?-CC;TqA^j sV{7 zNokD4zG<^10z*4`zI#4eSvFBecgt~g|Avo;+*>#`R;GO`km(Wm>R4oQ`SJm~A}N7B zgDR;5%1@M!%eg9_QP4Q*d8}elL~G~c`kF}@Ehp8UK0f*QL1oO%K$Gy7GcK#oT`PR_ zx&Mrl=4uO#&V8vftPF5Tkt?68!PIZP^T^Eg{Yvc9PBw9#^lUxDYEp3Hz)FL%KZ==3 zpC-K5l=BfNZ~7d@?lJFW$(+v>f1W gm(C+*|)$3C};Z_LSbT$il7#GOJGfjD2u)T9L>Rd95E?VopEN z2nma3=uy#j)7kj==(>#ZiK?-U>)pD!o}D^m@!0Km^OLj7=A{QX*_=;Jxqo3#pUB5g zGLCzACKO3=dD>q6KKYmEk~xchFS>TFX4CnMw{KO-g4BEFJ!!0)$Z^Wr^TmFJmQR6l zzdef5-D{dA*7UY4WRcv`*j^ww-);6Umds_x&mXVvuHApArhopV%L4O13nu^E8Ml7! z1?_!v#lJ=Ev$^#=`AMq4t>^zZYac!2`t|4hr;Psd7v{8W@xNy;{&uo4SIb?o&vsV( z^6%NZSKFKH<9fG1N#z0izbyxX1N&!pq=mV)`6kpvrGD0P^h FQ(3q}WODP|OCFQk&g{Pb?wrS(uTS> ~sl?@DR&Y7g{y>@sYFu{`p-W)Q|VC*ur?t&1>iM zZ~^`0hnHure9+q)GO5?<*PVzf?Jqt(RTc2)o^iNU ^t)Iyx-mh zM;A?Po*yx>(6jRRPu-gjT5nr-vAlEM`{!BM $?*tRL^;q{B5CLH;cjD1u}OODwexRo@+b#A^6j$#FPRYC&sM{AiSNZ)_mlOt-p#kTIPx{m{R~u;=QMrnzS4Jo(Em z)RxtGFJv)FUQ-qr`u*qHosVO`yg6GkTQ@WAR*7%&vqw=^%=@|>HuqK>^xf3b|Cp`d zk uyHL9%spUyhQWr!OCLs*Ajjcdhgn%HkIDH+@eyqd4 6E zFIO~As0PaHS?}G$H+%ETo1aB``*t7Ql=1rH#L3pp_beANefigAeY#EX`lIV+EpNH} zHeamVS6+5zquHmP!vW`aJl0KbeDK*WYHOZS^@V*OUa@Mp?=>vimzVG*>T4$7O9i`( z`ZN1t`F71zYnCi&sNUghKI`Jn6aUg@+&yt@ZJWP JE&+hYQJ>YICO8IGU zzxe6RC3|L0DPQ=hT!X7c`~2fmwIBRNScQV`HRQawY+2&* }!1T zid!{TwY%+{bSqwF@rrpTa%FOV2M0x0NV{jPw{**YthBr|>UU~TbVZc<*6VVMmzVA< zYvSll-Re18Z$VQ*HyP`dnD=G5PP62iW=*QeN; zwN83%7 -$IK(xR4z$Xi+LG{1)GL*x z_QsoNmN?-i_TzoauO4yWzI}6BW#b}MBfiQRaUusRg7W@#6>JuG?75@zfyB{@BK1XY zW8VH +*Y*(O4G(I *-yUmg;^=pB7J=tR49CyLOPB zM6lmed0p{S_E!4k4`kU(7O5XUdwO?@dYr&NJtJe0`9 X&DsV%drJuOc%9{V$I z%4(PO3qH;Eu <8Q42#2lys#`N}^H133 z`L;lCrSC1frv~w}*B;Q (tant5A!Np95d zUwmWzL&aqE>SU9$JQ43_Y4(rfF0TBO`hC-%*uS1JGPS2;pZNcO)^Ya1`yUf)JD$zG zw_Sq8T<_w_CDZlaIRAN5u-$;^Ph;EPp548L{&n)gvNw0ko_UFbC-D&1*&A{5&TzQR zebqj_qwYkPhhtZuz1FP*$yb!G9dr{)ESUdd`{OmcVl56e+^Gpzou?4vU?cs5?`_<~ z5P{z*%3)ppTPk00=u58%J$_SjzJT@9wiTi38-l-aWjP1^_P)?@YQ6Xsz2jT`E!n5q zDQ%F@yeluXt5r;SVf9gWroC<1!O}01lbCH4GiKj#(B8=PWyt|=->nbwl9)O7UUA|6 z_I7#Ps}nwn+-n)HC2{w<+>~W)U%>T|%Prk4hv!lEaSqM=Ksjf=?Q cKO7{05{L=(fki`b1P#@laG6KhjJ#A-9NSUDVyn|?`xc% zd$^wSu(M^9X^qOboO$r`iLek`Wu@hTZx;Sy=+&H=5S$dZ^E1n_pAzc(qEF19Tcuuq zAV9QIY<=aWb{^%xwH5Pb9XLO+^3%aGq3W5&2bsBQkKM31(~xkSrO`(1O3`iwj?Lz= z$w%0?o<6vGqvNzUYKa`r&cAP;!jq8}Rvb9d_ei#Ef8T{469NvZ^eukOoM@79 VZZh})$KDb*M9tA zbMJS1;Inx@1d^t#j(%j@;qh_T4*Qh)ZdOB!Lv_k?xgPF$aLYrz=6}rlK%0E)3Kgk^ zhj-u4d-UQ#;$9_*e}Zd2iwl0SJNM6Nuilf?iF0cgY+t>)oXuuO607x}Z?|>b`?gHr zn6=*Ze}h)n_x`Jn*Ih&TLN;z*l=ZCC #JZal-z0k^@SzhlWli)tiF6g{^7^I zM`qXW=oC5?mYRL{NuFvhXn(n*{x&<$kC|>OdG=q<*x0!C&DXnbg`QD-8L8{%FHSu% zpX2_5*rGXeM7=c^MZZ|dbh*w{=-yrNuPMEE?Y>G+lHbhlIwyKVz14fqNz+X`mxpwl zR%OV{{pDG^oN3jgoq@@kGkJdarLSyzf7iM%|G*NDf9n_Z9I%tv|9^Ysvk6Un6Ko|} zdmcRXmfrbyc1Pv6!u(Q~xw|$dJogVRUi0mzT`tp!1b&U(IhvnqZhZ`RK3~sg>iN%4 z%;vreJX@-mm&;S%ty6Pm?dAijGTSd1)#STRV430DtisP;C%19i;x%W^C2O??czrNG zliQmin(s1ao!ZS7mXFy}6%01&=6%~%#vz@%TzFemsn2UGugH`7HMfoC*1T1YxBgjU zcj$bpw%p}O39AnqC*9hkz3FXZM~j8Pzk}Zo1uCv&eOAq?!}ad@j*E)NH#Pm{db!iz zLH_+*zWp+O>dV`+=7>k`;JP5=C;iV|;`x@0^XhKDA8vMKkCDBp7e7bhQTutZimR>} zX&=|_5WDZzbAR`-9r^;_xznE7Jxo5b(Yox<;UoXme=|+oXK-o<$Jv4jyKi ~ b+Z(>+ =z z{M-+6zS-CAb+~l<_gV9R&-bd6-34v$ygtz}&u<1lzuTG@YAMfOK8jd>AidY{_l6p= zBOVN`A0FP>ym(pckvs8xalMsJ(=&T#6ee#w;k^4tZK#DX%LBz Nu~$v zHS5$AtVH$1_VR!KoL{tezsx&zi`g?b#EG=IPh4_D@M__s^rSWSsyUvVT@~Wz@Jx0o zhq HRDxd28@l>Dhvnq$dzLhIOm7f|rZ`Cvo+Tx}c>ef4b&tt7NZwJ$w zse6Lu>@O~~s53h}qh*@GAM+cW&)khB6lrWf#ZmR{^IYrlw!?3{H)z)g&&pl7VqR^> zj|E#+JV_2JlG085&y(J^(LR!E-&3z|hg4tO`KhJ#vs3#gw~g%|&KjZGt@E@i`Ob0u z=dNpbRdaspo96Dr;RpY&c*4H!ob-w(wLiFiWldSloLKwAu|nkPPxJ6}={GJm4KEmv z@0=tqXxq+V>t5K&@u~DhL}8R4|F8YkOCIg=n$slAU%I?ON%x1{nJ(@RaqRks(&k)@ zUEW%BLGj$7YTFo|*@vS8vL!Z17|gbLqN{iQ^xeCBGcB0w?%kNbGH@2leY3~;%Ck-# ztP``-|HJgpN-F-7~Yyl|2MZ-?thczM-xsn)~e7S6>T(W82$ BFmw$~({asEOR+kG?ps za_*hCp0;&?Hzp-Etk1vMRQ`%5f uIq_;t%1Tc=Z> zJ%1J+={jHV^|oiFVEO-#$`=d{XOtY1RSUW0V6&y<%x}T(nHy_gsQ-M}!*i}ued3|r z?!Rwrx1P>)`O>tfSv%KVT2}YocE@~KhR%CaZkn6__^?xUZs9|tD@~D4l&+Zx`snRl zJ)ydIn$6*t$2ZBUH#+fTJ{5KnJ(L>ys>}O^vcuNJG3*PArd`W^XJMc4!6bM0&Rh2; z?b+p`w*U9R-}mIS!k-=f8(Y?Can^8>esE^fdvi6 fF@lkL`Ay=z4d2mOk?f<@F^8mnPS@3vH8+Y4l^Pe)w-6|F6D< zw=zN>#_TH-n0sQyv)1C{acr+Q1>GnOIAYdN`}e`q0I&G_H`rNZy(^k)9xu`~XL@m+ zA;$hloS_Me8Be3!x4JD1?-}K1{hafm{DVSG=aVf*414!@38a_{bJr+FEbI~#{P18! z^|fP-lCeKoSF>%4wcDhV_~zkFQ|Iefm!4TG^`~^D?42|37-JJY>|5G*%H;i-zRlnD z=9*Uj`}<7$wzGK1*}V%l|2TDPD$C|89v0Iwv{O{s-^oZFGUnoNzjLIY$z$giZiag$ ze5dC%wQVdA{;eos`_$cJLi9nWZ_a;udDfo0`+;-L-2+b(Kdt3?=6s~y{eW-pjQ Dlx{b=E8yOqhdKiD4{c}Bizghk5y=5!&zgKRke-pQ(;7!<- ziAye4b6Irl*K>?tuQVgnN0zIB??9;Xo28${n|zr!6udFr@@4%&r=}x(hmU^v=y5H| zq?+f~{f_jF 9vLSD>we-_PL~U z!1Z6GZV;2O>TKb4zazJob7Y*;y_ES%{M(IH-|Whky7KhxQ%kjP_P0n`wdv^RH 8!=3B^AO#k`G!-_SD%L`5dXz zd#Q5g^5x>N_cQm}Hs4)dmj5z$p1J+@nplIWf3tE6U+syxu)osHy|~!@_RQzy=4GX4 zUrWS>Kbo+idrEEV^@ivvu|Ka$pPoA>m*;(J^#<0~9TD8N4T>hhUo@HD-~AxIIPJXE z0_#1$j)|;|+Iw EcfF0XK1@uZL4mfMxpDzy_pN{1t-qVjh>$*!O;DiyE*FTw%ju3 zmsJMRo2sW _ZNwx^>(*6Bt#Tx|=j+{5j^UlsTet*hT zHaqx9_{-kv8;3s^f3C_FpA$K|dX;YL-;e)R>vAUi_~d%}Q?%Z>6SqwLS7yBR$bK!c zW5eF0%FiFp)~flszh2`l>!JRa+jGMF0+sFzlRs?xmM^pFUuUB$ZtHQXGf()ba_4m) z(=Rz|ZocqsxBtWZqhVUu<4aOOvn2AI(-nfO_@`f+cu8mtYv#+VN~>5qum95cG2zuQ zhHJgCF?`;4W;ZH5KGM;ub@2&zVP(d)3m TrI3pHY;h%C~L*hxJkk zWx5|y)^VMPI^#9fGTXUr_tzNRJ8J@RHh5o^G-{2}+4lPDuKdzp34cF@h~``>-Sj!= zNpD)h+V$Lbb4=_PFh1YWk)z3MzbLp>RGDp$%c3U_-5Zo2h;DYtN?i0Hf8h^vY263M z-z~a!ll9w8xus?n)!BWHW<{@$Yp)TikE>367O?5i+f(}IH#ASFT|T|?a_;em^GaQ< za_>3SCv3K!S)0D^>b*H{GPAcYon|q~_|4)swR>l@Pdbzu(3!?{-|SIH a9lZjeL~Ht zXKy=R=(0`JQ;A *TNGd!6T4m$BmR!_C@4_nE>s-v7Jr$d!MO9hOD0 zwF%Gdv+>^8^|Da5UTZ~|$(8v(OFU*4)Ow%ZDLJh#VgB`*Ra2vvdC$)`$vbyJ_-4z` zlP*Q~CSG+@x$yPb2FD7cvtmAtGk1Kb=&=0ZU_C4H +Ru_=O%77lYCLKBz(op$kHg!%6;c |8YY#Quc!>+jB8v+dl>`x{l)ze(Qk P>9pGSZy6khRY(e4Wz5O$C3AZ!_PU)^*L8>o@zYOLw_ARMSG3zk8MU3RYh|QuoS0 z%`a%ryd&wSe)=4^Smzq_I`ywur_ biY|H3-$oKir>mRCv+dCgbX9+%|n(X0EuBF^a0QP#E7#kEqS zUN){h@S `H!gZ)s!{pb_ff1T-+zY97xTU(#~rjb^mxx?<0gOgZPbC& zS40w2l$&q ;5XAS<`JkB`xyG4Z7Xa>D78#%4e!(Q1Dapj3;hu11HaT&vO5Y z$oZcu`A s zUnAH0{ih;UUaN}Hn^{*jeZS9C&G7#`@zwd0mj|7V(D7V&k^fj Tp;R%j?RSTcD{# 2LCa9^>Vv@gXe|~u=aq%gJ7;@p@Put!`l>5r)zO5*cU$v%Mb3EZ zyofXw@_F^)>DHwtU4N%K_q|i;Smt_fW+>~-$jZv1)X+`aHNzD%v$Q-tL$_O}m~v@G z%I572x#^nJ(C^4ODO5^ERr#5jNco1(pYt^4X(a60cIj@wf4|zp390`lndGk4y}0wn z>a%A8a@WY-xD*h7f5X#X*ZyofI#c!e^OaA%H+6}Nv0R8@Ic$GewBz?Ajc|eY^W(By zj<4sC*Mt9_J!=iWB6WuO=FQTtk~bqGOSf9y zbl7aLUB`2+Z&uoW=6gHWtjaQ3yCZeUh7AV!Cm%I6{ZX)7y}j{$qS8szH-hJQ9%iWR zx*&1qu)e{uw>9?buP+Wbdva5W`mV3c#W`7$XXH0zI&?>vO_;y(ok{22x3|qhQybb^ z`7~entdE|zI;<;oRZ8>SiF?(yu3+(c!>OQnQIB7*+@kul*`aqyd0(wMmwj{z=ikUT z>xO1{L28%a3B9$Q`@1-8ZN1g?lsER)v9({6+aRPp^?q1bTw3C4QJH(oQ;rmM-%9zi zV^@yAs&`EK4bN|sf4ah>EO {4O5J3x16xjU`D 32V0l*YB53%cYoh-!<}2WjJ{w?WAkW zCyfvVZ )c`WN+=(pt}EPMRjNY{T{K z>B9LHW@}o^-fR|Gyl!Gaip`4?bJ=Z#`~~dyC-4~DnR4iq%Ir1k5)R&bTEE|K_13Pd zrzROq|8hv$ect|nMHAIBeSU`&|34zfcG|JYdD4UnnwkM}%zWRL{m%&D;*4D>RI+OF z1exzlv*+(_cHLiieZ%TJPyHEx)92SLI4C-6uU(|=hjaORyTs%7s9oj%bTj{4!OH`A z+tyzW=JGi*kN>~)&0|t?o*wc(yF%dk 8tkRVlHzyzvdO!5>?$v zyFa^sDi+T> 3MFQoAlz0i?fYPgjyG$PrRtT$~^k5wb?Brx7%6o)(J?nv-xSh zkJ#d(b$0tLsdkf>Kci)XR`^V?zGU}H<7{G5!jaX?^Dq5$S$w`uJp25mOB3I(u=N%Y zkN6~bdpq0heYs7$mY8UCU0JHE9;edt)9q=kNU-aNY1aksykfk_EE3#WV(s>e&*$&2 zuXzVwU$;L}{a30(=3(du(+Y;-p6=v`Oo6i*7b2dxr@OS7q#XP6hNWP?f9i*j=69~H zNde^*0)Hg`{PmC5J+;kb_f#(96~R+99C8gB_cF!Zy887FPrlg$ }(KT26Ia zE3t;@ZMoU+ ``P&er}FoE zcao #MLgAaBdn)hzM{8yKIk1bC8 +^Fh(Z~MSWKH_uF7=RK&rkAgNVE(8#j{c# zTf0_r9kOCvch*~Ax?ZaM!Rp6}3j{V#oqu)NGN iAjj13ce$ zxGdeDKP`~$K=J2Y$G(+)J@DXpb~U@!-~8{)%j1l<{p;0@zW1P7=0Vay79$UZYNa6d ztLxliej7M`=@bw?;dr3q*#!>?r}vEOH_Tth*!yN7S35g@egc2vvCB91^Ea`5<1Da> zIPs3%^-299*(2$P-Pb&dK7S+G{QEV|<}C(RY(8DpZd(~& CbQ?^5{zw55;rdKyy$lAZ`hTW7$CqverIw|Gb)m)%=;>+jFTc)Ob z7y0nPXI{PF>pyJgoYz=azp `sbqjvJz~OZg(S6t|YHu6}7yX$eFs_*>b}N{lCxUD}Mi}+mZ1` z%;nS34?ZrRl>W{BtYP1{BH*)wd9~%F#N}LEuC8J?vtxABU4L-xoBrv$(4FlY5;_*F z<5#-$f`@-n#Xc81Fp-t nPCjtHQ`!61PdVgVLi$JK0P~fTx%Ol=$e%BJ_#x>WiR9T YM^=w{^7&3A{1@?I zkY04>lmEK;4C~KKNc{Jz*g2WIeV(%H&y`b_h8X_bGM~pG`%?W`xgQ^IM1}mfbdgt| za$dn?QR#a(W1H!F=1pqZswT-ff0g5gPYa%SUpVkI^M~~O?TmRZ6aV{NHYtddwy^H; zRI Y0e=*pUi3rdd+cT8JSD{+Kt^VErH;rz8-vs`p~rS5x5vz`9v!8)sXfu~xw zb=_`ZDN)XxH6~Tt4>>