diff --git a/ChangeLog b/ChangeLog
index 1b63fdaa37..86db27c2b7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -16,7 +16,10 @@ phpMyAdmin - ChangeLog
- bug #3516405 [display] Chart title is getting wrong within chart export
- bug #3517021 [interface] Header links except 'More' hide after closing dialog
- bug #3516817 [interface] "More" actions in table structure
-- bug #3520107 [interface] Server status page: Incorrect dialog box title
+- bug #3518484 [privileges] PMA_sqlAddSlashes() does not quote the table names correctly
+- bug #3518983 [designer] Error messages do not appear in the Designer
+- bug #3519747 [interface] Suhosin patch warning incorrectly displayed
+- bug #3520107 [interface] Server status page: Incorrect dialog box titles
3.5.0.0 (2012-04-07)
+ rfe #2021981 [interface] Add support for mass prefix change.
diff --git a/js/pmd/ajax.js b/js/pmd/ajax.js
index bd23dc538a..d67af5409c 100644
--- a/js/pmd/ajax.js
+++ b/js/pmd/ajax.js
@@ -52,6 +52,7 @@ function makeRequest(url, parameters)
function alertContents()
{
if (http_request.readyState == 1) {
+ // @todo: replace with PMA_ajaxShowMessage() and remove layer_action
document.getElementById("layer_action").style.left = (document.body.clientWidth + document.body.scrollLeft - 85) + 'px';
document.getElementById("layer_action").style.top = (document.body.scrollTop + 10) + 'px';
document.getElementById("layer_action").style.visibility = 'visible'; document.getElementById("layer_action").innerHTML = 'Loading...';
@@ -75,14 +76,6 @@ function alertContents()
}
}
-function layer_alert(text)
-{
- document.getElementById("layer_action").innerHTML = text;
- document.getElementById("layer_action").style.left = (document.body.clientWidth + document.body.scrollLeft - 20 - document.getElementById("layer_action").offsetWidth) + 'px';
- document.getElementById("layer_action").style.visibility = 'visible';
- setTimeout(function(){document.getElementById("layer_action").style.visibility = 'hidden';}, 2000);
-}
-
/**
*
*/
@@ -103,17 +96,17 @@ function PrintXML()
//xmldoc.getElementsByTagName('root')[0].getAttribute("act")
if (root.getAttribute('act') == 'save_pos') {
- layer_alert(root.getAttribute('return'));
+ PMA_ajaxShowMessage(root.getAttribute('return'));
}
if (root.getAttribute('act') == 'relation_upd') {
- layer_alert(root.getAttribute('return'));
+ PMA_ajaxShowMessage(root.getAttribute('return'));
if (root.getAttribute('b') == '1') {
contr.splice(root.getAttribute('K'), 1);
Re_load();
}
}
if (root.getAttribute('act') == 'relation_new') {
- layer_alert(root.getAttribute('return'));
+ PMA_ajaxShowMessage(root.getAttribute('return'));
if (root.getAttribute('b') == '1') {
var i = contr.length;
var t1 = root.getAttribute('DB1') + '.' + root.getAttribute('T1');
diff --git a/libraries/advisory_rules.txt b/libraries/advisory_rules.txt
index 44fb50ad1b..c204147d88 100644
--- a/libraries/advisory_rules.txt
+++ b/libraries/advisory_rules.txt
@@ -77,7 +77,7 @@ rule 'Slow query logging' [!PMA_DRIZZLE]
rule 'Release Series' [!PMA_DRIZZLE]
version
substr(value,0,1) <= 5 && substr(value,2,1) < 1
- The MySQL server version less then 5.1.
+ The MySQL server version less than 5.1.
You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 even more so.
Current version: %s | value
diff --git a/libraries/common.inc.php b/libraries/common.inc.php
index ad5d613279..82cdd22bdc 100644
--- a/libraries/common.inc.php
+++ b/libraries/common.inc.php
@@ -811,7 +811,11 @@ if (! defined('PMA_MINIMUM_COMMON')) {
* @todo should be done in PMA_Config
*/
$GLOBALS['PMA_Config']->setCookie('pma_lang', $GLOBALS['lang']);
- $GLOBALS['PMA_Config']->setCookie('pma_collation_connection', $GLOBALS['collation_connection']);
+ if (isset($GLOBALS['collation_connection'])) {
+ $GLOBALS['PMA_Config']->setCookie(
+ 'pma_collation_connection',
+ $GLOBALS['collation_connection']);
+ }
$_SESSION['PMA_Theme_Manager']->setThemeCookie();
diff --git a/libraries/common.lib.php b/libraries/common.lib.php
index 09ca2c9fb6..1e0a0d2a6c 100644
--- a/libraries/common.lib.php
+++ b/libraries/common.lib.php
@@ -3709,8 +3709,8 @@ function PMA_getFunctionsForField($field, $insert_mode)
* @param string $priv The privilege to check
* @param mixed $db null, to only check global privileges
* string, db name where to also check for privileges
- * @param mixed $tbl null, to only check global privileges
- * string, db name where to also check for privileges
+ * @param mixed $tbl null, to only check global/db privileges
+ * string, table name where to also check for privileges
*
* @return bool
*/
@@ -3746,6 +3746,8 @@ function PMA_currentUserHasPrivilege($priv, $db = null, $tbl = null)
// If a database name was provided and user does not have the
// required global privilege, try database-wise permissions.
if ($db !== null) {
+ // need to escape wildcards in db and table names, see bug #3518484
+ $db = str_replace(array('%', '_'), array('\%', '\_'), $db);
$query .= " AND TABLE_SCHEMA='%s'";
if (PMA_DBI_fetch_value(
sprintf(
@@ -3767,6 +3769,8 @@ function PMA_currentUserHasPrivilege($priv, $db = null, $tbl = null)
// If a table name was also provided and we still didn't
// find any valid privileges, try table-wise privileges.
if ($tbl !== null) {
+ // need to escape wildcards in db and table names, see bug #3518484
+ $tbl = str_replace(array('%', '_'), array('\%', '\_'), $tbl);
$query .= " AND TABLE_NAME='%s'";
if ($retval = PMA_DBI_fetch_value(
sprintf(
diff --git a/libraries/config.default.php b/libraries/config.default.php
index 34a5fea6cc..6bde9dd7a4 100644
--- a/libraries/config.default.php
+++ b/libraries/config.default.php
@@ -2638,7 +2638,6 @@ $cfg['SaveDir'] = '';
/**
* Directory where phpMyAdmin can save temporary files.
- * This is needed for MS Excel export, see documentation how to enable that.
*
* @global string $cfg['TempDir']
*/
diff --git a/libraries/tcpdf/tcpdf.php b/libraries/tcpdf/tcpdf.php
index 7ce0329e20..c0cd6a26d7 100644
--- a/libraries/tcpdf/tcpdf.php
+++ b/libraries/tcpdf/tcpdf.php
@@ -6299,7 +6299,7 @@ class TCPDF {
* @param $stretch (int) font stretch mode:
- 0 = disabled
- 1 = horizontal scaling only if text is larger than cell width
- 2 = forced horizontal scaling to fit cell width
- 3 = character spacing only if text is larger than cell width
- 4 = forced character spacing to fit cell width
General font stretching and scaling values will be preserved when possible.
* @param $ishtml (boolean) INTERNAL USE ONLY -- set to true if $txt is HTML content (default = false). Never set this parameter to true, use instead writeHTMLCell() or writeHTML() methods.
* @param $autopadding (boolean) if true, uses internal padding and automatically adjust it to account for line width.
- * @param $maxh (float) maximum height. It should be >= $h and less then remaining space to the bottom of the page, or 0 for disable this feature. This feature works only when $ishtml=false.
+ * @param $maxh (float) maximum height. It should be >= $h and less than remaining space to the bottom of the page, or 0 for disable this feature. This feature works only when $ishtml=false.
* @param $valign (string) Vertical alignment of text (requires $maxh = $h > 0). Possible values are:. This feature works only when $ishtml=false and the cell must fit in a single page.
* @param $fitcell (boolean) if true attempt to fit all the text within the cell by reducing the font size (do not work in HTML mode).
* @return int Return the number of cells or 1 for html mode.
@@ -6855,7 +6855,7 @@ class TCPDF {
* @param $stretch (int) font stretch mode: - 0 = disabled
- 1 = horizontal scaling only if text is larger than cell width
- 2 = forced horizontal scaling to fit cell width
- 3 = character spacing only if text is larger than cell width
- 4 = forced character spacing to fit cell width
General font stretching and scaling values will be preserved when possible.
* @param $firstline (boolean) if true prints only the first line and return the remaining string.
* @param $firstblock (boolean) if true the string is the starting of a line.
- * @param $maxh (float) maximum height. The remaining unprinted text will be returned. It should be >= $h and less then remaining space to the bottom of the page, or 0 for disable this feature.
+ * @param $maxh (float) maximum height. The remaining unprinted text will be returned. It should be >= $h and less than remaining space to the bottom of the page, or 0 for disable this feature.
* @param $wadj (float) first line width will be reduced by this amount (used in HTML mode).
* @param $margin (array) margin array of the parent container
* @return mixed Return the number of cells or the remaining string if $firstline = true.
diff --git a/main.php b/main.php
index e05b639787..69fca306df 100644
--- a/main.php
+++ b/main.php
@@ -374,12 +374,10 @@ if ($cfg['SuhosinDisableWarning'] == false
&& @ini_get('suhosin.request.max_value_length')
) {
trigger_error(
- PMA_sanitize(
- sprintf(
- __('Server running with Suhosin. Please refer to %sdocumentation%s for possible issues.'),
- '[a@./Documentation.html#faq1_38@_blank]',
- '[/a]'
- )
+ sprintf(
+ __('Server running with Suhosin. Please refer to %sdocumentation%s for possible issues.'),
+ '[a@./Documentation.html#faq1_38@_blank]',
+ '[/a]'
),
E_USER_WARNING
);
diff --git a/po/af.po b/po/af.po
index 3cbcaff0ea..7b222c5724 100644
--- a/po/af.po
+++ b/po/af.po
@@ -11933,7 +11933,7 @@ msgid "Release Series"
msgstr "Kies Tabelle"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/ar.po b/po/ar.po
index 823f4d3c25..89daf95f60 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -11901,7 +11901,7 @@ msgid "Release Series"
msgstr "اختر الجداول"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/az.po b/po/az.po
index 07245a3ad8..c46961c864 100644
--- a/po/az.po
+++ b/po/az.po
@@ -12143,7 +12143,7 @@ msgid "Release Series"
msgstr "Select Tables"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/be.po b/po/be.po
index c63101809e..3650d7ad86 100644
--- a/po/be.po
+++ b/po/be.po
@@ -12598,7 +12598,7 @@ msgid "Release Series"
msgstr "Выберыце табліцу(ы)"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/be@latin.po b/po/be@latin.po
index dd461818f5..dcad8f743b 100644
--- a/po/be@latin.po
+++ b/po/be@latin.po
@@ -12575,7 +12575,7 @@ msgid "Release Series"
msgstr "Vybierycie tablicu(y)"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/bg.po b/po/bg.po
index 788f86d818..c98ae96594 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -11538,7 +11538,7 @@ msgid "Release Series"
msgstr "Избор на таблици"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/bn.po b/po/bn.po
index 32f5b66f3b..69346231f9 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -12168,7 +12168,7 @@ msgid "Release Series"
msgstr "টেবিল সিলেক্ট করুন"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/br.po b/po/br.po
index 6233968489..3175fe2b11 100644
--- a/po/br.po
+++ b/po/br.po
@@ -11572,7 +11572,7 @@ msgid "Release Series"
msgstr "Diuzit an alc'hwez estren"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/bs.po b/po/bs.po
index ddfc3f54c2..c04bedf2a5 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -12140,7 +12140,7 @@ msgid "Release Series"
msgstr "Izaberi tabele"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/ca.po b/po/ca.po
index c35b5ecebc..38b2ccdc24 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -12026,7 +12026,7 @@ msgid "Release Series"
msgstr "Serie de versions"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/cs.po b/po/cs.po
index 519f415419..6b7cc00c16 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -6,7 +6,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-09 19:51+0200\n"
-"PO-Revision-Date: 2012-04-05 16:16+0200\n"
+"PO-Revision-Date: 2012-04-19 11:29+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: czech \n"
"Language: cs\n"
@@ -14,7 +14,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Weblate 0.8\n"
+"X-Generator: Weblate 0.9\n"
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:350
#: libraries/display_tbl.lib.php:359 server_privileges.php:1677
@@ -1669,7 +1669,7 @@ msgid ""
"Failed building chart grid with imported config. Resetting to default "
"config..."
msgstr ""
-"Selhalo vytvoření grafu z importované konfigurace. Používám výchozí "
+"Selhalo vytvoření grafu z importovaného nastavení. Používám výchozí "
"nastavení..."
#: js/messages.php:212 libraries/config/messages.inc.php:172
@@ -3905,7 +3905,7 @@ msgstr "Vložte parametry připojení k serveru"
#: libraries/config/messages.inc.php:206
msgid "Configuration storage"
-msgstr "Úložiště konfigurace"
+msgstr "Úložiště nastavení"
#: libraries/config/messages.inc.php:207
msgid ""
@@ -10755,7 +10755,7 @@ msgstr "Současné připojení"
#: server_synchronize.php:1250
#, php-format
msgid "Configuration: %s"
-msgstr "Konfigurace: %s"
+msgstr "Z nastavení: %s"
#: server_synchronize.php:1265
msgid "Socket"
@@ -10833,14 +10833,14 @@ msgstr "Nezabezpečené připojení"
#: setup/frames/index.inc.php:94
msgid "Configuration saved."
-msgstr "Konfigurace uložena."
+msgstr "Nastavení bylo uloženo."
#: setup/frames/index.inc.php:95
msgid ""
"Configuration saved to file config/config.inc.php in phpMyAdmin top level "
"directory, copy it to top level one and delete directory config to use it."
msgstr ""
-"Konfigurace byla uložena do souboru config/config.inc.php v adresáři "
+"Nastavení bylo uloženo do souboru config/config.inc.php v adresáři "
"phpMyAdmina, přesuňte ji do adresáře phpMyAdmin a smažte adresář config pro "
"její použití."
@@ -11998,7 +11998,7 @@ msgid "Release Series"
msgstr "Vydání"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr "MySQL server je starší než 5.1."
#: po/advisory_rules.php:37
diff --git a/po/cy.po b/po/cy.po
index ffab877ee6..a1d162099a 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -12004,7 +12004,7 @@ msgid "Release Series"
msgstr "Dewis Tablau"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/da.po b/po/da.po
index 36a70062f4..44ace71110 100644
--- a/po/da.po
+++ b/po/da.po
@@ -12146,7 +12146,7 @@ msgid "Release Series"
msgstr "Udgivelsesserie"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr "Versionen af MySQL server er mindre end 5.1"
#: po/advisory_rules.php:37
diff --git a/po/de.po b/po/de.po
index 68a64632fb..bc900fcd28 100644
--- a/po/de.po
+++ b/po/de.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: phpMyAdmin-docs 3.5.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-09 19:51+0200\n"
-"PO-Revision-Date: 2012-04-15 19:19+0200\n"
-"Last-Translator: Robin Pepermans \n"
+"PO-Revision-Date: 2012-04-18 14:56+0200\n"
+"Last-Translator: Jan Erik Zassenhaus \n"
"Language-Team: none\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -866,7 +866,7 @@ msgstr ""
msgid "The web server does not have permission to save the file %s."
msgstr "Der Webserver hat keine Schreibrechte um die Datei %s zu speichern."
-# Schema is not the right word for it, because a dump contains also data, and
+# Schema is not the right word for it, because a dump contains also data, and
# NOT just the scheme.
#: export.php:654
#, php-format
@@ -929,8 +929,8 @@ msgstr "LineString"
msgid "Outer Ring"
msgstr "Ankreis"
-# Ist hiermit der Inkreis gemeint? http://de.wikipedia.org/wiki/Inkreis
-#
+# Ist hiermit der Inkreis gemeint? http://de.wikipedia.org/wiki/Inkreis
+#
# Ja
#: gis_data_editor.php:225 gis_data_editor.php:281 js/messages.php:324
msgid "Inner Ring"
@@ -2504,15 +2504,15 @@ msgstr "Fehler beim Erstellen der PDF Datei:"
#: libraries/RecentTable.class.php:107
msgid "Could not save recent table"
-msgstr "Konnte die aktuelle Tabelle nicht speichern"
+msgstr "Konnte die letzte Tabelle nicht speichern"
#: libraries/RecentTable.class.php:142
msgid "Recent tables"
-msgstr "Aktuelle Tabellen"
+msgstr "Letzte Tabellen"
#: libraries/RecentTable.class.php:149
msgid "There are no recent tables"
-msgstr "Es gibt keine aktuellen Tabellen"
+msgstr "Es gibt keine letzten Tabellen"
#: libraries/StorageEngine.class.php:203
msgid ""
@@ -3339,7 +3339,7 @@ msgstr "Zeile unter Mauscursor hervorheben"
msgid "Highlight pointer"
msgstr "Cursor hervorheben"
-# Maybe the wikipedia link should point to the german version of the article
+# Maybe the wikipedia link should point to the german version of the article
# (http://de.wikipedia.org/wiki/Bzip2 )
#: libraries/config/messages.inc.php:30
msgid ""
@@ -4912,11 +4912,11 @@ msgstr ""
#: libraries/config/messages.inc.php:423
msgid "Signon session name"
-msgstr "Signon Session-Name"
+msgstr "Anmelde Session-Name"
#: libraries/config/messages.inc.php:424
msgid "Signon URL"
-msgstr "Anmelde-URL"
+msgstr "Anmelde URL"
#: libraries/config/messages.inc.php:425
msgid "Socket on which MySQL server is listening, leave empty for default"
@@ -5414,7 +5414,7 @@ msgstr "Aktiviere die Prüfung auf Aktualisierungen auf der Hauptseite"
msgid "Version check"
msgstr "Versionsüberprüfung"
-# Maybe wikipedia links should point to $lang.wikipedia.org, eg
+# Maybe wikipedia links should point to $lang.wikipedia.org, eg
# http://de.wikipedia.org/wiki/ZIP-Dateiformat
#: libraries/config/messages.inc.php:524
msgid ""
@@ -12245,7 +12245,7 @@ msgid "Release Series"
msgstr "Release Reihe"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr "Die MySQL-Server-Version ist kleiner als 5.1."
#: po/advisory_rules.php:37
diff --git a/po/el.po b/po/el.po
index 9708581632..76398fad53 100644
--- a/po/el.po
+++ b/po/el.po
@@ -12253,7 +12253,7 @@ msgid "Release Series"
msgstr "Σειρές Δημοσίευσης"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr "Η έκδοση διακομιστή MySQL είναι παλαιότερη της 5.1."
#: po/advisory_rules.php:37
diff --git a/po/en_GB.po b/po/en_GB.po
index 55e76aba1b..ee396b1e9f 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -12005,8 +12005,8 @@ msgid "Release Series"
msgstr "Release Series"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
-msgstr "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
+msgstr "The MySQL server version less than 5.1."
#: po/advisory_rules.php:37
msgid ""
diff --git a/po/es.po b/po/es.po
index 5b3ac47d57..b909920818 100644
--- a/po/es.po
+++ b/po/es.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-09 19:51+0200\n"
-"PO-Revision-Date: 2012-04-09 16:09+0200\n"
+"PO-Revision-Date: 2012-04-18 17:32+0200\n"
"Last-Translator: Matías Bellone \n"
"Language-Team: spanish \n"
"Language: es\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Weblate 0.8\n"
+"X-Generator: Weblate 0.9\n"
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:350
#: libraries/display_tbl.lib.php:359 server_privileges.php:1677
@@ -962,8 +962,8 @@ msgid ""
"Chose \"GeomFromText\" from the \"Function\" column and paste the below "
"string into the \"Value\" field"
msgstr ""
-"Selecciones «GeomFromText» de la columna \"Función\" y pague la cadena "
-"ubicada debajo en el campo \"Valor\""
+"Seleccione «GeomFromText» de la columna \"Función\" y pegue la cadena ubicada "
+"debajo en el campo \"Valor\""
#: import.php:57
#, php-format
@@ -1383,7 +1383,7 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-# singular: tabla
+# singular: tabla
# plural: tablas
#: js/messages.php:132
#, php-format
@@ -12282,7 +12282,7 @@ msgid "Release Series"
msgstr "Serie de versiones"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr "La versión del servidor MySQL es menor a 5.1."
#: po/advisory_rules.php:37
@@ -13005,7 +13005,7 @@ msgstr ""
msgid "Percentage of used open files limit"
msgstr "Porcentaje de uso del límite de archivos de abiertos"
-# El mensaje de error llegará de PHP o MySQL por lo que no me parece correcto
+# El mensaje de error llegará de PHP o MySQL por lo que no me parece correcto
# traducirlo
#: po/advisory_rules.php:186
msgid ""
diff --git a/po/et.po b/po/et.po
index c7948407d0..5ddffa2806 100644
--- a/po/et.po
+++ b/po/et.po
@@ -11990,7 +11990,7 @@ msgid "Release Series"
msgstr "Väljaande seeria"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr "MySQL serveri versioon on alla 5.1."
#: po/advisory_rules.php:37
diff --git a/po/eu.po b/po/eu.po
index 2865449013..c878056777 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -12108,7 +12108,7 @@ msgid "Release Series"
msgstr "Taulak hautatu"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/fa.po b/po/fa.po
index 02be8e9386..1a4436f297 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -11909,7 +11909,7 @@ msgid "Release Series"
msgstr "Select Tables"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/fi.po b/po/fi.po
index 2487f705e4..76d1b24f4b 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -12617,7 +12617,7 @@ msgid "Release Series"
msgstr "Valitse taulut"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/fr.po b/po/fr.po
index ad62a37896..6538c4eb48 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -12185,7 +12185,7 @@ msgid "Release Series"
msgstr "Famille de versions"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr "La version du serveur MySQL est antérieure à 5.1."
#: po/advisory_rules.php:37
diff --git a/po/gl.po b/po/gl.po
index 29eb3209bb..579ab4638c 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -4,9 +4,9 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-09 19:51+0200\n"
-"PO-Revision-Date: 2012-04-15 16:58+0200\n"
+"PO-Revision-Date: 2012-04-17 16:56+0200\n"
"Last-Translator: Julio Guerra \n"
-"Language-Team: Galician \n"
+"Language-Team: Independant\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -17,7 +17,7 @@ msgstr ""
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:350
#: libraries/display_tbl.lib.php:359 server_privileges.php:1677
msgid "Show all"
-msgstr "Ver todo"
+msgstr "Mostrar todo"
#: browse_foreigners.php:70 libraries/PDF.class.php:42
#: libraries/common.lib.php:2448
@@ -5657,7 +5657,7 @@ msgstr "Falta a extensión %s. Por favor comprobe a configuración do PHP."
#: libraries/core.lib.php:414
msgid "possible deep recursion attack"
-msgstr ""
+msgstr "posible ataque deep recursion"
#: libraries/database_interface.lib.php:1813
#| msgid "(or the local MySQL server's socket is not correctly configured)"
@@ -6010,13 +6010,15 @@ msgstr "Ficheiro a importar:"
#: libraries/display_import.lib.php:156
#, php-format
msgid "File may be compressed (%s) or uncompressed."
-msgstr ""
+msgstr "O arquivo pode estar comprimido(%s) ou descomprimido."
#: libraries/display_import.lib.php:158
msgid ""
"A compressed file's name must end in .[format].[compression]. "
"Example: .sql.zip"
msgstr ""
+"O nome dn arquivo comprimido debe rematar en .[format].[compression]. "
+"Exemplo: .sql.zip"
#: libraries/display_import.lib.php:178
msgid "File uploads are not allowed on this server."
@@ -6108,7 +6110,7 @@ msgstr "vertical"
#: libraries/display_tbl.lib.php:445
#, php-format
msgid "Headers every %s rows"
-msgstr ""
+msgstr "Cabeceiras cada %s filas"
#: libraries/display_tbl.lib.php:548
msgid "Sort by key"
@@ -7479,7 +7481,7 @@ msgstr ""
#: libraries/relation.lib.php:155
msgid "Create a pma user and give access to these tables."
-msgstr ""
+msgstr "Crear un usuario usuario pma e dar acceso a estas táboas."
#: libraries/relation.lib.php:156
msgid ""
@@ -7610,12 +7612,12 @@ msgstr "a procura seguinte fallou: \"%s\""
#: libraries/rte/rte_events.lib.php:116
msgid "Sorry, we failed to restore the dropped event."
-msgstr ""
+msgstr "Sentímolo, non se puido restaurar o evento eliminado."
#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:267
#: libraries/rte/rte_triggers.lib.php:90
msgid "The backed up query was:"
-msgstr ""
+msgstr "A consulta almacenada foi:"
#: libraries/rte/rte_events.lib.php:121
#, php-format
@@ -7632,7 +7634,7 @@ msgstr "O evento %1$s foi creado."
#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:292
#: libraries/rte/rte_triggers.lib.php:114
msgid "One or more errors have occured while processing your request:"
-msgstr ""
+msgstr "Houbo un ou máis erros procesando a sua petición:"
#: libraries/rte/rte_events.lib.php:185
#| msgid "Edit server"
@@ -7771,7 +7773,7 @@ msgstr "Tipo de rutina non válida: \"%s\""
#: libraries/rte/rte_routines.lib.php:266
msgid "Sorry, we failed to restore the dropped routine."
-msgstr ""
+msgstr "Sentimolo, non se puido restaurar a rutina eliminada."
#: libraries/rte/rte_routines.lib.php:271
#, php-format
@@ -7843,7 +7845,7 @@ msgstr "Tipo de seguridade"
#: libraries/rte/rte_routines.lib.php:945
msgid "SQL data access"
-msgstr ""
+msgstr "Acceso de datos SQL"
#: libraries/rte/rte_routines.lib.php:1010
msgid "You must provide a routine name"
@@ -7904,7 +7906,7 @@ msgstr "Función"
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
-msgstr ""
+msgstr "Sentimolo, non se puido recuperar o disparador borrado."
#: libraries/rte/rte_triggers.lib.php:94
#, php-format
@@ -7940,7 +7942,7 @@ msgstr "Debe proporcionar un nome ó disparador"
#: libraries/rte/rte_triggers.lib.php:410
msgid "You must provide a valid timing for the trigger"
-msgstr ""
+msgstr "Debe proporcionar unha sincronización valida para o disparador"
#: libraries/rte/rte_triggers.lib.php:415
msgid "You must provide a valid event for the trigger"
@@ -8044,7 +8046,7 @@ msgstr "Non ten privilexios suficientes para crear un evento"
#, php-format
#| msgid "No tables found in database."
msgid "No event with name %1$s found in database %2$s"
-msgstr "No event with name %1$s found in database %2$s"
+msgstr "Non se atopou evento co nome %1$s na base de datos %2$s"
#: libraries/rte/rte_words.lib.php:48
#| msgid "There are no configured servers"
@@ -8151,7 +8153,7 @@ msgstr "Mostrar esquema relacional"
#: libraries/schema/User_Schema.class.php:392
msgid "Select Export Relational Type"
-msgstr ""
+msgstr "Seleccionar tipo de exportación relacional"
#: libraries/schema/User_Schema.class.php:413
msgid "Show grid"
@@ -8245,7 +8247,7 @@ msgstr "Conxuntos de caracteres"
#: libraries/server_links.inc.php:104 server_plugins.php:47
#: server_plugins.php:80
msgid "Plugins"
-msgstr ""
+msgstr "Extensións"
#: libraries/server_links.inc.php:108
msgid "Engines"
@@ -8380,7 +8382,7 @@ msgstr "FIN DO TEXTO SIMPLE (\"RAW\")"
#: libraries/sqlparser.lib.php:382
msgid "Automatically appended backtick to the end of query!"
-msgstr ""
+msgstr "Comiña invertida engadida ó final da consulta automáticamente!"
#: libraries/sqlparser.lib.php:385
msgid "Unclosed quote"
@@ -8471,11 +8473,11 @@ msgstr ""
#: libraries/tbl_properties.inc.php:321
msgid "ENUM or SET data too long?"
-msgstr ""
+msgstr "Datos ENUM ou SET demasiados longos?"
#: libraries/tbl_properties.inc.php:327
msgid "Get more editing space"
-msgstr ""
+msgstr "Obter máis espacio de edición"
#: libraries/tbl_properties.inc.php:351
#| msgid "None"
@@ -8776,7 +8778,7 @@ msgstr "Servidor de base de datos"
#: main.php:172
msgid "Software"
-msgstr ""
+msgstr "Software"
#: main.php:173
#| msgid "Show versions"
@@ -9085,7 +9087,7 @@ msgstr "A páxina foi creada"
#: pmd_pdf.php:33
msgid "Page creation failed"
-msgstr ""
+msgstr "Erro na creación da páxina"
#: pmd_pdf.php:85
#| msgid "pages"
@@ -9160,15 +9162,15 @@ msgstr "Non se puido importar a configuración"
#: prefs_manage.php:110
msgid "Configuration contains incorrect data for some fields."
-msgstr ""
+msgstr "A configuración contén datos incorrectos para algúns campos."
#: prefs_manage.php:126
msgid "Do you want to import remaining settings?"
-msgstr ""
+msgstr "Quere importar o resto da configuración?"
#: prefs_manage.php:223 prefs_manage.php:249
msgid "Saved on: @DATE@"
-msgstr ""
+msgstr "Gardado o: @DATE@"
#: prefs_manage.php:237
#| msgid "Import files"
@@ -9177,11 +9179,12 @@ msgstr "Importar dende arquivo"
#: prefs_manage.php:243
msgid "Import from browser's storage"
-msgstr ""
+msgstr "Importar do almacenamento do navegador"
#: prefs_manage.php:246
msgid "Settings will be imported from your browser's local storage."
msgstr ""
+"A configuración será importada dende o almacenamento local do navegador."
#: prefs_manage.php:252
#| msgid "Other core settings"
@@ -9190,7 +9193,7 @@ msgstr "Non tes opcións gardadas!"
#: prefs_manage.php:256 prefs_manage.php:310
msgid "This feature is not supported by your web browser"
-msgstr ""
+msgstr "Esta característica non está soportada polo seu navegador"
#: prefs_manage.php:261
#| msgid "Server configuration"
@@ -9203,22 +9206,25 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
+"Pode configurar maís opcións modificando config.inc.php, ex. usando %sSetup "
+"script%s."
#: prefs_manage.php:300
msgid "Save to browser's storage"
-msgstr ""
+msgstr "Gardar no almacenamento do navegador"
#: prefs_manage.php:304
msgid "Settings will be saved in your browser's local storage."
-msgstr ""
+msgstr "A configuración será gardada no almacenamento do navegador."
#: prefs_manage.php:306
msgid "Existing settings will be overwritten!"
-msgstr ""
+msgstr "A configuración existente será sobreescrita!"
#: prefs_manage.php:321
msgid "You can reset all your settings and restore them to default values."
msgstr ""
+"Pode resetear a súa configuración e restaurar os valores predeterminados."
#: querywindow.php:69
msgid "Import files"
@@ -9320,7 +9326,7 @@ msgstr "Ver o volcado das bases de datos"
#: server_plugins.php:81
msgid "Modules"
-msgstr ""
+msgstr "M'odulos"
#: server_plugins.php:102
msgid "Begin"
@@ -9328,15 +9334,15 @@ msgstr "Inicio"
#: server_plugins.php:111
msgid "Plugin"
-msgstr ""
+msgstr "Extensión"
#: server_plugins.php:112 server_plugins.php:146
msgid "Module"
-msgstr ""
+msgstr "M'odulo"
#: server_plugins.php:113 server_plugins.php:148
msgid "Library"
-msgstr ""
+msgstr "Biblioteca"
#: server_plugins.php:114 server_plugins.php:149 tbl_tracking.php:650
msgid "Version"
@@ -9344,11 +9350,11 @@ msgstr "Versión"
#: server_plugins.php:115 server_plugins.php:150
msgid "Author"
-msgstr ""
+msgstr "Autor"
#: server_plugins.php:116 server_plugins.php:151
msgid "License"
-msgstr ""
+msgstr "Licen"
#: server_plugins.php:182
#| msgid "Disabled"
@@ -9884,11 +9890,11 @@ msgstr ""
#: server_replication.php:291
msgid "Slave SQL Thread not running!"
-msgstr ""
+msgstr "Fio esclavo SQL non está funcionando!"
#: server_replication.php:294
msgid "Slave IO Thread not running!"
-msgstr ""
+msgstr "Fio esclavo E/S non está funcionando!"
#: server_replication.php:303
msgid ""
@@ -10051,11 +10057,11 @@ msgstr "Todalas variables de estado"
#: server_status.php:787
msgid "Monitor"
-msgstr ""
+msgstr "Monitorizaci'on"
#: server_status.php:788
msgid "Advisor"
-msgstr ""
+msgstr "Consellos"
#: server_status.php:798 server_status.php:820
#| msgid "Refresh"
@@ -10078,7 +10084,7 @@ msgstr "Mostrar só valores de alerta"
#: server_status.php:850
msgid "Filter by category..."
-msgstr ""
+msgstr "Filtrar por categoría..."
#: server_status.php:864
#| msgid "Show open tables"
@@ -10104,6 +10110,8 @@ msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
+"O sistema de consellos pode darlle valores recomendados para as variables do "
+"servidor analizando as variables de estado do servidor."
#: server_status.php:911
msgid ""
@@ -10111,6 +10119,8 @@ msgid ""
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
+"Note sen embargo que este sistema proporciona recomendacións baseadas en "
+"simples cálculos e a dedo que pode non ser necesarias no seu sistema."
#: server_status.php:913
msgid ""
@@ -10140,12 +10150,12 @@ msgstr "Informacións"
#. l10n: # = Amount of queries
#: server_status.php:976
msgid "#"
-msgstr ""
+msgstr "#"
#: server_status.php:1049
#, php-format
msgid "Network traffic since startup: %s"
-msgstr ""
+msgstr "Tráfico de rede dende o inicio: %s"
#: server_status.php:1058
#, php-format
@@ -10990,7 +11000,7 @@ msgstr ""
#: server_status.php:1640
msgid "Please note:"
-msgstr ""
+msgstr "Por favor note:"
#: server_status.php:1642
msgid ""
@@ -11017,7 +11027,7 @@ msgstr "Seleccionar series:"
#: server_status.php:1662
msgid "Commonly monitored"
-msgstr ""
+msgstr "Monitorizacións comúns"
#: server_status.php:1677
#| msgid "Invalid table name"
@@ -11026,11 +11036,11 @@ msgstr "ou escriba o nome da variable:"
#: server_status.php:1681
msgid "Display as differential value"
-msgstr ""
+msgstr "Mostrar como valor diferencial"
#: server_status.php:1683
msgid "Apply a divisor"
-msgstr ""
+msgstr "Aplicar un divisor"
#: server_status.php:1690
msgid "Append unit to data values"
@@ -11043,7 +11053,7 @@ msgstr "Engadir esta serie"
#: server_status.php:1698
msgid "Clear series"
-msgstr ""
+msgstr "Limpar series"
#: server_status.php:1701
#| msgid "SQL queries"
@@ -11074,7 +11084,7 @@ msgstr ""
#: server_status.php:1732
msgid "Results are grouped by query text."
-msgstr ""
+msgstr "Os resultados están agrupados polo texto da consulta."
#: server_status.php:1737
#| msgid "Query type"
@@ -11188,7 +11198,7 @@ msgstr "Peticións executadas"
#: server_synchronize.php:1202
msgid "Enter manually"
-msgstr ""
+msgstr "Inserir manualmente"
#: server_synchronize.php:1210
#| msgid "Insecure connection"
@@ -11215,7 +11225,7 @@ msgstr ""
#: server_variables.php:80
msgid "Setting variable failed"
-msgstr ""
+msgstr "Erro establecendo a variable"
#: server_variables.php:99
msgid "Server variables and settings"
@@ -11675,7 +11685,7 @@ msgstr "Inserir unha columna nova"
#: tbl_change.php:1030
msgid "Insert as new row and ignore errors"
-msgstr ""
+msgstr "Inserir como nova fila e ignorar erros"
#: tbl_change.php:1031
msgid "Show insert query"
@@ -11729,7 +11739,7 @@ msgstr "Columna"
#: tbl_chart.php:93
msgctxt "Chart type"
msgid "Line"
-msgstr ""
+msgstr "Liña"
#: tbl_chart.php:95
#| msgid "Engines"
@@ -11755,7 +11765,7 @@ msgstr "Título do gráfico"
#: tbl_chart.php:109
msgid "X-Axis:"
-msgstr ""
+msgstr "Eixo X:"
#: tbl_chart.php:124
#| msgid "SQL queries"
@@ -11769,7 +11779,7 @@ msgstr "Ás columnas restantes"
#: tbl_chart.php:139
msgid "X-Axis label:"
-msgstr ""
+msgstr "Etiqueta do eixo X:"
#: tbl_chart.php:141
#| msgid "Value"
@@ -11778,7 +11788,7 @@ msgstr "Valores X"
#: tbl_chart.php:142
msgid "Y-Axis label:"
-msgstr ""
+msgstr "Eixo Y:"
#: tbl_chart.php:143
#| msgid "Value"
@@ -11806,11 +11816,11 @@ msgstr "Mostrar visualización GIS"
#: tbl_gis_visualization.php:128
msgid "Width"
-msgstr ""
+msgstr "Anchura"
#: tbl_gis_visualization.php:132
msgid "Height"
-msgstr ""
+msgstr "Altura"
#: tbl_gis_visualization.php:136
#| msgid "CHAR textarea columns"
@@ -11829,7 +11839,7 @@ msgstr "Columna espacial"
#: tbl_gis_visualization.php:175
msgid "Redraw"
-msgstr ""
+msgstr "Redebuxar"
#: tbl_gis_visualization.php:177
#| msgid "Save as file"
@@ -11957,7 +11967,7 @@ msgstr "Eliminar datos da táboa"
#: tbl_operations.php:714
msgid "Empty the table (TRUNCATE)"
-msgstr ""
+msgstr "Vaciar táboa (TRUNCATE)"
#: tbl_operations.php:736
#| msgid "Go to database"
@@ -12097,11 +12107,11 @@ msgstr "Examinar valores claramente distintos"
#: tbl_structure.php:167 tbl_structure.php:168
msgid "Add primary key"
-msgstr ""
+msgstr "Engadir chave primaria"
#: tbl_structure.php:171 tbl_structure.php:172
msgid "Add unique index"
-msgstr ""
+msgstr "Engadir índice único"
#: tbl_structure.php:173 tbl_structure.php:174
#| msgid "Apply index(s)"
@@ -12110,7 +12120,7 @@ msgstr "Engadir índice SPATIAL"
#: tbl_structure.php:175 tbl_structure.php:176
msgid "Add FULLTEXT index"
-msgstr ""
+msgstr "Engadir índice FULLTEXT"
#: tbl_structure.php:359 tbl_tracking.php:295
#| msgid "None"
@@ -12185,7 +12195,7 @@ msgstr "particionado"
#: tbl_tracking.php:109
#, php-format
msgid "Tracking report for table `%s`"
-msgstr ""
+msgstr "Reporte de seguemento para a táboa `%s`"
#: tbl_tracking.php:173
#, php-format
@@ -12333,26 +12343,25 @@ msgid "Create version"
msgstr "Crear unha versión"
#: tbl_zoom_select.php:135
-#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
-msgstr "Faga unha \"procura por exemplo\" (o comodín é \"%\")"
+msgstr ""
+"Facer unha \"consulta de exemplo\" (o comodín é \"%\") para duas columnas "
+"diferentes"
#: tbl_zoom_select.php:145
-#, fuzzy
#| msgid "SQL Query box"
msgid "Additional search criteria"
-msgstr "Caixa de Procuras SQL"
+msgstr "Criterios adicionais de busca"
#: tbl_zoom_select.php:276
msgid "Use this column to label each point"
msgstr ""
#: tbl_zoom_select.php:296
-#, fuzzy
#| msgid "Maximum number of rows to display"
msgid "Maximum rows to plot"
-msgstr "Número máximo de fileiras que se mostran"
+msgstr "Máximo de filas que aparecen no gráfico"
#: tbl_zoom_select.php:410
msgid "Browse/Edit the points"
@@ -12440,16 +12449,15 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:13
-#, fuzzy, php-format
+#, php-format
#| msgid "Insecure connection"
msgid "Current amount of Questions: %s"
-msgstr "A conexión non é segura"
+msgstr "Cantidade actual de preguntas: %s"
#: po/advisory_rules.php:15
-#, fuzzy
#| msgid "Show SQL queries"
msgid "Percentage of slow queries"
-msgstr "Mostrar as procuras SQL"
+msgstr "Porcentaxe de consultas lentas"
#: po/advisory_rules.php:16
msgid ""
@@ -12468,10 +12476,9 @@ msgid "The slow query rate should be below 5%%, your value is %s%%."
msgstr ""
#: po/advisory_rules.php:20
-#, fuzzy
#| msgid "Flush query cache"
msgid "Slow query rate"
-msgstr "Limpar a caché da pesquisa"
+msgstr "Taxa de consultas lentas"
#: po/advisory_rules.php:21
msgid ""
@@ -12486,10 +12493,9 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:25
-#, fuzzy
#| msgid "SQL queries"
msgid "Long query time"
-msgstr "Solicitudes SQL"
+msgstr "Largo tempo de consulta"
#: po/advisory_rules.php:26
msgid ""
@@ -12509,14 +12515,13 @@ msgid "long_query_time is currently set to %ds."
msgstr ""
#: po/advisory_rules.php:30
-#, fuzzy
#| msgid "SQL Query box"
msgid "Slow query logging"
-msgstr "Caixa de Procuras SQL"
+msgstr "Rexistro de consultas lentas"
#: po/advisory_rules.php:31
msgid "The slow query log is disabled."
-msgstr ""
+msgstr "O rexistro de consultas lentas está desactivado."
#: po/advisory_rules.php:32
msgid ""
@@ -12526,16 +12531,15 @@ msgstr ""
#: po/advisory_rules.php:33
msgid "log_slow_queries is set to 'OFF'"
-msgstr ""
+msgstr "log_slow_queries esta establecido a 'OFF'"
#: po/advisory_rules.php:35
-#, fuzzy
#| msgid "Select Tables"
msgid "Release Series"
-msgstr "Seleccionar táboas"
+msgstr "Serie de versións"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
@@ -12545,16 +12549,15 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48
-#, fuzzy, php-format
+#, php-format
#| msgid "Create version"
msgid "Current version: %s"
-msgstr "Crear unha versión"
+msgstr "Versión actual: %s"
#: po/advisory_rules.php:40 po/advisory_rules.php:45
-#, fuzzy
#| msgid "Version"
msgid "Minor Version"
-msgstr "Versión"
+msgstr "Versión menor"
#: po/advisory_rules.php:41
msgid "Version less than 5.1.30 (the first GA release of 5.1)."
@@ -12571,16 +12574,14 @@ msgid "Version less than 5.5.8 (the first GA release of 5.5)."
msgstr ""
#: po/advisory_rules.php:47
-#, fuzzy
#| msgid "You should upgrade to %s %s or later."
msgid "You should upgrade, to a stable version of MySQL 5.5"
-msgstr "Debería actualizar a %s %s ou posterior."
+msgstr "Debería actualizar a unha versión estable de MySQL 5.5"
#: po/advisory_rules.php:50 po/advisory_rules.php:55 po/advisory_rules.php:60
-#, fuzzy
#| msgid "Description"
msgid "Distribution"
-msgstr "Descrición"
+msgstr "Distribución"
#: po/advisory_rules.php:51
msgid "Version is compiled from source, not a MySQL official binary."
@@ -12619,10 +12620,9 @@ msgid "Version string (%s) matches Drizzle versioning scheme"
msgstr ""
#: po/advisory_rules.php:65
-#, fuzzy
#| msgid "MySQL charset"
msgid "MySQL Architecture"
-msgstr "Código de caracteres (Charset) MySQL"
+msgstr "Arquitectura MySQL"
#: po/advisory_rules.php:66
msgid "MySQL is not compiled as a 64-bit package."
@@ -12641,16 +12641,14 @@ msgid "Available memory on this host: %s"
msgstr ""
#: po/advisory_rules.php:70
-#, fuzzy
#| msgid "Query cache"
msgid "Query cache disabled"
-msgstr "caché de procuras"
+msgstr "Caché de consultas desactivada"
#: po/advisory_rules.php:71
-#, fuzzy
#| msgid "The server is not responding"
msgid "The query cache is not enabled."
-msgstr "O servidor non está a responder"
+msgstr "A caché de consultas está desactivada."
#: po/advisory_rules.php:72
msgid ""
@@ -12665,10 +12663,9 @@ msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
#: po/advisory_rules.php:75
-#, fuzzy
#| msgid "Query cache"
msgid "Query caching method"
-msgstr "caché de procuras"
+msgstr "Método de caché das consultas"
#: po/advisory_rules.php:76
msgid "Suboptimal caching method."
@@ -12690,10 +12687,10 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:80
-#, fuzzy, php-format
+#, php-format
#| msgid "Query cache"
msgid "Query cache efficiency (%%)"
-msgstr "caché de procuras"
+msgstr "Eficiencia (%%) da caché das consultas"
#: po/advisory_rules.php:81
msgid "Query cache not running efficiently, it has a low hit rate."
@@ -12709,9 +12706,8 @@ msgid "The current query cache hit rate of %s%% is below 20%%"
msgstr ""
#: po/advisory_rules.php:85
-#, fuzzy
msgid "Query Cache usage"
-msgstr "caché de procuras"
+msgstr "Uso da caché das consultas"
#: po/advisory_rules.php:86
#, php-format
@@ -12732,10 +12728,9 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:90
-#, fuzzy
#| msgid "Query cache"
msgid "Query cache fragmentation"
-msgstr "caché de procuras"
+msgstr "Fragmentación da caché de consultas"
#: po/advisory_rules.php:91
msgid "The query cache is considerably fragmented."
@@ -12766,12 +12761,13 @@ msgid "Query cache low memory prunes"
msgstr ""
#: po/advisory_rules.php:96
-#, fuzzy
#| msgid "The amount of free memory for query cache."
msgid ""
"Cached queries are removed due to low query cache memory from the query "
"cache."
-msgstr "Cantidade de memoria libre para a caché de procuras."
+msgstr ""
+"As consultas na caché son eliminadas debido á pouca cantidade de memoria "
+"caché para as consultas."
#: po/advisory_rules.php:97
msgid ""
@@ -12788,10 +12784,9 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:100
-#, fuzzy
#| msgid "Query cache"
msgid "Query cache max size"
-msgstr "caché de procuras"
+msgstr "Tamaño máximo da caché de consultas"
#: po/advisory_rules.php:101
msgid ""
@@ -12811,9 +12806,8 @@ msgid "Current query cache size: %s"
msgstr ""
#: po/advisory_rules.php:105
-#, fuzzy
msgid "Query cache min result size"
-msgstr "Operacións de resultados da procura"
+msgstr "Tamaño mínimo da caché de consultas"
#: po/advisory_rules.php:106
msgid ""
@@ -12837,16 +12831,14 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: po/advisory_rules.php:110
-#, fuzzy
#| msgid "Allows creating temporary tables."
msgid "Percentage of sorts that cause temporary tables"
-msgstr "Permite crear táboas temporais."
+msgstr "Porcentaxe de ordenamentos que causan táboas temporais"
#: po/advisory_rules.php:111 po/advisory_rules.php:116
-#, fuzzy
#| msgid "Allows creating temporary tables."
msgid "Too many sorts are causing temporary tables."
-msgstr "Permite crear táboas temporais."
+msgstr "Demasiados ordenamentos está causando táboas temporais."
#: po/advisory_rules.php:112 po/advisory_rules.php:117
msgid ""
@@ -12862,10 +12854,9 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:115
-#, fuzzy
#| msgid "Allows creating temporary tables."
msgid "Rate of sorts that cause temporary tables"
-msgstr "Permite crear táboas temporais."
+msgstr "Taxa de ordenamentos que causan táboas temporais"
#: po/advisory_rules.php:118
#, php-format
@@ -12874,10 +12865,9 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:120
-#, fuzzy
#| msgid "Start"
msgid "Sort rows"
-msgstr "Inicio"
+msgstr "Ordenar filas"
#: po/advisory_rules.php:121
msgid "There are lots of rows being sorted."
@@ -12897,16 +12887,14 @@ msgid "Sorted rows average: %s"
msgstr ""
#: po/advisory_rules.php:125
-#, fuzzy
#| msgid "There are no configured servers"
msgid "Rate of joins without indexes"
-msgstr "Non hai ningún servidor configurado"
+msgstr "Taxa de unións sen índices"
#: po/advisory_rules.php:126
-#, fuzzy
#| msgid "There are no configured servers"
msgid "There are too many joins without indexes."
-msgstr "Non hai ningún servidor configurado"
+msgstr "Hai demasiadas unións sen índices."
#: po/advisory_rules.php:127
msgid ""
@@ -13007,7 +12995,7 @@ msgstr ""
#: po/advisory_rules.php:150
msgid "Percentage of temp tables on disk"
-msgstr ""
+msgstr "Porcentaxe de táboas temporais en disco"
#: po/advisory_rules.php:151 po/advisory_rules.php:156
msgid ""
@@ -13034,10 +13022,9 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:155
-#, fuzzy
#| msgid "%s table(s)"
msgid "Temp disk rate"
-msgstr "%s táboa(s)"
+msgstr "Taxa de temporais no disco"
#: po/advisory_rules.php:157
msgid ""
@@ -13058,10 +13045,9 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:160
-#, fuzzy
#| msgid "Sort buffer size"
msgid "MyISAM key buffer size"
-msgstr "Tamaño da memoria intermedia de ordenación"
+msgstr "Tamaño do buffer de chaves MyISAM"
#: po/advisory_rules.php:161
msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
@@ -13075,13 +13061,13 @@ msgstr ""
#: po/advisory_rules.php:163
msgid "key_buffer_size is 0"
-msgstr ""
+msgstr "key_buffer_size é 0"
#: po/advisory_rules.php:165
-#, fuzzy, php-format
+#, php-format
#| msgid "Sort buffer size"
msgid "Max %% MyISAM key buffer ever used"
-msgstr "Tamaño da memoria intermedia de ordenación"
+msgstr "Uso historico máximo do buffer de chaves MyISAM"
#: po/advisory_rules.php:166 po/advisory_rules.php:171
#, fuzzy, php-format
@@ -13119,7 +13105,7 @@ msgstr ""
#: po/advisory_rules.php:175
msgid "Percentage of index reads from memory"
-msgstr ""
+msgstr "Porcentaxe de lecturas de indicé da memoria"
#: po/advisory_rules.php:176
#, php-format
@@ -13137,16 +13123,14 @@ msgstr ""
"Índices lidos dende a memoria: %s%%, este valor debería ser maior ó 95%%"
#: po/advisory_rules.php:180
-#, fuzzy
#| msgid "Create table"
msgid "Rate of table open"
msgstr "Taxa de apertura de táboas"
#: po/advisory_rules.php:181
-#, fuzzy
#| msgid "The current number of pending writes."
msgid "The rate of opening tables is high."
-msgstr "A taxa de táboas abertas é alta."
+msgstr "A taxa de apertura de táboas é alta."
#: po/advisory_rules.php:182
msgid ""
@@ -13163,7 +13147,6 @@ msgstr ""
"Taxa de apertura de taboas: %s, este valor debería ser menor a 10 por hora"
#: po/advisory_rules.php:185
-#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used open files limit"
msgstr "Porcentaxe de uso do límite de ficheiros abertos"
@@ -13193,13 +13176,11 @@ msgstr ""
"85%%"
#: po/advisory_rules.php:190
-#, fuzzy
#| msgid "Format of imported file"
msgid "Rate of open files"
msgstr "Taxa de apertura de ficheiros"
#: po/advisory_rules.php:191
-#, fuzzy
#| msgid "The number of pending log file fsyncs."
msgid "The rate of opening files is high."
msgstr "A taxa de apertura de ficheiros é alta."
@@ -13211,16 +13192,15 @@ msgstr ""
"Taxa de apertura de ficheiros: %s, este valor debería ser menor a 5 por hora"
#: po/advisory_rules.php:195
-#, fuzzy, php-format
+#, php-format
#| msgid "Create table on database %s"
msgid "Immediate table locks %%"
msgstr "Porcentaxe de bloqueos de tabla inmediatos %%"
#: po/advisory_rules.php:196 po/advisory_rules.php:201
-#, fuzzy
#| msgid "The number of times that a table lock was acquired immediately."
msgid "Too many table locks were not granted immediately."
-msgstr "Número de veces que se adquiriu inmediatamente un bloqueo de táboa."
+msgstr "Demasiados bloqueos de táboas non foron levantados inmediatamente."
#: po/advisory_rules.php:197 po/advisory_rules.php:202
msgid "Optimize queries and/or use InnoDB to reduce lock wait."
@@ -13245,10 +13225,9 @@ msgstr ""
"a 1 por hora"
#: po/advisory_rules.php:205
-#, fuzzy
#| msgid "Key cache"
msgid "Thread cache"
-msgstr "Caché de fíos"
+msgstr "Cacheé de fios"
#: po/advisory_rules.php:206
msgid ""
@@ -13266,16 +13245,15 @@ msgid "The thread cache is set to 0"
msgstr "A caché de fíos é 0"
#: po/advisory_rules.php:210
-#, fuzzy, php-format
+#, php-format
#| msgid "Tracking is not active."
msgid "Thread cache hit rate %%"
-msgstr "Porcentaxe de caché de fíos %%"
+msgstr "Porcentaxe de acertos da caché de fíos %%"
#: po/advisory_rules.php:211
-#, fuzzy
#| msgid "Tracking is not active."
msgid "Thread cache is not efficient."
-msgstr "A caché de fíos non é eficiente."
+msgstr "A caché de fios non é eficiente."
#: po/advisory_rules.php:212
msgid "Increase {thread_cache_size}."
@@ -13291,10 +13269,9 @@ msgid "Threads that are slow to launch"
msgstr "Fíos que son lentos para iniciarse"
#: po/advisory_rules.php:216
-#, fuzzy
#| msgid "The number of threads that are not sleeping."
msgid "There are too many threads that are slow to launch."
-msgstr "Número de fíos demasiado lentos para publicar"
+msgstr "Demasiados fíos que inician a execución lentamente."
#: po/advisory_rules.php:217
msgid ""
@@ -13333,7 +13310,6 @@ msgid "slow_launch_time is set to %s"
msgstr "Slow_launch_time está configurado a %s"
#: po/advisory_rules.php:225
-#, fuzzy
#| msgid "Persistent connections"
msgid "Percentage of used connections"
msgstr "Porcentaxe de conexións empregadas"
@@ -13360,10 +13336,9 @@ msgid ""
msgstr ""
#: po/advisory_rules.php:230
-#, fuzzy
#| msgid "Persistent connections"
msgid "Percentage of aborted connections"
-msgstr "Porcentaxe de conexións canceladas"
+msgstr "Porcentaxe de conexións abortadas"
#: po/advisory_rules.php:231 po/advisory_rules.php:236
msgid "Too many connections are aborted."
@@ -13389,26 +13364,26 @@ msgstr ""
"ó 1%%"
#: po/advisory_rules.php:235
-#, fuzzy
#| msgid "Persistent connections"
msgid "Rate of aborted connections"
-msgstr "Taxa de conexións canceladas"
+msgstr "Taxa de conexións abortadas"
#: po/advisory_rules.php:238
#, php-format
msgid ""
"Aborted connections rate is at %s, this value should be less than 1 per hour"
msgstr ""
+"A taxa de conexións abortadas está en %s, este valor debería ser inferior a "
+"1 por hora"
#: po/advisory_rules.php:240
-#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of aborted clients"
-msgstr "Formato do ficheiro importado"
+msgstr "Porcentaxe de clientes abortados"
#: po/advisory_rules.php:241 po/advisory_rules.php:246
msgid "Too many clients are aborted."
-msgstr ""
+msgstr "Demasiadas clientes abortaron."
#: po/advisory_rules.php:242 po/advisory_rules.php:247
msgid ""
@@ -13423,10 +13398,9 @@ msgid "%s%% of all clients are aborted. This value should be below 2%%"
msgstr ""
#: po/advisory_rules.php:245
-#, fuzzy
#| msgid "Format of imported file"
msgid "Rate of aborted clients"
-msgstr "Formato do ficheiro importado"
+msgstr "Taxxa de clientes abortados"
#: po/advisory_rules.php:248
#, php-format
@@ -13435,35 +13409,34 @@ msgstr ""
#: po/advisory_rules.php:250
msgid "Is InnoDB disabled?"
-msgstr ""
+msgstr "Está InnoDB desactivada?"
#: po/advisory_rules.php:251
-#, fuzzy
#| msgid "Cannot load or save configuration"
msgid "You do not have InnoDB enabled."
-msgstr "Non se puido cargar ou gravar a configuración"
+msgstr "InnoDB non está activado."
#: po/advisory_rules.php:252
msgid "InnoDB is usually the better choice for table engines."
-msgstr ""
+msgstr "InnoDB é habitualmente a mellor elección para motores de táboas."
#: po/advisory_rules.php:253
msgid "have_innodb is set to 'value'"
-msgstr ""
+msgstr "have_innodb está establecido a 'value'"
#: po/advisory_rules.php:255
-#, fuzzy
#| msgid "Buffer pool size"
msgid "InnoDB log size"
-msgstr "Tamaño da reserva da memoria intermedia"
+msgstr "Tamaño de rexistro de InnoDB"
#: po/advisory_rules.php:256
-#, fuzzy
#| msgid "The number writes done to the InnoDB buffer pool."
msgid ""
"The InnoDB log file size is not an appropriate size, in relation to the "
"InnoDB buffer pool."
-msgstr "Número de veces que se escribiu no búfer InnoDB."
+msgstr ""
+"O tamaño do rexistro de InnoDB non e apropiado en relación a reserva de "
+"búfer do InnoDB."
#: po/advisory_rules.php:257
#, php-format
@@ -13488,11 +13461,11 @@ msgstr ""
#: po/advisory_rules.php:260
msgid "Max InnoDB log size"
-msgstr ""
+msgstr "Tamaño máximo do rexistro InnoDB"
#: po/advisory_rules.php:261
msgid "The InnoDB log file size is inadequately large."
-msgstr ""
+msgstr "O tamaño do ficheiro de rexistro InnoDB e inadecuadamente longo."
#: po/advisory_rules.php:262
#, php-format
@@ -13511,17 +13484,16 @@ msgstr ""
#: po/advisory_rules.php:263
#, php-format
msgid "Your absolute InnoDB log size is %s MiB"
-msgstr ""
+msgstr "O tamaño absoluto do rexistro InnoDB es %s MiB"
#: po/advisory_rules.php:265
-#, fuzzy
#| msgid "Buffer pool size"
msgid "InnoDB buffer pool size"
-msgstr "Tamaño da reserva da memoria intermedia"
+msgstr "Tamaño da reserva de búfer do InnoDB"
#: po/advisory_rules.php:266
msgid "Your InnoDB buffer pool is fairly small."
-msgstr ""
+msgstr "A reserva de búfer InnoDB é bastante pequena."
#: po/advisory_rules.php:267
#, php-format
diff --git a/po/he.po b/po/he.po
index 679af4bd97..1db064f8e1 100644
--- a/po/he.po
+++ b/po/he.po
@@ -4,20 +4,20 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-09 19:51+0200\n"
-"PO-Revision-Date: 2011-03-02 20:17+0200\n"
-"Last-Translator: \n"
+"PO-Revision-Date: 2012-04-19 14:33+0200\n"
+"Last-Translator: Yaron Shahrabani \n"
"Language-Team: hebrew \n"
"Language: he\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.0.5\n"
+"X-Generator: Weblate 0.9\n"
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:350
#: libraries/display_tbl.lib.php:359 server_privileges.php:1677
msgid "Show all"
-msgstr "הצג הכל"
+msgstr "הצגת הכול"
#: browse_foreigners.php:70 libraries/PDF.class.php:42
#: libraries/common.lib.php:2448
@@ -26,14 +26,16 @@ msgstr "הצג הכל"
#: libraries/schema/User_Schema.class.php:396
#: libraries/select_lang.lib.php:489
msgid "Page number:"
-msgstr "מספר דף:"
+msgstr "מספר העמוד:"
#: browse_foreigners.php:142
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
"cross-window updates."
-msgstr "עדכון חלון הדפדפן הנבחר נכשל."
+msgstr ""
+"לא ניתן לעדכן את חלון דפדפן היעד. יתכן שסגרת את חלון ההורה, או שהגדרות "
+"האבטחה של הדפדפן שלך מוגדרות כך שיחסמו עדכונים בין חלונות."
#: browse_foreigners.php:160 libraries/common.lib.php:3129
#: libraries/common.lib.php:3136 libraries/common.lib.php:3345
@@ -77,12 +79,12 @@ msgstr "חיפוש"
#: tbl_tracking.php:569 tbl_zoom_select.php:313 view_create.php:181
#: view_operations.php:99
msgid "Go"
-msgstr "סע"
+msgstr "ביצוע"
#: browse_foreigners.php:178 browse_foreigners.php:182
#: libraries/Index.class.php:440 tbl_tracking.php:319
msgid "Keyname"
-msgstr "שמות מפתח"
+msgstr "שם מפתח"
#: browse_foreigners.php:179 browse_foreigners.php:181
#: server_collations.php:54 server_collations.php:66 server_engines.php:55
@@ -93,7 +95,7 @@ msgstr "תיאור"
#: browse_foreigners.php:259 browse_foreigners.php:268
#: browse_foreigners.php:280 browse_foreigners.php:288
msgid "Use this value"
-msgstr "השתמש בערך זה"
+msgstr "שימוש בערך זה"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
#: libraries/blobstreaming.lib.php:385
@@ -114,21 +116,22 @@ msgid ""
"The %s file is not available on this system, please visit www.phpmyadmin.net "
"for more information."
msgstr ""
+"הקובץ %s אינו זמין במערכת זו, נא לבקר בכתובת www.phpmyadmin.net למידע נוסף."
#: db_create.php:60
-#, fuzzy, php-format
+#, php-format
msgid "Database %1$s has been created."
-msgstr "מסד הנתונים %s נמחק."
+msgstr "מסד הנתונים %1$s נוצר."
#: db_datadict.php:49 db_operations.php:370
msgid "Database comment: "
-msgstr "הערה על מאגר הנתונים: "
+msgstr "הערה על מסד הנתונים: "
#: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279
#: libraries/tbl_properties.inc.php:661 tbl_operations.php:366
#: tbl_printview.php:124
msgid "Table comments"
-msgstr "הערות טבלה"
+msgstr "הערות לטבלה"
#: db_datadict.php:162 db_qbe.php:196 libraries/Index.class.php:444
#: libraries/export/htmlword.php:249 libraries/export/latex.php:394
@@ -139,10 +142,9 @@ msgstr "הערות טבלה"
#: tbl_change.php:318 tbl_indexes.php:213 tbl_printview.php:136
#: tbl_relation.php:395 tbl_tracking.php:257 tbl_tracking.php:323
#: tbl_zoom_select.php:433
-#, fuzzy
#| msgid "Column names"
msgid "Column"
-msgstr "שמות עמודה"
+msgstr "עמודה"
#: db_datadict.php:163 db_printview.php:103 libraries/Index.class.php:441
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:250
@@ -169,7 +171,7 @@ msgstr "סוג"
#: tbl_printview.php:138 tbl_structure.php:205 tbl_tracking.php:260
#: tbl_tracking.php:326 tbl_zoom_select.php:434
msgid "Null"
-msgstr "Null"
+msgstr "ריק"
#: db_datadict.php:166 db_structure.php:538 libraries/export/htmlword.php:252
#: libraries/export/latex.php:397 libraries/export/odt.php:309
@@ -179,7 +181,7 @@ msgstr "Null"
#: libraries/tbl_properties.inc.php:99 tbl_printview.php:139
#: tbl_structure.php:206 tbl_tracking.php:261
msgid "Default"
-msgstr "ברירת מחדל"
+msgstr "בררת מחדל"
#: db_datadict.php:170 libraries/export/htmlword.php:254
#: libraries/export/latex.php:399 libraries/export/odt.php:313
@@ -241,24 +243,24 @@ msgstr "כן"
#: db_export.php:26
msgid "View dump (schema) of database"
-msgstr "ראיית הוצאה (תבנית) של מאגר נתונים"
+msgstr "צפייה בשליפה (תבנית) של מסד נתונים"
#: db_export.php:30 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
#: export.php:354 navigation.php:296
msgid "No tables found in database."
-msgstr "לא נמצאו טבלאות במאגר נתונים."
+msgstr "לא נמצאו טבלאות במסד הנתונים."
#: db_export.php:40 db_search.php:319 server_export.php:26
msgid "Select All"
-msgstr "בחירת הכל"
+msgstr "בחירת הכול"
#: db_export.php:42 db_search.php:322 server_export.php:28
msgid "Unselect All"
-msgstr "בטל בחירת הכל"
+msgstr "ביטול הבחירה הכללית"
#: db_operations.php:41 tbl_create.php:22
msgid "The database name is empty!"
-msgstr "שם מאגר הנתונים ריק!"
+msgstr "שם מסד הנתונים ריק!"
#: db_operations.php:280
#, php-format
@@ -272,27 +274,25 @@ msgstr "מאגר נתונים %s הועתק אל %s"
#: db_operations.php:412
msgid "Rename database to"
-msgstr "שינוי שם מאגר נתונים אל"
+msgstr "שינוי שם מסד הנתונים לשם"
#: db_operations.php:438
-#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
-msgstr "שינוי שם מאגר נתונים אל"
+msgstr "הסרת מסד הנתונים"
#: db_operations.php:450
#, php-format
msgid "Database %s has been dropped."
-msgstr "מסד הנתונים %s נמחק."
+msgstr "מסד הנתונים %s הושמט."
#: db_operations.php:455
-#, fuzzy
msgid "Drop the database (DROP)"
-msgstr "אין מאגרי נתונים"
+msgstr "השמטת מסד הנתונים (DROP)"
#: db_operations.php:484
msgid "Copy database to"
-msgstr "העתקת מאגר נתונים אל"
+msgstr "העתקת מסד הנתונים אל"
#: db_operations.php:491 tbl_operations.php:554 tbl_tracking.php:424
msgid "Structure only"
@@ -300,11 +300,11 @@ msgstr "מבנה בלבד"
#: db_operations.php:492 tbl_operations.php:555 tbl_tracking.php:426
msgid "Structure and data"
-msgstr "מבנה ומידע"
+msgstr "מבנה ונתונים"
#: db_operations.php:493 tbl_operations.php:556 tbl_tracking.php:425
msgid "Data only"
-msgstr "מידע בלבד"
+msgstr "נתונים בלבד"
#: db_operations.php:501
msgid "CREATE DATABASE before copying"
@@ -315,7 +315,7 @@ msgstr "CREATE DATABASE לפני העתקה"
#: libraries/config/messages.inc.php:137 tbl_operations.php:562
#, php-format
msgid "Add %s"
-msgstr ""
+msgstr "הוספת %s"
#: db_operations.php:508 libraries/config/messages.inc.php:121
#: tbl_operations.php:318 tbl_operations.php:564
@@ -328,7 +328,7 @@ msgstr "הוספת הגבלות"
#: db_operations.php:525
msgid "Switch to copied database"
-msgstr "מעבר למאגר נתונים שהועתק"
+msgstr "מעבר למסד הנתונים שהועתק"
#: db_operations.php:548 libraries/Index.class.php:446
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
@@ -338,24 +338,22 @@ msgstr "מעבר למאגר נתונים שהועתק"
#: tbl_structure.php:203 tbl_structure.php:872 tbl_tracking.php:259
#: tbl_tracking.php:325
msgid "Collation"
-msgstr "קידוד"
+msgstr "איסוף"
#: db_operations.php:561
-#, fuzzy, php-format
+#, php-format
#| msgid ""
#| " additional features for working with linked tables have been ctivated. "
#| "To find out why click %shere%s."
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
-msgstr ""
-"תכונות נוספות לעבודה עם טבלאות מקושרות בוטלו. לעוד מידע למה לחץ %sכאן%s."
+msgstr "אחסון התצורה של phpMyAdmin הופסקה. כדי לגלות מדוע יש ללחוץ %sכאן%s."
#: db_operations.php:595
-#, fuzzy
#| msgid "Display PDF schema"
msgid "Edit or export relational schema"
-msgstr "הצגת תרשים PDF"
+msgstr "עריכה או יצוא של תבנית יחסית"
#: db_printview.php:101 db_tracking.php:86 db_tracking.php:188
#: libraries/config/messages.inc.php:510 libraries/db_structure.lib.php:32
@@ -406,11 +404,11 @@ msgid "Last check"
msgstr "נבדק לאחרונה"
#: db_printview.php:219 db_structure.php:514
-#, fuzzy, php-format
+#, php-format
#| msgid "%s table(s)"
msgid "%s table"
msgid_plural "%s tables"
-msgstr[0] "%s טבלאות"
+msgstr[0] "טבלה אחת (%s)"
msgstr[1] "%s טבלאות"
#: db_qbe.php:41
@@ -418,10 +416,10 @@ msgid "You have to choose at least one column to display"
msgstr "עליך לבחור לפחות עמודה אחת לתצוגה"
#: db_qbe.php:186
-#, fuzzy, php-format
+#, php-format
#| msgid "Switch to copied table"
msgid "Switch to %svisual builder%s"
-msgstr "מעבר לטבלה שהועתקה"
+msgstr "מעבר ל%sבונה החזותי%s"
#: db_qbe.php:222 libraries/db_structure.lib.php:90
#: libraries/display_tbl.lib.php:1003
@@ -447,11 +445,11 @@ msgstr "יורד"
#: db_qbe.php:286 db_tracking.php:92 libraries/display_tbl.lib.php:427
#: tbl_change.php:287 tbl_tracking.php:654
msgid "Show"
-msgstr "ראייה"
+msgstr "הצגה"
#: db_qbe.php:322
msgid "Criteria"
-msgstr "קריטריון"
+msgstr "קריטריונים"
#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
@@ -473,19 +471,17 @@ msgstr "או"
#: db_qbe.php:529
msgid "Modify"
-msgstr "עריכה"
+msgstr "שינוי"
#: db_qbe.php:606
-#, fuzzy
#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
-msgstr "Add/Delete Criteria Row"
+msgstr "הוספת/הסרת שורות של קריטריונים"
#: db_qbe.php:618
-#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add/Delete columns"
-msgstr "הוספת/מחיקת עמודות שדה"
+msgstr "הוספת/מחיקת עמודות"
#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
@@ -493,12 +489,12 @@ msgstr "עדכון שאילתה"
#: db_qbe.php:639
msgid "Use Tables"
-msgstr "השתמש בטבלאות"
+msgstr "שימוש בטבלאות"
#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
-msgstr ""
+msgstr "שאילתת SQL על מסד הנתונים %s:"
#: db_qbe.php:955 libraries/common.lib.php:1221
msgid "Submit Query"
@@ -509,11 +505,11 @@ msgstr "שליחת שאילתה"
#: libraries/auth/cookie.auth.lib.php:570 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:237
msgid "Access denied"
-msgstr "גישה נדתחה"
+msgstr "הגישה נדחתה"
#: db_search.php:43 db_search.php:286
msgid "at least one of the words"
-msgstr "לפחות אחת מן המילים"
+msgstr "לפחות אחת מהמילים"
#: db_search.php:44 db_search.php:287
msgid "all words"
@@ -521,16 +517,16 @@ msgstr "כל המילים"
#: db_search.php:45 db_search.php:288
msgid "the exact phrase"
-msgstr "הביטוי המדוייק"
+msgstr "הביטוי במדויק"
#: db_search.php:46 db_search.php:289
msgid "as regular expression"
-msgstr "כביטוי רגיל"
+msgstr "כביטוי רגולרי"
#: db_search.php:209
#, php-format
msgid "Search results for \"%s\" %s:"
-msgstr "תוצאות חיפוש עבור \"%s\" %s:"
+msgstr "תוצאות החיפוש אחר „%s“ %s:"
#: db_search.php:227
#, php-format
@@ -546,10 +542,10 @@ msgid "Browse"
msgstr "עיון"
#: db_search.php:239
-#, fuzzy, php-format
+#, php-format
#| msgid "Dumping data for table"
msgid "Delete the matches for the %s table?"
-msgstr "הוצאת מידע עבור טבלה"
+msgstr "האם למחוק את התוצאות עבור הטבלה %s?"
#: db_search.php:239 libraries/display_tbl.lib.php:1426
#: libraries/display_tbl.lib.php:2473
@@ -564,48 +560,44 @@ msgid "Delete"
msgstr "מחיקה"
#: db_search.php:252
-#, fuzzy, php-format
+#, php-format
#| msgid "Total: %s match(es)"
msgid "Total: %s match"
msgid_plural "Total: %s matches"
-msgstr[0] "סה\"כ: %s פריטים"
-msgstr[1] "סה\"כ: %s פריטים"
+msgstr[0] "סה״כ: פריט אחד (%s)"
+msgstr[1] "סה״כ: %s פריטים"
#: db_search.php:274
msgid "Search in database"
-msgstr "חפש במסד הנתונים"
+msgstr "חיפוש במסד הנתונים"
#: db_search.php:277
-#, fuzzy
#| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgid "Words or values to search for (wildcard: \"%\"):"
-msgstr "מילים או ערכים עבור חיפוש (תו כללי: \"%\"):"
+msgstr "מילים או ערכים לחיפוש אחריהם (תו כללי: „%“):"
#: db_search.php:282
msgid "Find:"
-msgstr "מצא:"
+msgstr "חיפוש:"
#: db_search.php:286 db_search.php:287
msgid "Words are separated by a space character (\" \")."
-msgstr "מילים מופרדות ע\"י תו רווח (\" \")."
+msgstr "מילים מופרדות ברווח („ “)."
#: db_search.php:300
-#, fuzzy
#| msgid "Inside table(s):"
msgid "Inside tables:"
-msgstr "בתוך הטבלה/הטבלאות:"
+msgstr "בתוך הטבלאות:"
#: db_search.php:330
-#, fuzzy
#| msgid "Inside table(s):"
msgid "Inside column:"
-msgstr "בתוך הטבלה/הטבלאות:"
+msgstr "בתוך העמודה:"
#: db_structure.php:68
-#, fuzzy
#| msgid "No tables found in database."
msgid "No tables found in database"
-msgstr "לא נמצאו טבלאות במאגר נתונים."
+msgstr "לא נמצאו טבלאות במסד הנתונים"
#: db_structure.php:228 libraries/mysql_charsets.lib.php:409
#: libraries/mysql_charsets.lib.php:416
@@ -615,44 +607,43 @@ msgstr "לא ידוע"
#: db_structure.php:315 tbl_operations.php:709
#, php-format
msgid "Table %s has been emptied"
-msgstr "טבלה %s רוקנה"
+msgstr "הטבלה %s רוקנה"
#: db_structure.php:328 tbl_operations.php:728
-#, fuzzy, php-format
+#, php-format
msgid "View %s has been dropped"
-msgstr "שדה %s נמחק"
+msgstr "התצוגה %s נשמטה"
#: db_structure.php:328 tbl_operations.php:728
#, php-format
msgid "Table %s has been dropped"
-msgstr "טבלה %s נמחקה"
+msgstr "הטבלה %s נשמטה"
#: db_structure.php:338 tbl_create.php:281
msgid "Tracking is active."
-msgstr ""
+msgstr "המעקב פעיל."
#: db_structure.php:343 tbl_create.php:284
msgid "Tracking is not active."
-msgstr ""
+msgstr "המעקב אינו פעיל."
#: db_structure.php:451 libraries/display_tbl.lib.php:2356
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
-msgstr ""
+msgstr "לתצוגה זו יש לפחות מספר כזה של שורות. נא לפנות ל%sתיעוד%s."
#: db_structure.php:467 db_structure.php:481 libraries/header.inc.php:161
#: libraries/tbl_info.inc.php:60 tbl_structure.php:209
msgid "View"
-msgstr ""
+msgstr "תצוגה"
#: db_structure.php:521 libraries/db_structure.lib.php:35
#: libraries/server_links.inc.php:90 server_replication.php:31
#: server_replication.php:162 server_status.php:597
-#, fuzzy
msgid "Replication"
-msgstr "יחסים"
+msgstr "שכפול"
#: db_structure.php:525
msgid "Sum"
@@ -661,7 +652,7 @@ msgstr "סכום"
#: db_structure.php:532 libraries/StorageEngine.class.php:338
#, php-format
msgid "%s is the default storage engine on this MySQL server."
-msgstr "%s הוא מנוע האחסון ברירת המחדשל של שרת MySQL זה."
+msgstr "%s הוא מנוע האחסון כבררת המחדל של שרת MySQL זה."
#: db_structure.php:561 db_structure.php:578 db_structure.php:579
#: libraries/display_tbl.lib.php:2498 libraries/display_tbl.lib.php:2503
@@ -675,17 +666,17 @@ msgstr "עם הנבחרים:"
#: server_databases.php:265 server_privileges.php:684
#: server_privileges.php:1763 tbl_structure.php:560
msgid "Check All"
-msgstr "בחירת הכל"
+msgstr "סימון הכול"
#: db_structure.php:568 libraries/display_tbl.lib.php:2494
#: libraries/replication_gui.lib.php:35 server_databases.php:267
#: server_privileges.php:687 server_privileges.php:1767 tbl_structure.php:564
msgid "Uncheck All"
-msgstr "בטל סימון הכל"
+msgstr "ביטול הסימון הכולל"
#: db_structure.php:573
msgid "Check tables having overhead"
-msgstr "בדיקת טבלאות עבור תקורה"
+msgstr "בדיקת טבלאות בעלות תקורה"
#: db_structure.php:581 libraries/common.lib.php:3356
#: libraries/common.lib.php:3357 libraries/config/messages.inc.php:166
@@ -695,7 +686,7 @@ msgstr "בדיקת טבלאות עבור תקורה"
#: prefs_manage.php:286 server_privileges.php:1449 server_status.php:1606
#: setup/frames/menu.inc.php:21
msgid "Export"
-msgstr "ייצוא"
+msgstr "יצוא"
#: db_structure.php:583 db_structure.php:639
#: libraries/display_tbl.lib.php:2606 tbl_structure.php:613
@@ -712,7 +703,7 @@ msgstr "ריקון"
#: libraries/common.lib.php:3351 server_databases.php:269
#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:573
msgid "Drop"
-msgstr "הסרה"
+msgstr "השמטה"
#: db_structure.php:591 tbl_operations.php:612
msgid "Check table"
@@ -732,27 +723,25 @@ msgstr "ניתוח טבלה"
#: db_structure.php:601
msgid "Add prefix to table"
-msgstr ""
+msgstr "הוספת קידומת לטבלה"
#: db_structure.php:603 libraries/mult_submits.inc.php:251
-#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
-msgstr "החלפת נתוני הטבלה עם הקובץ"
+msgstr "החלפת קידומת הטבלה"
#: db_structure.php:605 libraries/mult_submits.inc.php:251
-#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
-msgstr "החלפת נתוני הטבלה עם הקובץ"
+msgstr "העתקת הטבלה עם קידומת"
#: db_structure.php:642 libraries/schema/User_Schema.class.php:423
msgid "Data Dictionary"
-msgstr "מילון מידע"
+msgstr "מילון נתונים"
#: db_tracking.php:80
msgid "Tracked tables"
-msgstr ""
+msgstr "טבלאות במעקב"
#: db_tracking.php:85 libraries/config/messages.inc.php:504
#: libraries/export/htmlword.php:78 libraries/export/latex.php:156
@@ -765,20 +754,19 @@ msgstr ""
#: server_synchronize.php:1277 server_synchronize.php:1281
#: tbl_tracking.php:648
msgid "Database"
-msgstr "מאגר נתונים"
+msgstr "מסד נתונים"
#: db_tracking.php:87
msgid "Last version"
-msgstr ""
+msgstr "הגרסה האחרונה"
#: db_tracking.php:88 tbl_tracking.php:651
-#, fuzzy
msgid "Created"
-msgstr "יצירה"
+msgstr "מועד היצירה"
#: db_tracking.php:89 tbl_tracking.php:652
msgid "Updated"
-msgstr ""
+msgstr "עודכנה"
#: db_tracking.php:90 js/messages.php:187 libraries/rte/rte_events.lib.php:380
#: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51
@@ -796,43 +784,39 @@ msgstr "פעולה"
#: db_tracking.php:102 js/messages.php:34
msgid "Delete tracking data for this table"
-msgstr ""
+msgstr "מחיקת נתוני המעקב לטבלה זו"
#: db_tracking.php:120 tbl_tracking.php:605 tbl_tracking.php:663
msgid "active"
-msgstr ""
+msgstr "פעיל"
#: db_tracking.php:122 tbl_tracking.php:607 tbl_tracking.php:665
msgid "not active"
-msgstr ""
+msgstr "לא פעיל"
#: db_tracking.php:135
-#, fuzzy
msgid "Versions"
-msgstr "Persian"
+msgstr "גרסאות"
#: db_tracking.php:136 tbl_tracking.php:415 tbl_tracking.php:683
msgid "Tracking report"
-msgstr ""
+msgstr "דוח המעקב"
#: db_tracking.php:137 tbl_tracking.php:235 tbl_tracking.php:685
-#, fuzzy
msgid "Structure snapshot"
-msgstr "מבנה בלבד"
+msgstr "העתק של המבנה"
#: db_tracking.php:183
msgid "Untracked tables"
-msgstr ""
+msgstr "טבלאות שאינן במעקב"
#: db_tracking.php:201 tbl_structure.php:639
-#, fuzzy
msgid "Track table"
-msgstr "בדיקת טבלה"
+msgstr "מעקב אחר טבלה"
#: db_tracking.php:227
-#, fuzzy
msgid "Database Log"
-msgstr "מאגר נתונים"
+msgstr "יומן מסד נתונים"
#: enum_editor.php:23 js/messages.php:266
#: libraries/rte/rte_routines.lib.php:690
@@ -860,38 +844,36 @@ msgstr "הוספת משתמש חדש"
#: enum_editor.php:129 gis_data_editor.php:317
msgid "Output"
-msgstr ""
+msgstr "פלט"
#: enum_editor.php:130
msgid "Copy and paste the joined values into the \"Length/Values\" field"
msgstr ""
#: export.php:29
-#, fuzzy
#| msgid "Bar type"
msgid "Bad type!"
-msgstr "סוג שאילתה"
+msgstr "הסוג שגוי!"
#: export.php:77
msgid "Selected export type has to be saved in file!"
-msgstr ""
+msgstr "סוג הייצוא הנבחר חייב להישמר לקובץ!"
#: export.php:106
-#, fuzzy
#| msgid "Add new field"
msgid "Bad parameters!"
-msgstr "הוספת שדה חדש"
+msgstr "פרמטרים שגויים!"
#: export.php:166 export.php:191 export.php:652
#, php-format
msgid "Insufficient space to save the file %s."
-msgstr "אןי מספיק מקום לשמור את הקובץ %s."
+msgstr "אין מספיק מקום לשמירת הקובץ %s."
#: export.php:307
#, php-format
msgid ""
"File %s already exists on server, change filename or check overwrite option."
-msgstr "קובץ %s כבר קיים על השרת, שנה שם קובץ או בדוק אופציית כתיבה-על."
+msgstr "הקובץ %s כבר קיים בשרת, נא לשנות את שם הקובץ או לסמן את אפשרות השכתוב."
#: export.php:311 export.php:315
#, php-format
@@ -901,104 +883,99 @@ msgstr "לשרת אין הרשאה לשמור את קובץ %s."
#: export.php:654
#, php-format
msgid "Dump has been saved to file %s."
-msgstr "הוצאה נשמרה אל קובץ %s."
+msgstr "השליפה נשמרה אל הקובץ %s."
#: file_echo.php:21
-#, fuzzy
msgid "Invalid export type"
-msgstr "סוג ייצוא"
+msgstr "סוג הייצוא שגוי"
#: gis_data_editor.php:84
#, php-format
msgid "Value for the column \"%s\""
-msgstr ""
+msgstr "ערך עבור העמודה „%s“"
#: gis_data_editor.php:113 tbl_gis_visualization.php:172
msgid "Use OpenStreetMaps as Base Layer"
-msgstr ""
+msgstr "שימוש ב־OpenStreetMaps כשכבת הבסיס"
#: gis_data_editor.php:134
msgid "SRID"
-msgstr ""
+msgstr "SRID"
#: gis_data_editor.php:151 js/messages.php:323
#: libraries/display_tbl.lib.php:693
msgid "Geometry"
-msgstr ""
+msgstr "פני השטח"
#: gis_data_editor.php:172 js/messages.php:319
msgid "Point"
-msgstr ""
+msgstr "נקודה"
#: gis_data_editor.php:173 gis_data_editor.php:197 gis_data_editor.php:245
#: gis_data_editor.php:297 js/messages.php:317
msgid "X"
-msgstr ""
+msgstr "X"
#: gis_data_editor.php:175 gis_data_editor.php:199 gis_data_editor.php:247
#: gis_data_editor.php:299 js/messages.php:318
msgid "Y"
-msgstr ""
+msgstr "Y"
#: gis_data_editor.php:195 gis_data_editor.php:243 gis_data_editor.php:295
#: js/messages.php:320
#, php-format
msgid "Point %d"
-msgstr ""
+msgstr "נקודה %d"
#: gis_data_editor.php:204 gis_data_editor.php:250 gis_data_editor.php:302
#: js/messages.php:326
-#, fuzzy
#| msgid "Add new field"
msgid "Add a point"
-msgstr "הוספת שדה חדש"
+msgstr "הוספת נקודה"
#: gis_data_editor.php:220 js/messages.php:321
-#, fuzzy
#| msgid "Lines terminated by"
msgid "Linestring"
-msgstr "שורות מסתיימות ע\"י"
+msgstr "מחרוזת שורה"
#: gis_data_editor.php:223 gis_data_editor.php:279 js/messages.php:325
msgid "Outer Ring"
-msgstr ""
+msgstr "טבעת חיצונית"
#: gis_data_editor.php:225 gis_data_editor.php:281 js/messages.php:324
msgid "Inner Ring"
-msgstr ""
+msgstr "טבעת פנימית"
#: gis_data_editor.php:252
-#, fuzzy
#| msgid "Add a new User"
msgid "Add a linestring"
-msgstr "הוספת משתמש חדש"
+msgstr "הוספת מחרוזת שורה"
#: gis_data_editor.php:252 gis_data_editor.php:304 js/messages.php:327
-#, fuzzy
#| msgid "Add a new User"
msgid "Add an inner ring"
-msgstr "הוספת משתמש חדש"
+msgstr "הוספת טבעת פנימית"
#: gis_data_editor.php:266 js/messages.php:322
msgid "Polygon"
-msgstr ""
+msgstr "מצולע"
#: gis_data_editor.php:306 js/messages.php:328
-#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add a polygon"
-msgstr "הוספת %s תאים"
+msgstr "הוספת מצולע"
#: gis_data_editor.php:310
-#, fuzzy
msgid "Add geometry"
-msgstr "הוספת משתמש חדש"
+msgstr "הוספת פני שטח"
#: gis_data_editor.php:318
msgid ""
"Chose \"GeomFromText\" from the \"Function\" column and paste the below "
"string into the \"Value\" field"
msgstr ""
+"יש לבחור ב„גאומטריה מטקסט” מהעמודה „פונקציה“ ולהדביק את המחרוזת שלהלן לשדה "
+"„ערך“"
#: import.php:57
#, php-format
@@ -1006,19 +983,21 @@ msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
+"כפי הנראה ניסית להוריד קובץ גדול מדי. נא לפנות ל%sתיעוד%s לקבלת דרכים לעקיפת "
+"הגבלה זו."
#: import.php:170 import.php:419
msgid "Showing bookmark"
-msgstr ""
+msgstr "הצגת סימנייה"
#: import.php:180 import.php:415
msgid "The bookmark has been deleted."
-msgstr "כתובת מועדפת נמחקה."
+msgstr "הסימנייה נמחקה."
#: import.php:291 import.php:344 libraries/File.class.php:457
#: libraries/File.class.php:540
msgid "File could not be read"
-msgstr "נכשל בקריאת הקובץ"
+msgstr "לא ניתן לקרוא את הקובץ"
#: import.php:299 import.php:308 import.php:327 import.php:336
#: libraries/File.class.php:610 libraries/File.class.php:618
@@ -1028,6 +1007,8 @@ msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
"for it is not implemented or disabled by your configuration."
msgstr ""
+"ניסית לטעון קובץ עם דחיסה שאינה נתמכת (%s). או שהתמיכה בדחיסה לא הוטמעה או "
+"שבוטלה בהגדרות שלך."
#: import.php:349
msgid ""
@@ -1035,44 +1016,51 @@ msgid ""
"file size exceeded the maximum size permitted by your PHP configuration. See "
"[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]."
msgstr ""
+"לא התקבלו נתונים לייבוא. או שלא נשלח שום קובץ או שגודל הקובץ חרג מהגודל "
+"המרבי המותר בתצורת ה־PHP שלך. ניתן לעיין "
+"ב[a@./Documentation.html#faq1_16@Documentation]שו״ת 1.16[/a]."
#: import.php:366
msgid ""
"Cannot convert file's character set without character set conversion library"
-msgstr ""
+msgstr "לא ניתן להמיר את קידוד התווים של הקובץ ללא ספרייה להמרת קידודי תווים"
#: import.php:390 libraries/display_import.lib.php:23
msgid "Could not load import plugins, please check your installation!"
-msgstr ""
+msgstr "לא ניתן לטעון את תוספי הייבוא, נא לבדוק האם ההתקנה שלך תקינה!"
#: import.php:421 sql.php:939
#, php-format
msgid "Bookmark %s created"
-msgstr ""
+msgstr "הסימנייה %s נוצרה"
#: import.php:427 import.php:433
#, php-format
msgid "Import has been successfully finished, %d queries executed."
-msgstr ""
+msgstr "הייבוא הושלם בהצלחה, הופעלו %d שאילתות."
#: import.php:442
msgid ""
"Script timeout passed, if you want to finish import, please resubmit same "
"file and import will resume."
msgstr ""
+"תום זמן ההמתנה של הסקריפט עבר, אם ברצונך לסיים את הייבוא נא לשלוח מחדש את "
+"אותו הקובץ והייבוא יימשך."
#: import.php:444
msgid ""
"However on last run no data has been parsed, this usually means phpMyAdmin "
"won't be able to finish this import unless you increase php time limits."
msgstr ""
+"עם זאת, בהרצה האחרונה לא נותחו נתונים כלל, לרוב משמעות הדבר היא ש־phpMyAdmin "
+"לא יוכל להשלים יבוא זה אלמלא גבול זמן ההמתנה של ה־php יוגדל."
#: import.php:472 libraries/Message.class.php:175
#: libraries/display_tbl.lib.php:2393 libraries/rte/rte_routines.lib.php:1205
#: libraries/sql_query_form.lib.php:113 tbl_operations.php:229
#: tbl_relation.php:284 tbl_row_action.php:126 view_operations.php:60
msgid "Your SQL query has been executed successfully"
-msgstr "שאילתת SQL שלך בוצעה בהצלחה"
+msgstr "שאילתת ה־SQL שלך בוצעה בהצלחה"
#: import_status.php:29 libraries/common.lib.php:709
#: libraries/schema/Export_Relation_Schema.class.php:237 user_password.php:109
@@ -1081,11 +1069,13 @@ msgstr "חזרה"
#: index.php:164
msgid "phpMyAdmin is more friendly with a frames-capable browser."
-msgstr "phpMyAdmin יותר ידידותי עם דפדפן frames-capable."
+msgstr ""
+"phpMyAdmin מתנהג בצורה יותר ידידותית עם דפדפן התומך במסגרות (frames-"
+"capable)."
#: js/messages.php:27 libraries/import.lib.php:103 sql.php:253
msgid "\"DROP DATABASE\" statements are disabled."
-msgstr "הוראות \"DROP DATABASE\" מבוטלות."
+msgstr "הוראות \"DROP DATABASE\" מנוטרלות."
#: js/messages.php:30 libraries/mult_submits.inc.php:280 sql.php:354
msgid "Do you really want to "
@@ -1093,27 +1083,25 @@ msgstr "האם אתה באמת רוצה "
#: js/messages.php:31 libraries/mult_submits.inc.php:280 sql.php:339
msgid "You are about to DESTROY a complete database!"
-msgstr "אתה עומד להרוס מאגר נתונים שלם!"
+msgstr "פעולה זו עלולה להשמיד מסד נתונים שלם!"
#: js/messages.php:32
-#, fuzzy
#| msgid "You are about to DESTROY a complete database!"
msgid "You are about to DESTROY a complete table!"
-msgstr "אתה עומד להרוס מאגר נתונים שלם!"
+msgstr "פעולה זו עלולה להשמיד טבלה שלמה!"
#: js/messages.php:33
-#, fuzzy
#| msgid "You are about to DESTROY a complete database!"
msgid "You are about to TRUNCATE a complete table!"
-msgstr "אתה עומד להרוס מאגר נתונים שלם!"
+msgstr "פעולה זו עלולה למחוק טבלה שלמה!"
#: js/messages.php:35
msgid "Deleting tracking data"
-msgstr ""
+msgstr "נתוני המעקב נמחקים"
#: js/messages.php:36
msgid "Dropping Primary Key/Index"
-msgstr ""
+msgstr "מפתח/אינדקס ראשיים מושמטים"
#: js/messages.php:37
msgid "This operation could take a long time. Proceed anyway?"
@@ -1137,29 +1125,26 @@ msgid "This is not a number!"
msgstr "זה אינו מספר!"
#: js/messages.php:46
-#, fuzzy
#| msgid "Add new field"
msgid "Add Index"
-msgstr "הוספת שדה חדש"
+msgstr "הוספת אינדקס"
#: js/messages.php:47
-#, fuzzy
#| msgid "Edit next row"
msgid "Edit Index"
-msgstr "עריכת השורה הבאה"
+msgstr "עריכת האינדקס"
#: js/messages.php:48 tbl_indexes.php:293
-#, fuzzy, php-format
+#, php-format
#| msgid "Add %s field(s)"
msgid "Add %d column(s) to index"
-msgstr "הוספת %s תאים"
+msgstr "הוספת %d עמודות לאינדקס"
#. l10n: Default description for the y-Axis of Charts
#: js/messages.php:52
-#, fuzzy
#| msgid "Total"
msgid "Total count"
-msgstr "סה\"כ"
+msgstr "ספירה כללית"
#: js/messages.php:55
msgid "The host name is empty!"
@@ -1167,38 +1152,35 @@ msgstr "שם המארח ריק!"
#: js/messages.php:56
msgid "The user name is empty!"
-msgstr "שם המשתמש ריק !"
+msgstr "שם המשתמש ריק!"
#: js/messages.php:57 server_privileges.php:1316 user_password.php:50
msgid "The password is empty!"
-msgstr "הסיסמא ריקה!"
+msgstr "הססמה ריקה!"
#: js/messages.php:58 server_privileges.php:1314 user_password.php:53
msgid "The passwords aren't the same!"
-msgstr "הסיסמאות אינן זהות!"
+msgstr "הססמאות אינן זהות!"
#: js/messages.php:59 server_privileges.php:1773 server_privileges.php:1797
#: server_privileges.php:2209 server_privileges.php:2414
-#, fuzzy
#| msgid "Any user"
msgid "Add user"
-msgstr "כל משתמש"
+msgstr "הוספת משתמש"
#: js/messages.php:60
-#, fuzzy
msgid "Reloading Privileges"
-msgstr "הרשאות גלובליות"
+msgstr "ההרשאות נטענו מחדש"
#: js/messages.php:61
-#, fuzzy
#| msgid "Remove selected users"
msgid "Removing Selected Users"
-msgstr "הסרת משתמשים שנבחרו"
+msgstr "הסרת המשתמש הנבחרים"
#: js/messages.php:62 js/messages.php:141 tbl_tracking.php:235
#: tbl_tracking.php:415
msgid "Close"
-msgstr ""
+msgstr "סגירה"
#: js/messages.php:65 js/messages.php:278 libraries/Index.class.php:468
#: libraries/common.lib.php:648 libraries/common.lib.php:1197
@@ -1209,23 +1191,21 @@ msgid "Edit"
msgstr "עריכה"
#: js/messages.php:66 server_status.php:803
-#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
-msgstr "בחירת שרת"
+msgstr "תרשים תעבורה חי"
#: js/messages.php:67 server_status.php:806
msgid "Live conn./process chart"
-msgstr ""
+msgstr "תרשים חיבור/תהליך חי"
#: js/messages.php:68 server_status.php:824
-#, fuzzy
msgid "Live query chart"
-msgstr "שאילתת SQL"
+msgstr "תרשים תשאול חי"
#: js/messages.php:70
msgid "Static data"
-msgstr ""
+msgstr "נתונים סטטיים"
#. l10n: Total number of queries
#: js/messages.php:72 libraries/build_html_for_db.lib.php:46
@@ -1233,12 +1213,12 @@ msgstr ""
#: server_status.php:1126 server_status.php:1187 tbl_printview.php:310
#: tbl_structure.php:804
msgid "Total"
-msgstr "סה\"כ"
+msgstr "סה״כ"
#. l10n: Other, small valued, queries
#: js/messages.php:74 server_status.php:603 server_status.php:1022
msgid "Other"
-msgstr ""
+msgstr "אחר"
#. l10n: Thousands separator
#: js/messages.php:76 libraries/common.lib.php:1452
@@ -1252,50 +1232,47 @@ msgstr "."
#: js/messages.php:80
msgid "KiB sent since last refresh"
-msgstr ""
+msgstr "KiB שנשלחו מאז הרענון האחרון"
#: js/messages.php:81
msgid "KiB received since last refresh"
-msgstr ""
+msgstr "KiB שהתקבלו מאז הרענון האחרון"
#: js/messages.php:82
-#, fuzzy
#| msgid "Server Choice"
msgid "Server traffic (in KiB)"
-msgstr "בחירת שרת"
+msgstr "תעבורת השרת (ב־KiB)"
#: js/messages.php:83
msgid "Connections since last refresh"
-msgstr ""
+msgstr "התחברויות מאז הרענון האחרון"
#: js/messages.php:84 js/messages.php:122 server_status.php:1235
msgid "Processes"
msgstr "תהליכים"
#: js/messages.php:85
-#, fuzzy
#| msgid "Connections"
msgid "Connections / Processes"
-msgstr "חיבורים"
+msgstr "חיבורים / תהליכים"
#. l10n: Questions is the name of a MySQL Status variable
#: js/messages.php:87
msgid "Questions since last refresh"
-msgstr ""
+msgstr "שאלות מאז הרענון האחרון"
#. l10n: Questions is the name of a MySQL Status variable
#: js/messages.php:89
msgid "Questions (executed statements by the server)"
-msgstr ""
+msgstr "שאלות (הצהרות שהופעלו על ידי השרת)"
#: js/messages.php:91 server_status.php:785
-#, fuzzy
msgid "Query statistics"
-msgstr "סטטיסטיקת שורה"
+msgstr "סטטיסטיקת תשאולים"
#: js/messages.php:94
msgid "Local monitor configuration incompatible"
-msgstr ""
+msgstr "תצורת מעקב מקומית אינה נתמכת"
#: js/messages.php:95
msgid ""
@@ -12091,7 +12068,7 @@ msgid "Release Series"
msgstr "בחירת טבלאות"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/hi.po b/po/hi.po
index d117f51382..e9e8c1ee81 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -11940,7 +11940,7 @@ msgid "Release Series"
msgstr "टेबल चुनिये"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/hr.po b/po/hr.po
index 3a74220219..84250fdb42 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -12554,7 +12554,7 @@ msgid "Release Series"
msgstr "Odaberite tablice"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/hu.po b/po/hu.po
index e8474b4657..93909ec630 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -4,15 +4,15 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-09 19:51+0200\n"
-"PO-Revision-Date: 2012-03-28 16:21+0200\n"
-"Last-Translator: Michal Čihař \n"
+"PO-Revision-Date: 2012-04-20 00:10+0200\n"
+"Last-Translator: Gergely Nagy \n"
"Language-Team: hungarian \n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Weblate 0.8\n"
+"X-Generator: Weblate 0.9\n"
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:350
#: libraries/display_tbl.lib.php:359 server_privileges.php:1677
@@ -808,7 +808,6 @@ msgstr "Adatbázis Log"
#: enum_editor.php:23 js/messages.php:266
#: libraries/rte/rte_routines.lib.php:690
-#, fuzzy
msgid "ENUM/SET editor"
msgstr "ENUM/SET szerkesztő"
@@ -935,10 +934,9 @@ msgid "Inner Ring"
msgstr "Belső gyűrű"
#: gis_data_editor.php:252
-#, fuzzy
#| msgid "Add a new User"
msgid "Add a linestring"
-msgstr "Új felhasználó hozzáadása"
+msgstr "Új sorvég hozzáadása"
#: gis_data_editor.php:252 gis_data_editor.php:304 js/messages.php:327
msgid "Add an inner ring"
@@ -1273,20 +1271,18 @@ msgid ""
msgstr ""
#: js/messages.php:97
-#, fuzzy
#| msgid "Query cache"
msgid "Query cache efficiency"
-msgstr "Lekérdezési gyorsítótár"
+msgstr "Lekérdezési gyorsítótár hatékonysága"
#: js/messages.php:98
msgid "Query cache usage"
msgstr "Lekérdezési gyorsítótár használat"
#: js/messages.php:99
-#, fuzzy
#| msgid "Query cache"
msgid "Query cache used"
-msgstr "Lekérdezési gyorsítótár"
+msgstr "Lekérdezési gyorsítótárat használatban"
#: js/messages.php:101
msgid "System CPU Usage"
@@ -1417,14 +1413,13 @@ msgid "Edit title and labels"
msgstr "Cím és címkék szerkesztése"
#: js/messages.php:140
-#, fuzzy
#| msgid "Snap to grid"
msgid "Add chart to grid"
-msgstr "Rácshoz illesztés"
+msgstr "Diagram hozzáadása"
#: js/messages.php:142
msgid "Please add at least one variable to the series"
-msgstr ""
+msgstr "Legalább egy változót adjon meg a sorozathoz"
#: js/messages.php:143 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:573 libraries/export/sql.php:1093
@@ -1436,11 +1431,11 @@ msgstr "Nincs"
#: js/messages.php:144
msgid "Resume monitor"
-msgstr ""
+msgstr "Megfigyelés visszakapcsolása"
#: js/messages.php:145
msgid "Pause monitor"
-msgstr ""
+msgstr "Megfigyelés megállítása"
#: js/messages.php:147
msgid "general_log and slow_query_log are enabled."
@@ -1540,7 +1535,7 @@ msgstr ""
#: js/messages.php:171
#, php-format
msgid "Divided by %s"
-msgstr ""
+msgstr "Osztva %s -el"
#: js/messages.php:172
msgid "Unit"
@@ -1548,21 +1543,20 @@ msgstr "Egység"
#: js/messages.php:174
msgid "From slow log"
-msgstr ""
+msgstr "a slow naplóból"
#: js/messages.php:175
msgid "From general log"
-msgstr ""
+msgstr "az általános naplóból"
#: js/messages.php:176
msgid "Analysing & loading logs. This may take a while."
msgstr "Elemzés és naplók betöltése. Ez eltarthat egy ideig."
#: js/messages.php:177
-#, fuzzy
#| msgid "Read requests"
msgid "Cancel request"
-msgstr "Olvasási kérések"
+msgstr "Kérés elvetése"
#: js/messages.php:178
msgid ""
@@ -12210,7 +12204,7 @@ msgid "Release Series"
msgstr "Táblák kiválasztása"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/id.po b/po/id.po
index 7afde5f70c..48f0e47ca8 100644
--- a/po/id.po
+++ b/po/id.po
@@ -11636,7 +11636,7 @@ msgid "Release Series"
msgstr "Seri Rilis"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/it.po b/po/it.po
index c8c23174ae..fc1da9a275 100644
--- a/po/it.po
+++ b/po/it.po
@@ -12238,7 +12238,7 @@ msgid "Release Series"
msgstr "Cancella la serie"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr "La versione del server MySQL è inferiore a 5.1."
#: po/advisory_rules.php:37
diff --git a/po/ja.po b/po/ja.po
index d04a0089ac..3a6816b95d 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-09 19:51+0200\n"
-"PO-Revision-Date: 2012-04-09 12:19+0200\n"
+"PO-Revision-Date: 2012-04-21 08:15+0200\n"
"Last-Translator: Yuichiro Takahashi \n"
"Language-Team: japanese \n"
"Language: ja\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 0.8\n"
+"X-Generator: Weblate 0.10\n"
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:350
#: libraries/display_tbl.lib.php:359 server_privileges.php:1677
@@ -4312,7 +4312,7 @@ msgstr "表示できる SQL 文の最大の長さ"
#: libraries/config/messages.inc.php:309 libraries/config/messages.inc.php:314
#: libraries/config/messages.inc.php:341
msgid "Users cannot set a higher value"
-msgstr "ユーザはこれより高い値を設定することはできません。"
+msgstr "ユーザはこれより高い値を設定することはできません"
#: libraries/config/messages.inc.php:310
msgid "Maximum number of databases displayed in left frame and database list"
@@ -4508,13 +4508,11 @@ msgstr "テーブルのソートを記憶する"
#: libraries/config/messages.inc.php:354
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
-msgstr ""
-"カラム名ヘッダを何行に置きに挿入するか。[kbd]0[/kbd] でこの機能は無効になりま"
-"す。"
+msgstr "カラム名を何行に置きに挿入するか。[kbd]0[/kbd] でこの機能は無効になります。"
#: libraries/config/messages.inc.php:355
msgid "Repeat headers"
-msgstr "カラム名ヘッダの繰り返し"
+msgstr "カラム名の差し込み間隔"
#: libraries/config/messages.inc.php:356
msgid "Show help button instead of Documentation text"
@@ -9633,7 +9631,7 @@ msgstr "ランタイム情報"
#: server_status.php:786
msgid "All status variables"
-msgstr "全ての状態変数"
+msgstr "すべての状態変数"
#: server_status.php:787
msgid "Monitor"
@@ -12006,7 +12004,7 @@ msgid "Release Series"
msgstr "バージョン系統"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr "MySQL サーバのバージョンが 5.1 未満です。"
#: po/advisory_rules.php:37
diff --git a/po/ka.po b/po/ka.po
index 0fb3779c5c..a14278b7a9 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -12462,7 +12462,7 @@ msgid "Release Series"
msgstr "ცხრილების არჩევა"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/ko.po b/po/ko.po
index 4116ed2655..f3305c9874 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -11791,7 +11791,7 @@ msgid "Release Series"
msgstr "모두 선택"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/lt.po b/po/lt.po
index 86f9a08d7e..e66a8ada5d 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-09 19:51+0200\n"
-"PO-Revision-Date: 2012-03-30 19:57+0200\n"
-"Last-Translator: Kęstutis \n"
+"PO-Revision-Date: 2012-04-18 15:01+0200\n"
+"Last-Translator: Edgaras Janušauskas \n"
"Language-Team: lithuanian \n"
"Language: lt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
-"%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: Weblate 0.8\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%"
+"100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Weblate 0.9\n"
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:350
#: libraries/display_tbl.lib.php:359 server_privileges.php:1677
@@ -823,16 +823,14 @@ msgid "Values for column %s"
msgstr "Stulpelio „%s“ reikšmės"
#: enum_editor.php:34 js/messages.php:269
-#, fuzzy
#| msgid "Enter each value in a separate field."
msgid "Enter each value in a separate field"
-msgstr "Įveskite kiekvieną reikšmę atskirame laukelyje."
+msgstr "Įveskite kiekvieną reikšmę atskirame laukelyje"
#: enum_editor.php:123
-#, fuzzy
#| msgid "+ Add a value"
msgid "Add a value"
-msgstr "+ Pridėti reikšmę"
+msgstr "Pridėti reikšmę"
#: enum_editor.php:129 gis_data_editor.php:317
msgid "Output"
@@ -952,13 +950,12 @@ msgstr "Sukurti naują vartotoją"
#: gis_data_editor.php:266 js/messages.php:322
msgid "Polygon"
-msgstr ""
+msgstr "Daugiakampis"
#: gis_data_editor.php:306 js/messages.php:328
-#, fuzzy
#| msgid "Add column"
msgid "Add a polygon"
-msgstr "Pridėti stulpelį"
+msgstr "Pridėti daugiakampį"
#: gis_data_editor.php:310
#, fuzzy
@@ -1120,7 +1117,6 @@ msgid "This is not a number!"
msgstr "Įveskite skaičių!"
#: js/messages.php:46
-#, fuzzy
#| msgid "Add index"
msgid "Add Index"
msgstr "Pridėti indeksą"
@@ -2609,7 +2605,7 @@ msgstr "Kelias iki temos nerastas temai %s!"
#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27
msgid "Theme"
-msgstr "Apipavidalinimas"
+msgstr "Išvaizda"
#: libraries/auth/config.auth.lib.php:71
msgid "Cannot connect: invalid settings."
@@ -5579,7 +5575,7 @@ msgstr "Suderinamas su MySQL 4.0"
#: libraries/display_create_database.lib.php:21
#: libraries/display_create_database.lib.php:39
msgid "Create database"
-msgstr "Sukurti duombazę"
+msgstr "Sukurti duomenų bazę"
#: libraries/display_create_database.lib.php:33
msgid "Create"
@@ -8396,10 +8392,9 @@ msgid "General Settings"
msgstr "Pagrindiniai nustatymai"
#: main.php:109
-#, fuzzy
#| msgid "MySQL connection collation"
msgid "Server connection collation"
-msgstr "MySQL prisijungimo lyginimas"
+msgstr "Serverio ryšio palyginimas"
#: main.php:124
msgid "Appearance Settings"
@@ -8410,20 +8405,18 @@ msgid "More settings"
msgstr "Daugiau nustatymų"
#: main.php:169
-#, fuzzy
#| msgid "Database for user"
msgid "Database server"
-msgstr "Vartotojo duomenų bazė"
+msgstr "Duomenų bazės serveris"
#: main.php:172
msgid "Software"
-msgstr ""
+msgstr "Programinė įranga"
#: main.php:173
-#, fuzzy
#| msgid "Show versions"
msgid "Software version"
-msgstr "Rodyti versijas"
+msgstr "Programinės įrangos versija"
#: main.php:175
msgid "Protocol version"
@@ -8436,20 +8429,18 @@ msgid "User"
msgstr "Naudotojas"
#: main.php:184
-#, fuzzy
#| msgid "Server socket"
msgid "Server charset"
-msgstr "Serverio prievadas (socket)"
+msgstr "Serverio koduotė"
#: main.php:196
msgid "Web server"
msgstr "Interneto serveris"
#: main.php:209
-#, fuzzy
#| msgid "Use light version"
msgid "Database client version"
-msgstr "Naudoti mažą versiją"
+msgstr "Duomenų bazės kliento versija"
#: main.php:213
msgid "PHP extension"
@@ -11933,7 +11924,7 @@ msgid "Release Series"
msgstr "Pasirinkite eiles:"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
@@ -12904,7 +12895,7 @@ msgstr ""
#: po/advisory_rules.php:270
msgid "MyISAM concurrent inserts"
-msgstr "MyISAM concurrent įterpimai"
+msgstr "MyISAM lygiagretieji įterpimai"
#: po/advisory_rules.php:271
msgid "Enable concurrent_insert by setting it to 1"
diff --git a/po/lv.po b/po/lv.po
index f11a18ba57..e55dd9f4ee 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -12199,7 +12199,7 @@ msgid "Release Series"
msgstr "Izvēlieties tabulas"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/mk.po b/po/mk.po
index fdd82bb271..6a33381061 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -12273,7 +12273,7 @@ msgid "Release Series"
msgstr "Избери табели"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/ml.po b/po/ml.po
index 6dfe6ad130..887a9d1cda 100644
--- a/po/ml.po
+++ b/po/ml.po
@@ -11263,7 +11263,7 @@ msgid "Release Series"
msgstr ""
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/mn.po b/po/mn.po
index 1a88ea37ba..0b71c7d5ce 100644
--- a/po/mn.po
+++ b/po/mn.po
@@ -12276,7 +12276,7 @@ msgid "Release Series"
msgstr "Хүснэгтүүд сонго"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/ms.po b/po/ms.po
index 5c00fe1896..439dbd83b6 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -11982,7 +11982,7 @@ msgid "Release Series"
msgstr "Pilih Jadual"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/nb.po b/po/nb.po
index df55aa0436..a17dca54ab 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -12501,7 +12501,7 @@ msgid "Release Series"
msgstr "Velg tabeller"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/nl.po b/po/nl.po
index d41022c9b4..fd95809470 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -9917,8 +9917,8 @@ msgstr ""
"Deze MySQL-server is ingesteld als slave in een "
"replicatieproces."
-# Er moet een betere vertaling voor "replication" zijn. "Nadoen"?
-# "Deze MySQL-server functioneert als %s in een replicatie proces."
+# Er moet een betere vertaling voor "replication" zijn. "Nadoen"?
+# "Deze MySQL-server functioneert als %s in een replicatie proces."
# weggehaald.
#: server_status.php:1076
msgid ""
@@ -12221,7 +12221,7 @@ msgid "Release Series"
msgstr "Groep van uitgebrachte versies"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr "De MySQL-server versie is kleiner dan 5.1."
#: po/advisory_rules.php:37
diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot
index c6345fbf3b..3888cc2ccc 100644
--- a/po/phpmyadmin.pot
+++ b/po/phpmyadmin.pot
@@ -11256,7 +11256,7 @@ msgid "Release Series"
msgstr ""
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/pl.po b/po/pl.po
index b1d258c474..6391f98abc 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-09 19:51+0200\n"
-"PO-Revision-Date: 2012-04-11 23:33+0200\n"
-"Last-Translator: Marc Delisle \n"
+"PO-Revision-Date: 2012-04-18 12:01+0200\n"
+"Last-Translator: Marcin Kozioł \n"
"Language-Team: iMutrix\n"
"Language: pl\n"
"MIME-Version: 1.0\n"
@@ -7435,7 +7435,7 @@ msgstr "Przepraszamy, nie udało nam się przywrócić upuszczonego zdarzenia."
#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:267
#: libraries/rte/rte_triggers.lib.php:90
msgid "The backed up query was:"
-msgstr "Przygotowana kwerenda:"
+msgstr "Kopia zapasowa kwerendy została:"
#: libraries/rte/rte_events.lib.php:121
#, php-format
@@ -12122,7 +12122,7 @@ msgid "Release Series"
msgstr "Seria wydania"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr "Wersja serwera MySQL jest mniejsza niż 5,1."
#: po/advisory_rules.php:37
@@ -12743,7 +12743,7 @@ msgstr "Maks. bufor klucza %% MyISAM kiedykolwiek"
#: po/advisory_rules.php:166 po/advisory_rules.php:171
#, php-format
msgid "MyISAM key buffer (index cache) %% used is low."
-msgstr ""
+msgstr "Użycie bufora indeksów MyISAM jest niskie."
#: po/advisory_rules.php:167 po/advisory_rules.php:172
msgid ""
@@ -12760,6 +12760,8 @@ msgstr ""
msgid ""
"max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%"
msgstr ""
+"maks %% klucz bufora MyISAM używany co: %s%%, wartość ta powinna być wyższa "
+"niż 95%%"
#: po/advisory_rules.php:170
msgid "Percentage of MyISAM key buffer used"
@@ -12769,6 +12771,7 @@ msgstr "Procent MyISAM klucza używanego bufora"
#, php-format
msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%"
msgstr ""
+"%% Użyto klucza bufora MyISAM: %s%%, wartość ta powinna być wyższa niż 95%%"
#: po/advisory_rules.php:175
msgid "Percentage of index reads from memory"
diff --git a/po/pt.po b/po/pt.po
index c2cb3a30f5..4b127b276d 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -12027,7 +12027,7 @@ msgid "Release Series"
msgstr "Seleccionar Tabelas"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/pt_BR.po b/po/pt_BR.po
index c6ef77ef34..9009eb9ddc 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-09 19:51+0200\n"
-"PO-Revision-Date: 2012-04-16 00:14+0200\n"
-"Last-Translator: JCJesus Lima \n"
+"PO-Revision-Date: 2012-04-20 09:33+0200\n"
+"Last-Translator: Hizer Cache \n"
"Language-Team: brazilian_portuguese \n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
@@ -26,7 +26,7 @@ msgstr "Mostrar tudo"
#: libraries/schema/User_Schema.class.php:396
#: libraries/select_lang.lib.php:489
msgid "Page number:"
-msgstr "Página número:"
+msgstr "Número da página:"
#: browse_foreigners.php:142
msgid ""
@@ -101,7 +101,7 @@ msgstr "Usar este valor"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
#: libraries/blobstreaming.lib.php:385
msgid "No blob streaming server configured!"
-msgstr "Servidor de streaming de blob não encontrado!"
+msgstr "Servidor de blob streaming não configurado!"
#: bs_disp_as_mime_type.php:35
msgid "Failed to fetch headers"
@@ -5332,6 +5332,10 @@ msgid ""
"For) header coming from the proxy 1.2.3.4:[br][kbd]1.2.3.4: "
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
+"Insira os Proxies como [kbd]IP: Cabeçalho HTTP de confiança[/kbd]. O exemplo "
+"seguinte ilustra que o phpMyAdmin deve confiar no cabeçalho "
+"HTTP_X_FORWARDED_FOR (X-Forwarded-For) vindo do proxie "
+"1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
#: libraries/config/messages.inc.php:512
msgid "List of trusted proxies for IP allow/deny"
@@ -5360,6 +5364,8 @@ msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
+"Quando desabilitado, usuários não podem selecionar nenhuma das opções "
+"abaixo, independentemente da checkbox a direita."
#: libraries/config/messages.inc.php:518
msgid "Enable the Developer tab in settings"
@@ -5467,10 +5473,9 @@ msgid "Could not initialize Drizzle connection library"
msgstr ""
#: libraries/config/validate.lib.php:205 libraries/config/validate.lib.php:212
-#, fuzzy
#| msgid "Could not open file: %s"
msgid "Could not connect to Drizzle server"
-msgstr "Não foi possível abrir o arquivo: %s"
+msgstr "Não foi possivel se conectar ao servidor Drizzle"
#: libraries/config/validate.lib.php:223 libraries/config/validate.lib.php:230
msgid "Could not connect to MySQL server"
@@ -12309,7 +12314,7 @@ msgid "Release Series"
msgstr "Tabelas selecionadas"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/ro.po b/po/ro.po
index bd60e1feb5..dbe7b00993 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -12520,7 +12520,7 @@ msgid "Release Series"
msgstr "Selectează tabele"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/ru.po b/po/ru.po
index 5f012149df..54d7579969 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-09 19:51+0200\n"
-"PO-Revision-Date: 2012-04-14 19:43+0200\n"
+"PO-Revision-Date: 2012-04-18 23:24+0200\n"
"Last-Translator: Victor Volkov \n"
"Language-Team: russian \n"
"Language: ru\n"
@@ -5570,7 +5570,7 @@ msgstr "Детали..."
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
-msgstr "База данных - пуста!"
+msgstr "Пустая база данных!"
#: libraries/db_links.inc.php:65 libraries/relation.lib.php:144
#: libraries/tbl_links.inc.php:97
@@ -12190,7 +12190,7 @@ msgid "Release Series"
msgstr "Серии выпусков"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr "Версия сервера MySQL ниже 5.1."
#: po/advisory_rules.php:37
diff --git a/po/si.po b/po/si.po
index c79f371695..5a31388d2f 100644
--- a/po/si.po
+++ b/po/si.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-09 19:51+0200\n"
-"PO-Revision-Date: 2012-04-15 18:48+0200\n"
+"PO-Revision-Date: 2012-04-21 10:02+0200\n"
"Last-Translator: Madhura Jayaratne \n"
"Language-Team: sinhala \n"
"Language: si\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Weblate 0.9\n"
+"X-Generator: Weblate 0.10\n"
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:350
#: libraries/display_tbl.lib.php:359 server_privileges.php:1677
@@ -682,7 +682,7 @@ msgstr "මුද්රණ දර්ශනය"
#: db_structure.php:587 libraries/common.lib.php:3352
#: libraries/common.lib.php:3353
msgid "Empty"
-msgstr "හිස්"
+msgstr "හිස් කරන්න"
#: db_structure.php:589 db_tracking.php:105 enum_editor.php:116
#: libraries/Index.class.php:490 libraries/common.lib.php:3350
@@ -697,7 +697,7 @@ msgstr "වගුව පරීක්ෂා කරන්න"
#: db_structure.php:594 tbl_operations.php:669 tbl_structure.php:816
msgid "Optimize table"
-msgstr "ප්රශස්තගත වගුව"
+msgstr "වගුව ප්රශස්තගත කරන්න"
#: db_structure.php:596 tbl_operations.php:654
msgid "Repair table"
@@ -2644,7 +2644,7 @@ msgstr "වැරදි භාවිත නාමය/මුරපදය. පි
#: libraries/auth/signon.auth.lib.php:88
msgid "Can not find signon authentication script:"
-msgstr "signon සත්යාපන ස්ක්රිප්ටය සොයාගත නොහැක:"
+msgstr "signon සත්යාපන විධානාවලිය සොයාගත නොහැක:"
#: libraries/auth/swekey/swekey.auth.lib.php:116
#, php-format
@@ -3649,7 +3649,7 @@ msgstr "phpMyAdmin භාවිතා කිරීමේදී ආරක්
#: libraries/config/messages.inc.php:151
msgid "Force SSL connection"
-msgstr "SSL සම්බන්දතාවක් යොදා ගැනීමට බල කරන්න"
+msgstr "SSL සම්බන්ධතාවක් යොදා ගැනීමට බල කරන්න"
#: libraries/config/messages.inc.php:152
msgid ""
@@ -4548,11 +4548,11 @@ msgstr "තීර විස්තර ගොනුව"
#: libraries/config/messages.inc.php:378
msgid "Compress connection to MySQL server"
-msgstr "MySQL සේවාදායකය වෙත සම්බන්දතාව හකුලන්න"
+msgstr "MySQL සේවාදායකය වෙත සම්බන්දතාව හකුළුවන්න"
#: libraries/config/messages.inc.php:379
msgid "Compress connection"
-msgstr "සම්බන්දතාව හකුලන්න"
+msgstr "සම්බන්ධතාව හකුළුවන්න"
#: libraries/config/messages.inc.php:380
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
@@ -4560,7 +4560,7 @@ msgstr "සේවාදායකයට කෙසේ සම්බන්ද වි
#: libraries/config/messages.inc.php:381
msgid "Connection type"
-msgstr "සම්බන්දතා වර්ගය"
+msgstr "සම්බන්ධතා වර්ගය"
#: libraries/config/messages.inc.php:382
msgid "Control user password"
@@ -4996,10 +4996,12 @@ msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
+"[a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] ප්රතිදානය වෙත "
+"සබැඳුම පෙන්වන්න"
#: libraries/config/messages.inc.php:469
msgid "Show phpinfo() link"
-msgstr ""
+msgstr "phpinfo() සබැඳුම පෙන්වන්න"
#: libraries/config/messages.inc.php:470
msgid "Show detailed MySQL server information"
@@ -5087,16 +5089,20 @@ msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
+"[strong]අවවාදයයි:[/strong] PHP SOAP ස්ථාපනය කර තිබීම හෝ PHP SOAP දිගුව "
+"අවශ්යයි"
#: libraries/config/messages.inc.php:492
msgid "Enable SQL Validator"
-msgstr ""
+msgstr "SQL සත්යාපකය සක්රීය කරන්න"
#: libraries/config/messages.inc.php:493
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
+"ඔබට සාදා ගත් භාවිත නාමයක් ඇත්නම් එය මෙහි සඳහන් කරන්න (නැත්නම් පෙරනිමි අගය වන "
+"[kbd]anonymous[/kbd] භාවිතා කෙරේ)"
#: libraries/config/messages.inc.php:494 tbl_tracking.php:460
#: tbl_tracking.php:517
@@ -5181,7 +5187,7 @@ msgstr ""
#: libraries/config/messages.inc.php:513
msgid "Directory on server where you can upload files for import"
-msgstr ""
+msgstr "ආනයනය සඳහා ගොනු උඩුගත කල හැකි සේවාදායකයේ ඩිරෙක්ටරිය"
#: libraries/config/messages.inc.php:514
msgid "Upload directory"
@@ -5189,11 +5195,11 @@ msgstr "උඩුගත කිරීමේ ඩිරෙක්ටරිය"
#: libraries/config/messages.inc.php:515
msgid "Allow for searching inside the entire database"
-msgstr ""
+msgstr "සම්පූර්ණ දත්තගබඩාව තුලම සෙවීම සඳහා ඉඩ ලබා දෙන්න"
#: libraries/config/messages.inc.php:516
msgid "Use database search"
-msgstr ""
+msgstr "දත්තගබඩා සෙවීම භාවිතා කරන්න"
#: libraries/config/messages.inc.php:517
msgid ""
@@ -5203,7 +5209,7 @@ msgstr ""
#: libraries/config/messages.inc.php:518
msgid "Enable the Developer tab in settings"
-msgstr ""
+msgstr "සිටුවම් හි ක්රමලේඛනය කරන්නන් සදහා වූ ටැබය සක්රීය කරන්න"
#: libraries/config/messages.inc.php:519
msgid ""
@@ -5211,6 +5217,9 @@ msgid ""
"libraries/import.lib.php for defaults on how many queries a statement may "
"contain."
msgstr ""
+"බහු-ප්රකාශ විමසුමකදී එක් එක් ප්රකාශය සඳහා එම ප්රකාශය බලපෑ පේළි ගණන "
+"පෙන්වන්න. ප්රකාශයක් තුල තිබිය හැකි විමසුම් ගණන සම්බන්ධ පෙරනිමි අගයන් සඳහා "
+"libraries/import.lib.php බලන්න."
#: libraries/config/messages.inc.php:520
msgid "Verbose multiple statements"
@@ -5218,7 +5227,7 @@ msgstr ""
#: libraries/config/messages.inc.php:521 setup/frames/index.inc.php:243
msgid "Check for latest version"
-msgstr ""
+msgstr "නවතම අනුවාදය සඳහා පරීක්ෂා කරන්න"
#: libraries/config/messages.inc.php:522
msgid "Enables check for latest version on main phpMyAdmin page"
@@ -5237,26 +5246,29 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
+"ආනයන අපනයන මෙහෙයුම් සඳහා "
+"[a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] හැකිළීම යොදාගැනීම "
+"සක්රීය කරන්න"
#: libraries/config/messages.inc.php:525
msgid "ZIP"
-msgstr ""
+msgstr "ZIP"
#: libraries/config/setup.forms.php:41
msgid "Config authentication"
-msgstr ""
+msgstr "Config සත්යාපනය"
#: libraries/config/setup.forms.php:45
msgid "Cookie authentication"
-msgstr ""
+msgstr "Cookie සත්යාපනය"
#: libraries/config/setup.forms.php:48
msgid "HTTP authentication"
-msgstr ""
+msgstr "HTTP සත්යාපනය"
#: libraries/config/setup.forms.php:51
msgid "Signon authentication"
-msgstr ""
+msgstr "Signon සත්යාපනය"
#: libraries/config/setup.forms.php:251
#: libraries/config/user_preferences.forms.php:151 libraries/import/ldi.php:35
@@ -5295,7 +5307,7 @@ msgstr "MS එක්සෙල් සඳහා CSV"
#: libraries/config/user_preferences.forms.php:246
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
-msgstr "මෛක්රොසොෆ්ට් වර්ඩ් 2000"
+msgstr "මයික්රොසොෆ්ට් වර්ඩ් 2000"
#: libraries/config/setup.forms.php:357
#: libraries/config/user_preferences.forms.php:255 libraries/export/odt.php:22
@@ -5304,40 +5316,42 @@ msgstr "Open Document පෙළ"
#: libraries/config/validate.lib.php:198
msgid "Could not initialize Drizzle connection library"
-msgstr ""
+msgstr "Drizzle සබඳතා පුස්තකාලය ඇරඹිය නොහැකි විය"
#: libraries/config/validate.lib.php:205 libraries/config/validate.lib.php:212
msgid "Could not connect to Drizzle server"
-msgstr "Drizzleසේවාදායකය වෙත සම්බන්ද විය නොහැකි විය"
+msgstr "Drizzle සේවාදායකය වෙත සම්බන්ධ විය නොහැකි විය"
#: libraries/config/validate.lib.php:223 libraries/config/validate.lib.php:230
msgid "Could not connect to MySQL server"
-msgstr ""
+msgstr "MySQL සේවාදායකය වෙත සම්බන්ධ විය නොහැකි විය"
#: libraries/config/validate.lib.php:254
msgid "Empty username while using config authentication method"
-msgstr ""
+msgstr "config සත්යාපන ක්රමය භාවිතා කිරීමේදී හිස් භාවිත නාමයක්"
#: libraries/config/validate.lib.php:258
msgid "Empty signon session name while using signon authentication method"
-msgstr ""
+msgstr "signon සත්යාපන ක්රමය භාවිතා කිරීමේදී හිස් signon සැසි නාමයක්"
#: libraries/config/validate.lib.php:262
msgid "Empty signon URL while using signon authentication method"
-msgstr ""
+msgstr "singon සත්යාපන ක්රමය භාවිතා කිරීමේදී signon URL සඳහා හිස් අගයක්"
#: libraries/config/validate.lib.php:295
msgid "Empty phpMyAdmin control user while using pmadb"
-msgstr ""
+msgstr "pmadb භාවිතා කිරීමේදී phpMyAdmin පරිපාලක භාවිතා කරන්නා සඳහා හිස් අගයක්"
#: libraries/config/validate.lib.php:299
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
+"pmadb භාවිතා කිරීමේදී phpMyAdmin පරිපාලක භාවිතා කරන්නාගේ මුරපදය සඳහා හිස් "
+"අගයක්"
#: libraries/config/validate.lib.php:385
#, php-format
msgid "Incorrect IP address: %s"
-msgstr ""
+msgstr "වැරදි IP යොමුව: %s"
#. l10n: Please check that translation actually exists.
#: libraries/core.lib.php:247
@@ -5348,7 +5362,7 @@ msgstr "en"
#: libraries/core.lib.php:266
#, php-format
msgid "The %s extension is missing. Please check your PHP configuration."
-msgstr ""
+msgstr "%s දිගුව සොයාගත නොහැක. කරුණාකර ඔබගේ PHP වින්යාසයන් පරීක්ෂා කර බලන්න."
#: libraries/core.lib.php:414
msgid "possible deep recursion attack"
@@ -5366,7 +5380,7 @@ msgstr "සේවාදායකය ප්රතිචාර නොදක්
#: libraries/database_interface.lib.php:1820
msgid "Please check privileges of directory containing database."
-msgstr ""
+msgstr "කරුණාකර දත්තගබඩාව අඩංගු ඩිරෙක්ටරිය සඳහා වරප්රසාද පරීක්ෂා කරන්න."
#: libraries/database_interface.lib.php:1828
msgid "Details..."
@@ -5375,7 +5389,7 @@ msgstr "තොරතුරු..."
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
-msgstr ""
+msgstr "දත්තගබඩාව හිස්ය!"
#: libraries/db_links.inc.php:65 libraries/relation.lib.php:144
#: libraries/tbl_links.inc.php:97
@@ -5422,6 +5436,8 @@ msgstr ""
#: libraries/dbi/mysqli.dbi.lib.php:189
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
+"වින්යාසයන් හි අර්ථදක්වා ඇති පරිදි පරිපාලක භාවිතා කරන්නා ලෙස සම්බන්ධ වීම "
+"අසමත් විය."
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:105 user_password.php:123
@@ -5480,7 +5496,7 @@ msgstr "තීර ගණන"
#: libraries/display_export.lib.php:37
msgid "Could not load export plugins, please check your installation!"
-msgstr ""
+msgstr "අපනයන පේණු පූරණය කල නොහැකි විය, ඔබගේ ස්ථාපනය පරීක්ෂා කර බලන්න!"
#: libraries/display_export.lib.php:82
msgid "Exporting databases from the current server"
@@ -5555,15 +5571,15 @@ msgstr "ගොනු නාම අච්චුව:"
#: libraries/display_export.lib.php:224
msgid "@SERVER@ will become the server name"
-msgstr ""
+msgstr "@SERVER@ සේවාදායකයේ නාමයෙන් ප්රතිස්ථාපනය කෙරෙනු ඇත"
#: libraries/display_export.lib.php:226
msgid ", @DATABASE@ will become the database name"
-msgstr ""
+msgstr ", @DATABASE@ දත්තගබඩාවේ නාමයෙන් ප්රතිස්ථාපනය කෙරෙනු ඇත"
#: libraries/display_export.lib.php:228
msgid ", @TABLE@ will become the table name"
-msgstr ""
+msgstr ", @TABLE@ වගුවේ නාමයෙන් ප්රතිස්ථාපනය කෙරෙනු ඇත"
#: libraries/display_export.lib.php:232
#, fuzzy, php-format
@@ -5623,6 +5639,8 @@ msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
+"තෝරාගත් ආකෘතිය සඳහා විකල්ප භාවිතා කිරීමට පහලට යන්න. අනෙකුත් ආකෘති සඳහා "
+"විකල්ප නොසලකන්න."
#: libraries/display_export.lib.php:342 libraries/display_import.lib.php:260
#, fuzzy
@@ -5635,16 +5653,20 @@ msgid ""
"this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) "
"browsers."
msgstr ""
+"මෙය ඔබ උඩුගත කරන ගොනුව අවසරැති ප්රමාණයට වඩා විශාල වීම හෝ webkit මූලික කරගත් "
+"බ්රව්සර වල (Safari, Google Chrome, Arora etc.) හඳුනාගත් දෝෂයක් විය හැක."
#: libraries/display_import.lib.php:76
msgid "The file is being processed, please be patient."
-msgstr ""
+msgstr "ඔබගේ ගොනුව සැකසෙමින් පවතී. කරුණාකර ඉවසා සිටින්න."
#: libraries/display_import.lib.php:98
msgid ""
"Please be patient, the file is being uploaded. Details about the upload are "
"not available."
msgstr ""
+"කරුණාකර ඉවසා සිටින්න. ගොනුව උඩුගත කෙරෙමින් පවතී. උඩුගත කිරීම පිලිබඳ වැඩි "
+"විස්තර ලබා ගත නොහැක."
#: libraries/display_import.lib.php:129
msgid "Importing into the current server"
@@ -5678,7 +5700,7 @@ msgstr ""
#: libraries/display_import.lib.php:178
msgid "File uploads are not allowed on this server."
-msgstr ""
+msgstr "මෙම සේවාදායකයේ ගොනු උඩුගත කිරීමට අවසර නොමැත."
#: libraries/display_import.lib.php:208
msgid "Partial Import:"
@@ -5689,6 +5711,8 @@ msgstr "අර්ධ ආනයනය:"
msgid ""
"Previous import timed out, after resubmitting will continue from position %d."
msgstr ""
+"පෙර උඩුගත කිරීම නියමිත කාලය ඉක්මවා ගියේය. නැවත වරක් යොමු කල විට උඩුගත කිරීම "
+"%d ස්ථානයෙන් ඇරඹෙනු ඇත."
#: libraries/display_import.lib.php:221
msgid ""
@@ -5723,7 +5747,7 @@ msgstr "තීර අනුපිලිවල ප්රතිෂ්ඨාප
#: libraries/display_tbl.lib.php:423
#, php-format
msgid "%d is not valid row number."
-msgstr ""
+msgstr "%d වලංගු පේළි අංකයක් නොවේ."
#: libraries/display_tbl.lib.php:428
msgid "Start row"
@@ -5871,7 +5895,7 @@ msgstr "දත්ත මුල් පිටුව"
#: libraries/engines/innodb.lib.php:21
msgid "The common part of the directory path for all InnoDB data files."
-msgstr ""
+msgstr "සියලුම InnoBD දත්ත ගොනු වල පෙතෙහි පොදු කොටස."
#: libraries/engines/innodb.lib.php:24
msgid "Data files"
@@ -5879,13 +5903,13 @@ msgstr "දත්ත ගොනු"
#: libraries/engines/innodb.lib.php:27
msgid "Autoextend increment"
-msgstr ""
+msgstr "ස්වයංක්රීය-විස්තීරණ ප්රමාණය"
#: libraries/engines/innodb.lib.php:28
msgid ""
"The increment size for extending the size of an autoextending tablespace "
"when it becomes full."
-msgstr ""
+msgstr "වගුවේ ඉඩ මදිවී වගුව ස්වයංක්රීයව විශාල කිරීමේදී විශාල කල යුතු ප්රමාණය."
#: libraries/engines/innodb.lib.php:32
msgid "Buffer pool size"
@@ -5943,7 +5967,7 @@ msgstr ""
#: libraries/engines/innodb.lib.php:218
msgid "Read requests"
-msgstr ""
+msgstr "කියවීම සඳහා වූ ඉල්ලීම්"
#: libraries/engines/innodb.lib.php:224
msgid "Write requests"
@@ -6248,7 +6272,7 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:129
msgid "The PrimeBase XT Blog by Paul McCullagh"
-msgstr ""
+msgstr "Paul McCullagh ගේ PrimeBase XT බ්ලොගය"
#: libraries/engines/pbxt.lib.php:130
msgid "The PrimeBase Media Streaming (PBMS) home page"
@@ -6302,7 +6326,7 @@ msgstr "වගුවක් සඳහා වගු සැකිල්ල"
#: libraries/export/latex.php:14
msgid "Content of table @TABLE@"
-msgstr ""
+msgstr "@TABLE@ වගුවේ අන්තර්ගතය"
#: libraries/export/latex.php:15
msgid "(continued)"
@@ -6310,7 +6334,7 @@ msgstr "(ඉදිරියට)"
#: libraries/export/latex.php:16
msgid "Structure of table @TABLE@"
-msgstr ""
+msgstr "වගුවේ සැකිල්ල @TABLE@"
#: libraries/export/latex.php:48 libraries/export/odt.php:40
#: libraries/export/sql.php:142
@@ -6364,7 +6388,7 @@ msgstr "PHP අනුවාදය"
#: libraries/export/mediawiki.php:15
msgid "MediaWiki Table"
-msgstr ""
+msgstr "MediaWiki වගු"
#: libraries/export/pdf.php:18
msgid "PDF"
@@ -6380,7 +6404,7 @@ msgstr "වාර්තා මාතෘකාව:"
#: libraries/export/php_array.php:18
msgid "PHP array"
-msgstr ""
+msgstr "PHP ආරාව"
#: libraries/export/sql.php:40
msgid ""
@@ -6562,7 +6586,7 @@ msgstr "ජ්යාමිතික නිරූපණයට දත්ත ක
#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15
msgid "GLOBALS overwrite attempt"
-msgstr ""
+msgstr "GLOBALS අගයන් උඩින් ලිවීමේ උත්සාහය"
#: libraries/header_printview.inc.php:49 libraries/header_printview.inc.php:57
msgid "SQL result"
@@ -6575,25 +6599,25 @@ msgstr "උත්පාදනය කරන ලද්දේ"
#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1249
#: sql.php:730 tbl_change.php:188 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
-msgstr ""
+msgstr "MySQL හිස් ප්රතිඵල කුලකයක් (පේළි කිසිවක් අඩංගු නොවන) සපයන ලදි."
#: libraries/import.lib.php:1100
msgid ""
"The following structures have either been created or altered. Here you can:"
-msgstr ""
+msgstr "පහත සැකිලි අලුතින් සාදා හෝ වෙනස් කර ඇත. මෙහිදී ඔබට:"
#: libraries/import.lib.php:1101
msgid "View a structure's contents by clicking on its name"
-msgstr ""
+msgstr "සැකිල්ලක අන්තර්ගතය එහි නම මත ක්ලික් කිරීමෙන් බලන්න"
#: libraries/import.lib.php:1102
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
+msgstr "අදාල \"විකල්ප\" සබැඳිය මත ක්ලික් කිරීමෙන් එහි ඕනෑම සිටුවමක් වෙනස් කරන්න"
#: libraries/import.lib.php:1103
msgid "Edit structure by following the \"Structure\" link"
-msgstr ""
+msgstr "\"සැකිල්ල\" සබැඳිය ඔස්සේ යාමෙන් සැකිල්ල සංස්කරණය කරන්න"
#: libraries/import.lib.php:1106
#, php-format
@@ -6618,7 +6642,7 @@ msgstr "%s හි සැකිල්ල"
#: libraries/import.lib.php:1136
#, php-format
msgid "Go to view: %s"
-msgstr ""
+msgstr "%s දසුන වෙත යන්න"
#: libraries/import/csv.php:38 libraries/import/ods.php:33
msgid ""
@@ -6634,6 +6658,9 @@ msgid ""
"database, list the corresponding column names here. Column names must be "
"separated by commas and not enclosed in quotations."
msgstr ""
+"ගොනුවේ එක් එක් තීරුවේ අඩංගු දත්ත දත්තගබඩාවේ අනුපිළිවල හා නොගැලපේ නම්, අදාල "
+"තීර අනුපිළිවල මෙහි සඳහන් කරන්න. තීර නම් උධෘත මගින් ඇහිරිය යුතු අතර කොමා "
+"සලකුණු වලින් වෙන් කල යුතුය."
#: libraries/import/csv.php:42
msgid "Column names: "
@@ -6643,7 +6670,7 @@ msgstr "තීර නම්: "
#: libraries/import/csv.php:80 libraries/import/csv.php:85
#, php-format
msgid "Invalid parameter for CSV import: %s"
-msgstr ""
+msgstr "CSV ආනයනය සඳහා වැරදි පරාමිතියක්: %s"
#: libraries/import/csv.php:132
#, php-format
@@ -6651,11 +6678,13 @@ msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
+"සැපයූ තීර නාමය (%s) වලංගු නොවේ! තීර නම් නිවැරදි අක්ෂර වින්යාසය සහිත බවට, "
+"උධෘත මගින් අහුරා ඇති බවට සහ කොමා සලකුණු වලින් වෙන් කර ඇති බවට වගබලා ගන්න."
#: libraries/import/csv.php:191 libraries/import/csv.php:451
#, php-format
msgid "Invalid format of CSV input on line %d."
-msgstr ""
+msgstr "CSV ආනයනයේ %d පේළියේ වැරදි ආකෘතියක්."
#: libraries/import/csv.php:337
#, php-format
@@ -6664,7 +6693,7 @@ msgstr "CSV අදානයේ %d පේළියේ වැරදි තීර
#: libraries/import/docsql.php:28
msgid "DocSQL"
-msgstr ""
+msgstr "DocSQL"
#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:567
#: server_synchronize.php:441 server_synchronize.php:913
@@ -6678,11 +6707,11 @@ msgstr "තීර නම්"
#: libraries/import/ldi.php:57
msgid "This plugin does not support compressed imports!"
-msgstr ""
+msgstr "මෙම පේණුව හැකිළු ආනයන සඳහා සහාය නොදක්වයි!"
#: libraries/import/ods.php:35
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
-msgstr "ප්රතිශත පූර්ණ සංඛ්යා ලෙස ආනයනය කරන්න (උදා. 12.00%, 12 ලෙස)"
+msgstr "ප්රතිශත පූර්ණ සංඛ්යා ලෙස ආනයනය කරන්න (උදා. 12.00%, .12 ලෙස)"
#: libraries/import/ods.php:36
msgid "Import currencies (ex. $5.00 to 5.00)"
@@ -6694,21 +6723,25 @@ msgid ""
"The XML file specified was either malformed or incomplete. Please correct "
"the issue and try again."
msgstr ""
+"ලබා දුන් XML ගොනුව අසම්පූර්ණ හෝ විකෘතිය. මෙම ගැටලුව නිරාකරණය කිරීමෙන් පසු "
+"නැවත උත්සාහ කරන්න."
#: libraries/import/shp.php:19
msgid "ESRI Shape File"
-msgstr ""
+msgstr "ESRI Shape ගොනුව"
#: libraries/import/shp.php:280
#, php-format
msgid "There was an error importing the ESRI shape file: \"%s\"."
-msgstr ""
+msgstr "\"%s\" ESRI shape ගොනුව ආනයනය කිරීමේදී දෝෂයක් ඇති විය."
#: libraries/import/shp.php:336
msgid ""
"You tried to import an invalid file or the imported file contains invalid "
"data"
msgstr ""
+"ඔබ ආනයනය කිරීමට උත්සාහ කල ගොනුව වලංගු නොවන එකක් හෝ එහි වලංගු දත්ත අඩංගු නොවන "
+"එකක් හෝ වේ"
#: libraries/import/shp.php:338
#, php-format
@@ -6717,7 +6750,7 @@ msgstr ""
#: libraries/import/shp.php:376
msgid "The imported file does not contain any data"
-msgstr ""
+msgstr "ආනයන කල ගොනුවේ දත්ත කිසිවක් අඩංගු නොවේ"
#: libraries/import/sql.php:33
msgid "SQL compatibility mode:"
@@ -9424,7 +9457,7 @@ msgid ""
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-"කෙසේ වෙතත් මෙම නිර්දේශ ලබා දෙනුයේ සරල ගණනය කිරීම හා ආනුභූතික රීති පදනම් "
+"කෙසේ වෙතත් මෙම නිර්දේශ ලබා දෙනුයේ සරල ගණනය කිරීම් හා ආනුභූතික රීති පදනම් "
"කරගෙන බවත් එම නිසා එවැනි නිර්දේශ ඔබගේ පද්ධතියට අදාල නොවීමට ඉඩ ඇති බවත් "
"සලකන්න."
@@ -9436,7 +9469,7 @@ msgid ""
msgstr ""
"කිසියම් වින්යාසයක් වෙනස් කිරීමට පළමුව ඔබ වෙනස් කරන්නේ කුමක්ද යන්න "
"(ලියකියවිලි කියවීමෙන්) සහ එම වෙනස්කම් ප්රතිවර්තනය කරන්නේ කෙසේද යන්න "
-"දැනගන්න. වැරදි සුසර කිරීම් මගින් පද්ධතියේ කාර්යසාධනය තවදුරටත් නරක විය හැකිය."
+"දැනගන්න. වැරදි සුසර කිරීම් මඟින් පද්ධතියේ කාර්යසාධනය තවදුරටත් නරක විය හැකිය."
#: server_status.php:915
msgid ""
@@ -9446,7 +9479,7 @@ msgid ""
msgstr ""
"ඔබගේ පද්ධතිය සුසර කිරීමට යෝග්යම ක්රියාවලිය වන්නේ වරකට එක සිටුවම බැගින් "
"වෙනස් කරමින් ඔබගේ දත්තගබඩාව නිරීක්ෂණය කිරීම හා පෙර අවස්ථා සමග සසැදීමත්, "
-"මැනිය හැකි වර්ධනයක් ගෙන නොදෙන වෙනස් කිරීම ප්රතිවර්තනය කිරීමත් ය."
+"මැනිය හැකි වර්ධනයක් ගෙන නොදෙන වෙනස් කිරීම් ප්රතිවර්තනය කිරීමත් ය."
#. l10n: Questions is the name of a MySQL Status variable
#: server_status.php:937
@@ -9659,23 +9692,23 @@ msgstr ""
#: server_status.php:1323
msgid "The number of internal ROLLBACK statements."
-msgstr ""
+msgstr "අභ්යන්තරව සිදු කෙරුණු ROLLBACK ප්රකාශ ගණන."
#: server_status.php:1324
msgid "The number of requests to update a row in a table."
-msgstr ""
+msgstr "වගුවක පේළියක් යාවත්කාලීන කිරීම සඳහා කෙරුණු ඉල්ලීම් ගණන."
#: server_status.php:1325
msgid "The number of requests to insert a row in a table."
-msgstr ""
+msgstr "වගුවකට පේළියක් ඇතුලු කිරීම සඳහා කෙරුණු ඉල්ලීම් ගණන."
#: server_status.php:1326
msgid "The number of pages containing data (dirty or clean)."
-msgstr ""
+msgstr "දත්ත අඩංගු පිටු ගණන (අපවිත්ර හෝ පවිත්ර)."
#: server_status.php:1327
msgid "The number of pages currently dirty."
-msgstr ""
+msgstr "දැනට අපවිත්රව ඇති පිටු ගණන."
#: server_status.php:1328
msgid "The number of buffer pool pages that have been requested to be flushed."
@@ -9761,23 +9794,25 @@ msgstr ""
#: server_status.php:1344
msgid "The total number of data reads."
-msgstr ""
+msgstr "මුළු දත්ත කියැවුම් ගණන."
#: server_status.php:1345
msgid "The total number of data writes."
-msgstr ""
+msgstr "මුළු දත්ත ලියැවුම් ගණන."
#: server_status.php:1346
msgid "The amount of data written so far, in bytes."
-msgstr ""
+msgstr "මේ දක්වා ලියැවුණු දත්ත ප්රමාණය, බයිට වලින්."
#: server_status.php:1347
+#, fuzzy
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
"The number of doublewrite writes that have been performed and the number of "
"pages that have been written for this purpose."
#: server_status.php:1348
+#, fuzzy
msgid "The number of doublewrite operations that have been performed."
msgstr ""
"The number of doublewrite writes that have been performed and the number of "
@@ -9788,10 +9823,12 @@ msgid ""
"The number of waits we had because log buffer was too small and we had to "
"wait for it to be flushed before continuing."
msgstr ""
+"ලොග බෆරය කුඩා වීම නිසා ඉදිරියට යාමට පෙර එය හිස් කෙරෙන තුරු බලා සිටීමට සිදු "
+"වූ වාර ගණන."
#: server_status.php:1350
msgid "The number of log write requests."
-msgstr ""
+msgstr "ලොගය වෙත ලිවීමට කෙරුණු ඉල්ලීම් ගණන."
#: server_status.php:1351
msgid "The number of physical writes to the log file."
@@ -9799,23 +9836,23 @@ msgstr ""
#: server_status.php:1352
msgid "The number of fsync() writes done to the log file."
-msgstr ""
+msgstr "ලොග ගොනුව වෙත සිදු කරන ලද fsync() ලිවීම් ගණන."
#: server_status.php:1353
msgid "The number of pending log file fsyncs."
-msgstr ""
+msgstr "ඉදිරියේදී ලොග ගොනුව වෙත සිදු කිරීමට ඇති fsync ගණන."
#: server_status.php:1354
msgid "Pending log file writes."
-msgstr ""
+msgstr "ඉදිරියේදී ලොග ගොනුව වෙත සිදු කිරීමට ඇති ලිවීම්."
#: server_status.php:1355
msgid "The number of bytes written to the log file."
-msgstr ""
+msgstr "ලොග ගොනුව වෙත ලියන ලද බයිට ගණන."
#: server_status.php:1356
msgid "The number of pages created."
-msgstr ""
+msgstr "සාදන ලද පිටු ගණන."
#: server_status.php:1357
msgid ""
@@ -9833,39 +9870,39 @@ msgstr "ලියන ලද පිටු ගණන."
#: server_status.php:1360
msgid "The number of row locks currently being waited for."
-msgstr ""
+msgstr "නිදහස් වන තුරු බලා සිටින පේළි අගුලු ගණන."
#: server_status.php:1361
msgid "The average time to acquire a row lock, in milliseconds."
-msgstr ""
+msgstr "පේළි අගුලක් අත්පත් කර ගැනීමට ගතවූ මධ්යන්ය කාලය, මිලිතත්පර වලින්."
#: server_status.php:1362
msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr ""
+msgstr "පේළි අගුලු අත්පත් කර ගැනීමට ගතවූ මුළු කාලය, මිලිතත්පර වලින්."
#: server_status.php:1363
msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr ""
+msgstr "පේළි අගුලක් අත්පත් කර ගැනීමට ගතවූ උපරිම කාලය, මිලිතත්පර වලින්."
#: server_status.php:1364
msgid "The number of times a row lock had to be waited for."
-msgstr ""
+msgstr "පේළි අගුලක් නිදහස් වන තුරු බලා සිටීමට සිදු වූ අවස්ථා ගණන."
#: server_status.php:1365
msgid "The number of rows deleted from InnoDB tables."
-msgstr ""
+msgstr "InnoDB වගු වලින් ඉවත් කෙරුණු පේළි ගණන."
#: server_status.php:1366
msgid "The number of rows inserted in InnoDB tables."
-msgstr ""
+msgstr "InnoDB වගු වෙත ඇතුල් කෙරුණු පේළි ගණන."
#: server_status.php:1367
msgid "The number of rows read from InnoDB tables."
-msgstr ""
+msgstr "InnoDB වගු වෙතින් කියැවුණු පේළි ගණන."
#: server_status.php:1368
msgid "The number of rows updated in InnoDB tables."
-msgstr ""
+msgstr "InnoDB වගු තුල යාවත්කාලීන කෙරුණු පේළි ගණන."
#: server_status.php:1369
msgid ""
@@ -10386,7 +10423,7 @@ msgstr "අතින් ඇතුල් කරන්න"
#: server_synchronize.php:1210
msgid "Current connection"
-msgstr "වත්මන් සම්බන්දතාව"
+msgstr "වත්මන් සම්බන්ධතාව"
#: server_synchronize.php:1250
#, php-format
@@ -10454,12 +10491,12 @@ msgid ""
"If your server is also configured to accept HTTPS requests follow [a@%s]this "
"link[/a] to use a secure connection."
msgstr ""
-"ඔබගේ සේවාදායකය HTTPS ඉල්ලීම් භාර ගැනීමට සකස් කර ඇත්නම්, ආරක්ෂිත සම්බන්දතාවන් භාවිත කිරීමට "
-"[a@%s]මෙම[/a] සබැඳුම වෙත යන්න."
+"ඔබගේ සේවාදායකය HTTPS ඉල්ලීම් භාර ගැනීමට සකස් කර ඇත්නම්, ආරක්ෂිත "
+"සම්බන්ධතාවන් භාවිත කිරීමට [a@%s]මෙම[/a] සබැඳුම වෙත යන්න."
#: setup/frames/index.inc.php:65
msgid "Insecure connection"
-msgstr "අනාරක්ෂිත සම්බන්දතාවය"
+msgstr "අනාරක්ෂිත සම්බන්ධතාවය"
#: setup/frames/index.inc.php:94
msgid "Configuration saved."
@@ -11580,7 +11617,7 @@ msgid "Release Series"
msgstr "වගු තෝරන්න"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/sk.po b/po/sk.po
index 58e8de0a7e..ce87af128d 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -12012,7 +12012,7 @@ msgid "Release Series"
msgstr "Vybrať Tabuľky"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/sl.po b/po/sl.po
index 4d6b2e56aa..d42da1902b 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -12081,7 +12081,7 @@ msgid "Release Series"
msgstr "Serije izdaj"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr "Strežnik MySQL različice nižje od 5.1."
#: po/advisory_rules.php:37
diff --git a/po/sq.po b/po/sq.po
index 3e37a6f270..6bd253e1e9 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -12187,7 +12187,7 @@ msgid "Release Series"
msgstr "Zgjidh Tabelat"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/sr.po b/po/sr.po
index 456b034581..7f437aa0e5 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -12466,7 +12466,7 @@ msgid "Release Series"
msgstr "Изабери табеле"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/sr@latin.po b/po/sr@latin.po
index f61e34ba8a..095cded38a 100644
--- a/po/sr@latin.po
+++ b/po/sr@latin.po
@@ -12455,7 +12455,7 @@ msgid "Release Series"
msgstr "Izaberi tabele"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/sv.po b/po/sv.po
index 151b464436..e21f3ca47d 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -12038,7 +12038,7 @@ msgid "Release Series"
msgstr "Releasa serien"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr "MySQL server version är mindre än 5.1."
#: po/advisory_rules.php:37
diff --git a/po/ta.po b/po/ta.po
index c8b1be30f9..ecf8f96d7c 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -11436,7 +11436,7 @@ msgid "Release Series"
msgstr ""
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/te.po b/po/te.po
index e8eb7efacc..b8ef540199 100644
--- a/po/te.po
+++ b/po/te.po
@@ -11721,7 +11721,7 @@ msgid "Release Series"
msgstr ""
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/th.po b/po/th.po
index 1055741e67..52b54045ff 100644
--- a/po/th.po
+++ b/po/th.po
@@ -11843,7 +11843,7 @@ msgid "Release Series"
msgstr "เลือกตาราง"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr "รุ่น MySQL ต่ำกว่า 5.1"
#: po/advisory_rules.php:37
@@ -12760,8 +12760,8 @@ msgstr "ขนาดบัฟเฟอร์ของ InnoDB"
msgid "Your InnoDB buffer pool is fairly small."
msgstr "ขนาดบัฟเฟอร์ InnoDB ของคุณมีขนาดเล็ก"
-# buffer pool แปลเป็น บัฟเฟอร์
-# non-InnoDB-Tables ใช้คำทับศัพท์
+# buffer pool แปลเป็น บัฟเฟอร์
+# non-InnoDB-Tables ใช้คำทับศัพท์
#
#: po/advisory_rules.php:267
#, php-format
diff --git a/po/tk.po b/po/tk.po
index 8e4d3a328c..c90c2e2ed9 100644
--- a/po/tk.po
+++ b/po/tk.po
@@ -11261,7 +11261,7 @@ msgid "Release Series"
msgstr ""
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/tr.po b/po/tr.po
index 769e8ae8c6..baee0a25a4 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -12106,7 +12106,7 @@ msgid "Release Series"
msgstr "Diziyi Yayımla"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr "MySQL sunucusu sürümü 5.1'den az."
#: po/advisory_rules.php:37
diff --git a/po/tt.po b/po/tt.po
index f7e8e17b75..397dc52ae5 100644
--- a/po/tt.po
+++ b/po/tt.po
@@ -12264,7 +12264,7 @@ msgid "Release Series"
msgstr "Tüşämä Saylaw"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/ug.po b/po/ug.po
index e42452b346..b8e291a8c3 100644
--- a/po/ug.po
+++ b/po/ug.po
@@ -11809,7 +11809,7 @@ msgid "Release Series"
msgstr "ھەممىنى تاللاش"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/uk.po b/po/uk.po
index 01eeb7a843..082c4c96f0 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -11822,7 +11822,7 @@ msgid "Release Series"
msgstr "Вибрати таблиці"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/ur.po b/po/ur.po
index 1c50d80735..705bb61538 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -11886,7 +11886,7 @@ msgid "Release Series"
msgstr "SQL طلب"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/uz.po b/po/uz.po
index 63b5764a8c..7bdacbb9f5 100644
--- a/po/uz.po
+++ b/po/uz.po
@@ -13088,7 +13088,7 @@ msgid "Release Series"
msgstr "Жадвалларни танланг"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/uz@latin.po b/po/uz@latin.po
index 0c29b1482d..50317f059f 100644
--- a/po/uz@latin.po
+++ b/po/uz@latin.po
@@ -13150,7 +13150,7 @@ msgid "Release Series"
msgstr "Jadvallarni tanlang"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
diff --git a/po/zh_CN.po b/po/zh_CN.po
index bf161548d7..172b66685b 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -11593,7 +11593,7 @@ msgid "Release Series"
msgstr "清除所有数据"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr "MySQL 服务器版本低于 5.1。"
#: po/advisory_rules.php:37
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 7ee9bd31ca..72abecd443 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -4,15 +4,15 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-04-09 19:51+0200\n"
-"PO-Revision-Date: 2011-06-19 09:59+0200\n"
-"Last-Translator: \n"
+"PO-Revision-Date: 2012-04-19 03:25+0200\n"
+"Last-Translator: MoA Chung \n"
"Language-Team: chinese_traditional \n"
"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Pootle 2.0.5\n"
+"X-Generator: Weblate 0.9\n"
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:350
#: libraries/display_tbl.lib.php:359 server_privileges.php:1677
@@ -407,10 +407,10 @@ msgid "You have to choose at least one column to display"
msgstr "您至少需要選擇一個欄位"
#: db_qbe.php:186
-#, fuzzy, php-format
+#, php-format
#| msgid "visual builder"
msgid "Switch to %svisual builder%s"
-msgstr "視覺化查詢產生器"
+msgstr "切換至 %svisual builder%s"
#: db_qbe.php:222 libraries/db_structure.lib.php:90
#: libraries/display_tbl.lib.php:1003
@@ -557,7 +557,6 @@ msgid "Search in database"
msgstr "在資料庫中搜尋"
#: db_search.php:277
-#, fuzzy
#| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgid "Words or values to search for (wildcard: \"%\"):"
msgstr "要搜尋的文字或數值 (萬用字元:“%”):"
@@ -839,20 +838,18 @@ msgid "Copy and paste the joined values into the \"Length/Values\" field"
msgstr "複製並貼上結合的數值至 \"Length/Values\" 欄位"
#: export.php:29
-#, fuzzy
#| msgid "Bar type"
msgid "Bad type!"
-msgstr "柱狀圖類型"
+msgstr "錯誤的類型!"
#: export.php:77
msgid "Selected export type has to be saved in file!"
msgstr "選擇的匯出的檔案格式"
#: export.php:106
-#, fuzzy
#| msgid "Routines"
msgid "Bad parameters!"
-msgstr "一般"
+msgstr "錯誤的參數!"
#: export.php:166 export.php:191 export.php:652
#, php-format
@@ -876,10 +873,9 @@ msgid "Dump has been saved to file %s."
msgstr "備份資料已儲存至檔案 %s."
#: file_echo.php:21
-#, fuzzy
#| msgid "Export type"
msgid "Invalid export type"
-msgstr "輸出類型"
+msgstr "無效的輸出類型"
#: gis_data_editor.php:84
#, fuzzy, php-format
@@ -889,7 +885,7 @@ msgstr "%s 欄位的值"
#: gis_data_editor.php:113 tbl_gis_visualization.php:172
msgid "Use OpenStreetMaps as Base Layer"
-msgstr ""
+msgstr "使用OpenStreetMaps"
#: gis_data_editor.php:134
msgid "SRID"
@@ -955,7 +951,7 @@ msgstr "新增新使用者"
#: gis_data_editor.php:266 js/messages.php:322
msgid "Polygon"
-msgstr ""
+msgstr "多邊形"
#: gis_data_editor.php:306 js/messages.php:328
#, fuzzy
@@ -1293,15 +1289,15 @@ msgstr "查詢快取"
#: js/messages.php:101
msgid "System CPU Usage"
-msgstr ""
+msgstr "系統CPU使用率"
#: js/messages.php:102
msgid "System memory"
-msgstr ""
+msgstr "系統記憶體"
#: js/messages.php:103
msgid "System swap"
-msgstr ""
+msgstr "系統Swap"
#. l10n: shortcuts for Megabyte
#: js/messages.php:104 js/messages.php:127 libraries/common.lib.php:1402
@@ -1317,41 +1313,39 @@ msgstr "KB"
#: js/messages.php:107
msgid "Average load"
-msgstr ""
+msgstr "平均負載"
#: js/messages.php:108
-#, fuzzy
#| msgid "Total count"
msgid "Total memory"
-msgstr "總數量"
+msgstr "總記憶體"
#: js/messages.php:109
msgid "Cached memory"
-msgstr ""
+msgstr "快取記憶體"
#: js/messages.php:110
-#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
-msgstr "快取池"
+msgstr "緩衝記憶體"
#: js/messages.php:111
msgid "Free memory"
-msgstr ""
+msgstr "空閒記憶體"
#: js/messages.php:112
msgid "Used memory"
-msgstr ""
+msgstr "已使用記憶體"
#: js/messages.php:114
#, fuzzy
#| msgid "Total"
msgid "Total Swap"
-msgstr "總計"
+msgstr "總計Swap"
#: js/messages.php:115
msgid "Cached Swap"
-msgstr ""
+msgstr "快取Swap"
#: js/messages.php:116
msgid "Used Swap"
@@ -1365,7 +1359,7 @@ msgstr "空閒頁"
#: js/messages.php:119
msgid "Bytes sent"
-msgstr ""
+msgstr "Bytes 送出"
#: js/messages.php:120
#, fuzzy
@@ -1426,14 +1420,13 @@ msgid "Settings"
msgstr "設定"
#: js/messages.php:138
-#, fuzzy
#| msgid "Remove database"
msgid "Remove chart"
-msgstr "刪除資料庫"
+msgstr "刪除圖表"
#: js/messages.php:139
msgid "Edit title and labels"
-msgstr ""
+msgstr "編輯標題與標籤"
#: js/messages.php:140
#, fuzzy
@@ -1443,7 +1436,7 @@ msgstr "對齊網格"
#: js/messages.php:142
msgid "Please add at least one variable to the series"
-msgstr ""
+msgstr "請至少增加一個變數"
#: js/messages.php:143 libraries/display_export.lib.php:308
#: libraries/display_tbl.lib.php:573 libraries/export/sql.php:1093
@@ -1455,27 +1448,28 @@ msgstr "無"
#: js/messages.php:144
msgid "Resume monitor"
-msgstr ""
+msgstr "恢復監控"
#: js/messages.php:145
msgid "Pause monitor"
-msgstr ""
+msgstr "暫停監控"
#: js/messages.php:147
+#, fuzzy
msgid "general_log and slow_query_log are enabled."
-msgstr ""
+msgstr "general_log與slow_query_log已啟用"
#: js/messages.php:148
msgid "general_log is enabled."
-msgstr ""
+msgstr "general_log已啟用"
#: js/messages.php:149
msgid "slow_query_log is enabled."
-msgstr ""
+msgstr "slow_query_log已啟用"
#: js/messages.php:150
msgid "slow_query_log and general_log are disabled."
-msgstr ""
+msgstr "slow_query_log與general_log已關閉"
#: js/messages.php:151
msgid "log_output is not set to TABLE."
@@ -1496,7 +1490,7 @@ msgstr ""
#: js/messages.php:154
#, php-format
msgid "long_query_time is set to %d second(s)."
-msgstr ""
+msgstr "long_query_time已設為%d秒"
#: js/messages.php:155
msgid ""
@@ -1513,17 +1507,17 @@ msgstr "儲存爲檔案"
#. l10n: Enable in this context means setting a status variable to ON
#: js/messages.php:159
-#, fuzzy, php-format
+#, php-format
#| msgid "Enabled"
msgid "Enable %s"
-msgstr "已啓用"
+msgstr "已啓用 %s"
#. l10n: Disable in this context means setting a status variable to OFF
#: js/messages.php:161
-#, fuzzy, php-format
+#, php-format
#| msgid "Disabled"
msgid "Disable %s"
-msgstr "已關閉"
+msgstr "已關閉 %s"
#. l10n: %d seconds
#: js/messages.php:163
@@ -1715,7 +1709,7 @@ msgstr "重新載入"
#: js/messages.php:208
msgid "Affected rows:"
-msgstr ""
+msgstr "影響的行數"
#: js/messages.php:210
msgid "Failed parsing config file. It doesn't seem to be valid JSON code."
@@ -1750,7 +1744,7 @@ msgstr ""
#: js/messages.php:220
msgid "Issue"
-msgstr ""
+msgstr "問題"
#: js/messages.php:221
#, fuzzy
@@ -1776,7 +1770,7 @@ msgstr ""
#: js/messages.php:225
msgid "Test"
-msgstr ""
+msgstr "測試"
#: js/messages.php:230 pmd_general.php:382 pmd_general.php:419
#: pmd_general.php:539 pmd_general.php:587 pmd_general.php:663
@@ -2389,7 +2383,7 @@ msgstr "每小時"
#: libraries/Advisor.class.php:335
msgid "per day"
-msgstr ""
+msgstr "每天"
#: libraries/Config.class.php:703
msgid "Remove \"./config\" directory before using phpMyAdmin!"
@@ -2655,7 +2649,7 @@ msgstr "找不到主題 %s 的路徑"
#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27
msgid "Theme"
-msgstr ""
+msgstr "主題"
#: libraries/auth/config.auth.lib.php:71
msgid "Cannot connect: invalid settings."
@@ -3141,7 +3135,7 @@ msgstr "沒有可上傳的檔案"
#: libraries/common.lib.php:3358 libraries/common.lib.php:3359
msgid "Execute"
-msgstr ""
+msgstr "執行"
#: libraries/common.lib.php:3834
msgid "Print"
@@ -5836,8 +5830,9 @@ msgstr "格式特定選項:"
#: libraries/display_select_lang.lib.php:46
#: libraries/display_select_lang.lib.php:47 setup/frames/index.inc.php:72
+#, fuzzy
msgid "Language"
-msgstr "Language"
+msgstr "語系"
#: libraries/display_tbl.lib.php:406
#, fuzzy
@@ -12007,7 +12002,7 @@ msgid "Release Series"
msgstr "選擇表"
#: po/advisory_rules.php:36
-msgid "The MySQL server version less then 5.1."
+msgid "The MySQL server version less than 5.1."
msgstr ""
#: po/advisory_rules.php:37
@@ -12848,8 +12843,9 @@ msgid "Percentage of aborted clients"
msgstr "匯入檔案的格式"
#: po/advisory_rules.php:241 po/advisory_rules.php:246
+#, fuzzy
msgid "Too many clients are aborted."
-msgstr ""
+msgstr "太多客戶端已終止"
#: po/advisory_rules.php:242 po/advisory_rules.php:247
msgid ""
@@ -13007,7 +13003,7 @@ msgstr ""
#: po/advisory_rules.php:273
msgid "concurrent_insert is set to 0"
-msgstr ""
+msgstr "concurrent_insert設置為0"
#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
#~ msgstr "在資料表列資料表中最多顯示的資料表個數"