From ee0be2ec16d88b8aa596ac73ba82244e5f2bc4ec Mon Sep 17 00:00:00 2001 From: Dieter Adriaenssens Date: Sat, 19 Jan 2013 13:55:18 +0100 Subject: [PATCH 01/85] improve docblock : add file description --- libraries/parse_analyze.lib.php | 1 + 1 file changed, 1 insertion(+) diff --git a/libraries/parse_analyze.lib.php b/libraries/parse_analyze.lib.php index 64f1e41d67..9b9c800682 100644 --- a/libraries/parse_analyze.lib.php +++ b/libraries/parse_analyze.lib.php @@ -1,6 +1,7 @@ Date: Sat, 19 Jan 2013 11:25:15 -0500 Subject: [PATCH 02/85] bug #3776 [cookies] Login without auth on second server --- ChangeLog | 1 + libraries/Config.class.php | 2 +- libraries/auth/cookie.auth.lib.php | 14 ++++++++++---- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 551bd4450d..4d34ef54bb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -7,6 +7,7 @@ phpMyAdmin - ChangeLog - bug #3598736 [routines] Editing a procedure with special characters - bug #3600322 [core] Visualize GIS data throws Fatal Error - bug #3599362 [core] Double-escaped error message +- bug #3776 [cookies] Login without auth on second server 3.5.5.0 (2012-12-21) - bug #3563824 [export] Support Apache's mod_deflate diff --git a/libraries/Config.class.php b/libraries/Config.class.php index d8cb909047..5ba4343058 100644 --- a/libraries/Config.class.php +++ b/libraries/Config.class.php @@ -1374,7 +1374,7 @@ class PMA_Config */ function setCookie($cookie, $value, $default = null, $validity = null, $httponly = true) { - if ($validity == null) { + if ($validity === null) { $validity = 2592000; } if (strlen($value) && null !== $default && $value === $default) { diff --git a/libraries/auth/cookie.auth.lib.php b/libraries/auth/cookie.auth.lib.php index 4012db844d..13930b141c 100644 --- a/libraries/auth/cookie.auth.lib.php +++ b/libraries/auth/cookie.auth.lib.php @@ -493,11 +493,17 @@ function PMA_auth_set_user() PMA_get_blowfish_secret())); // Duration = as configured - $GLOBALS['PMA_Config']->setCookie('pmaPass-' . $GLOBALS['server'], - PMA_blowfish_encrypt(!empty($cfg['Server']['password']) ? $cfg['Server']['password'] : "\xff(blank)", - PMA_get_blowfish_secret()), + $GLOBALS['PMA_Config']->setCookie( + 'pmaPass-' . $GLOBALS['server'], + PMA_blowfish_encrypt( + ! empty($cfg['Server']['password']) + ? $cfg['Server']['password'] + : "\xff(blank)", + PMA_get_blowfish_secret() + ), null, - $GLOBALS['cfg']['LoginCookieStore']); + $GLOBALS['cfg']['LoginCookieStore'] + ); // Set server cookies if required (once per session) and, in this case, force // reload to ensure the client accepts cookies From ebb89e8521e437d017ec6211677d639dc035b693 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sat, 19 Jan 2013 11:29:45 -0500 Subject: [PATCH 03/85] Fix merge conflicts --- ChangeLog | 1 + libraries/Config.class.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index e8aaadfcd0..0e76d8c185 100644 --- a/ChangeLog +++ b/ChangeLog @@ -93,6 +93,7 @@ VerboseMultiSubmit, ReplaceHelpImg - bug #3598736 [routines] Editing a procedure with special characters - bug #3600322 [core] Visualize GIS data throws Fatal Error - bug #3599362 [core] Double-escaped error message +- bug #3776 [cookies] Login without auth on second server 3.5.5.0 (2012-12-21) - bug #3563824 [export] Support Apache's mod_deflate diff --git a/libraries/Config.class.php b/libraries/Config.class.php index 33fc5a5d0e..34c02c9262 100644 --- a/libraries/Config.class.php +++ b/libraries/Config.class.php @@ -1755,7 +1755,7 @@ class PMA_Config if (! isset($_COOKIE[$cookie]) || $_COOKIE[$cookie] !== $value) { // set cookie with new value /* Calculate cookie validity */ - if ($validity == null) { + if ($validity === null) { $validity = time() + 2592000; } elseif ($validity == 0) { $validity = 0; From 093947368355ae9c00f7740b0a57922407bbf9bb Mon Sep 17 00:00:00 2001 From: Yogendra Singh Shekhawat Date: Sat, 19 Jan 2013 14:37:45 +0100 Subject: [PATCH 04/85] Translated using Weblate (Hindi) Currently translated at 51.2% (1332 of 2602) --- po/hi.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/hi.po b/po/hi.po index 3faf762a32..f15324bf57 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-01-18 14:17+0100\n" -"PO-Revision-Date: 2013-01-10 13:24+0200\n" -"Last-Translator: Michal Čihař \n" +"PO-Revision-Date: 2013-01-19 14:37+0200\n" +"Last-Translator: Yogendra Singh Shekhawat \n" "Language-Team: Hindi \n" "Language: hi\n" "MIME-Version: 1.0\n" @@ -115,7 +115,7 @@ msgstr "%1$s डेटाबेस बनाया गया है." #: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " -msgstr "डाटाबेस टिप्पणि: " +msgstr "डॅटाबेस टिप्पणीः" #: db_datadict.php:157 libraries/operations.lib.php:784 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 From f31b39a1e39cfdc4d6e082df1d8458ed3505eb40 Mon Sep 17 00:00:00 2001 From: Rostyslav Gaitkulov Date: Sat, 19 Jan 2013 15:43:07 +0100 Subject: [PATCH 05/85] Translated using Weblate (Ukrainian) Currently translated at 52.8% (1373 of 2602) --- po/uk.po | 58 +++++++++++++++++++++++++++----------------------------- 1 file changed, 28 insertions(+), 30 deletions(-) diff --git a/po/uk.po b/po/uk.po index c0acaf4ccb..c30f8b5607 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,16 +4,16 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-01-18 14:17+0100\n" -"PO-Revision-Date: 2012-12-13 13:03+0200\n" -"Last-Translator: Michal Čihař \n" -"Language-Team: Ukrainian \n" +"PO-Revision-Date: 2013-01-19 15:43+0200\n" +"Last-Translator: Rostyslav Gaitkulov \n" +"Language-Team: Ukrainian " +"\n" "Language: uk\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" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 1.4-dev\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 @@ -1460,22 +1460,19 @@ msgid "Table" msgstr "Таблиця" #: js/messages.php:177 -#, fuzzy #| msgid "Charset" msgid "Chart" -msgstr "Набір символів" +msgstr "Графік" #: js/messages.php:178 -#, fuzzy #| msgid "Add into comments" msgid "Edit chart" -msgstr "Додати коментар" +msgstr "Редагувати графік" #: js/messages.php:179 -#, fuzzy #| msgid "SQL queries" msgid "Series" -msgstr "SQL запити" +msgstr "Серії" #. l10n: A collection of available filters #: js/messages.php:182 @@ -1551,16 +1548,14 @@ msgid "Import" msgstr "Імпорт" #: js/messages.php:200 -#, fuzzy #| msgid "Could not import configuration" msgid "Import monitor configuration" -msgstr "Не вдається імпортувати конфігурацію" +msgstr "Імпорт налаштувань монітору" #: js/messages.php:201 -#, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import" -msgstr "Будь ласка, оберіть первинний ключ або унікальний ключ" +msgstr "Будь ласка, оберіть файл, який ви бажаєте імпортувати" #: js/messages.php:203 msgid "Analyse Query" @@ -1807,14 +1802,12 @@ msgid "Each point represents a data row." msgstr "Кожна точка являє собою рядок даних." #: js/messages.php:291 -#, fuzzy msgid "Hovering over a point will show its label." -msgstr "При наведенні на точку буде показано її лейбл." +msgstr "Наведення курсора над крапкою відобразить, її назву." #: js/messages.php:293 -#, fuzzy msgid "To zoom in, select a section of the plot with the mouse." -msgstr "Для маштабування, виділіть ділянку з допомогою мишки" +msgstr "Для збільшення, виділіть ділянку графіку з допомогою миші" #: js/messages.php:295 #, fuzzy @@ -1844,10 +1837,9 @@ msgid "Query results" msgstr "Результати запиту" #: js/messages.php:304 -#, fuzzy #| msgid "Table of contents" msgid "Data point content" -msgstr "Зміст" +msgstr "Вміст точки даних" #: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:269 #: tbl_indexes.php:307 @@ -5313,7 +5305,7 @@ msgstr "Посилання для редагування, копіювання #: libraries/config/messages.inc.php:321 msgid "Where to show the table row links" -msgstr "" +msgstr "Де можна відобразити посилання на рядки таблиці" #: libraries/config/messages.inc.php:322 msgid "Use natural order for sorting table and database names" @@ -5365,6 +5357,8 @@ msgid "" "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" +"Вимкнути сповіщення, що відображається на сторінці структури бази даних при " +"відсутності таблиць, необхідних для зберігання конфігурації phpMyAdmin" #: libraries/config/messages.inc.php:333 msgid "Missing phpMyAdmin configuration storage tables" @@ -5388,7 +5382,7 @@ msgstr "" #: libraries/config/messages.inc.php:337 msgid "Iconic table operations" -msgstr "" +msgstr "Іконки операцій над таблицями" #: libraries/config/messages.inc.php:338 msgid "Disallow BLOB and BINARY columns from editing" @@ -5404,6 +5398,10 @@ msgid "" "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" +"Увімкніть, для зберігання історії запитів у базі даних (потрібно налаштоване " +"сховище конфігурації phpMyAdmin). При вимкненні, для зберігання буде " +"використовуватись JavaScript (історію запитів буде втрачено при закритті " +"вікна)." #: libraries/config/messages.inc.php:341 msgid "Permanent query history" @@ -5419,11 +5417,11 @@ msgstr "Довжина історії запитів" #: libraries/config/messages.inc.php:345 msgid "Tab displayed when opening a new query window" -msgstr "" +msgstr "Вкладка, які відображається під час відкриття нового вікна запиту" #: libraries/config/messages.inc.php:346 msgid "Default query window tab" -msgstr "" +msgstr "Вкладка за замовчуванням вікна запитів" #: libraries/config/messages.inc.php:347 msgid "Query window height (in pixels)" @@ -5448,7 +5446,7 @@ msgstr "" #: libraries/config/messages.inc.php:352 msgid "Recoding engine" -msgstr "" +msgstr "Механізм перекодування" #: libraries/config/messages.inc.php:353 msgid "When browsing tables, the sorting of each table is remembered" @@ -5512,7 +5510,7 @@ msgstr "Дозволити авторизацію для root" #: libraries/config/messages.inc.php:368 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" -msgstr "" +msgstr "Рядок, що відображається при ідентифікації з допомогою HTTP" #: libraries/config/messages.inc.php:369 msgid "HTTP Realm" @@ -5567,7 +5565,7 @@ msgstr "Стискати з’єднання" #: libraries/config/messages.inc.php:380 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" -msgstr "" +msgstr "Спосіб з'єднання з сервером - якщо не впевнені залиште [kbd]tcp[/kbd]" #: libraries/config/messages.inc.php:381 msgid "Connection type" @@ -5575,7 +5573,7 @@ msgstr "Тип з’єднання" #: libraries/config/messages.inc.php:382 msgid "Control user password" -msgstr "" +msgstr "Пароль виділеного користувача" #: libraries/config/messages.inc.php:383 msgid "" From 5325853e745a1d9fcae2bffb3292c3d929d40f33 Mon Sep 17 00:00:00 2001 From: Dieter Adriaenssens Date: Fri, 18 Jan 2013 14:06:51 +0100 Subject: [PATCH 06/85] Translated using Weblate (Dutch) Currently translated at 100.0% (2562 of 2562) --- po/nl.po | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/po/nl.po b/po/nl.po index 1c2a88f1ac..85bf2eee48 100644 --- a/po/nl.po +++ b/po/nl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-10-16 14:37+0200\n" -"PO-Revision-Date: 2012-12-19 15:49+0200\n" +"PO-Revision-Date: 2013-01-18 14:06+0200\n" "Last-Translator: Dieter Adriaenssens \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -2925,7 +2925,7 @@ msgstr "SQL-query" #: libraries/rte/rte_triggers.lib.php:104 #: libraries/rte/rte_triggers.lib.php:121 msgid "MySQL said: " -msgstr "MySQL retourneerde: " +msgstr "MySQL meldt: " #: libraries/common.lib.php:1126 msgid "Failed to connect to SQL validator!" @@ -2950,7 +2950,7 @@ msgstr "Genereer PHP-code" #: libraries/common.lib.php:1229 libraries/config/messages.inc.php:486 #: server_status.php:800 server_status.php:826 server_status.php:849 msgid "Refresh" -msgstr "Vernieuw" +msgstr "Ververs" #: libraries/common.lib.php:1239 msgid "Skip Validate SQL" @@ -6672,8 +6672,8 @@ msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" -"Voeg een tijdstip toe waarop databanken aangemaakt, laatst bijgewerkt en " -"laatst bekeken werden" +"Voeg een tijdstip toe waarop databanken aangemaakt, laatst aangepast en " +"laatst gecontroleerd werden" #: libraries/export/sql.php:100 msgid "" @@ -6769,9 +6769,9 @@ msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" -"Dump TIMESTAMP-kolommen in UTC (dit laat toe dat TIMESTAMP-kolommen " -"gedumpt en opnieuw ingeladen kunnen worden in servers in verschillende " -"tijdszones)" +"TIMESTAMP-kolommen exporteren als UTC (dit laat toe dat TIMESTAMP-" +"kolommen geëxporteerd en opnieuw ingeladen kunnen worden in servers in " +"verschillende tijdszones)" #: libraries/export/sql.php:342 libraries/export/xml.php:45 msgid "Procedures" @@ -8382,12 +8382,12 @@ msgid "" msgstr "" "Toont een veld met TIME, TIMESTAMP, DATETIME of numerieke Unix-tijdstempel " "als een opgemaakte datum. De eerste optie is de offset (in uren) welke aan " -"de tijdstempel zal worden toegevoegd (Standaard: 0). De tweede optie kan " -"worden gebruikt om een alternatieve opmaak te specificeren. Als derde optie " -"kan worden opgegeven of de lokale tijd, of de UTC-variant moet worden " -"gebruikt (gebruik \"local\" of \"utc\"). Afhankelijk hiervan verschilt de " -"opmaakcode - voor \"local\", zie de documentatie van de PHP-functie strftime" -"() en voor \"utc\" de functie gmdate()." +"de tijdstip zal worden toegevoegd (Standaard: 0). De tweede optie kan worden " +"gebruikt om een alternatieve opmaak te specificeren. Als derde optie kan " +"worden opgegeven of de lokale tijd, of de UTC-variant moet worden gebruikt " +"(gebruik \"local\" of \"utc\"). Afhankelijk hiervan verschilt de opmaakcode - " +"voor \"local\", zie de documentatie van de PHP-functie strftime() en voor " +"\"utc\" de functie gmdate()." #: libraries/transformations/text_plain__external.inc.php:10 msgid "" From 33f5dbb9305198a83948c2123ef88dd4a8466795 Mon Sep 17 00:00:00 2001 From: Yogendra Singh Shekhawat Date: Sat, 19 Jan 2013 14:37:44 +0100 Subject: [PATCH 07/85] Translated using Weblate (Hindi) Currently translated at 56.2% (1440 of 2562) --- po/hi.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/hi.po b/po/hi.po index d54759ec72..e08af1a2f7 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-10-16 14:37+0200\n" -"PO-Revision-Date: 2013-01-10 13:24+0200\n" -"Last-Translator: Michal Čihař \n" +"PO-Revision-Date: 2013-01-19 14:37+0200\n" +"Last-Translator: Yogendra Singh Shekhawat \n" "Language-Team: Hindi \n" "Language: hi\n" "MIME-Version: 1.0\n" @@ -126,7 +126,7 @@ 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 From 6d2d88d400d2eb52b05ab4953441a25fb297bd0b Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Fri, 18 Jan 2013 19:12:29 +0100 Subject: [PATCH 08/85] Translated using Weblate (Turkish) Currently translated at 100.0% (2562 of 2562) --- po/tr.po | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/po/tr.po b/po/tr.po index 022e7b8fe5..b5da7886a6 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-10-16 14:37+0200\n" -"PO-Revision-Date: 2012-11-26 21:36+0200\n" +"PO-Revision-Date: 2013-01-18 19:12+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: Turkish \n" "Language: tr\n" @@ -1503,7 +1503,7 @@ msgstr "" #: js/messages.php:165 msgid "Change settings" -msgstr "Ayarları değiştir" +msgstr "Değiştirme ayarları" #: js/messages.php:166 msgid "Current settings" @@ -2299,7 +2299,7 @@ msgstr "calendar-month-year" #: js/messages.php:489 msgctxt "Year suffix" msgid "none" -msgstr "yok" +msgstr "none" #: js/messages.php:498 msgid "Hour" @@ -3101,7 +3101,7 @@ msgstr "Açık" #: libraries/config.values.php:77 msgid "Closed" -msgstr "Kapandı" +msgstr "Kapalı" #: libraries/config.values.php:78 libraries/config/FormDisplay.tpl.php:199 #: libraries/relation.lib.php:82 libraries/relation.lib.php:89 @@ -10576,11 +10576,11 @@ msgstr "Çizelgeleri düzenle/yeniden düzelt" #: server_status.php:1597 msgid "Refresh rate" -msgstr "Oranı yenile" +msgstr "Yenileme oranı" #: server_status.php:1602 msgid "Chart columns" -msgstr "Çizelge sütunları" +msgstr "Çizelge sütunu" #: server_status.php:1618 msgid "Chart arrangement" @@ -10679,7 +10679,7 @@ msgstr "Hazır çizelge" #: server_status.php:1671 msgid "Status variable(s)" -msgstr "Durum değişkeni(leri)" +msgstr "Durum değişken(leri)i" #: server_status.php:1673 msgid "Select series:" @@ -10695,11 +10695,11 @@ msgstr "veya değişken adını yazın:" #: server_status.php:1694 msgid "Display as differential value" -msgstr "Ayırtedici değer olarak görüntüle" +msgstr "Ayırdedici değer olarak görüntüle" #: server_status.php:1696 msgid "Apply a divisor" -msgstr "Böleni uygula" +msgstr "Bir bölen uygula" #: server_status.php:1703 msgid "Append unit to data values" From 14c7c5f8ebaf21ab471396aa1c94fbfba2b69087 Mon Sep 17 00:00:00 2001 From: Rostyslav Gaitkulov Date: Sat, 19 Jan 2013 15:43:07 +0100 Subject: [PATCH 09/85] Translated using Weblate (Ukrainian) Currently translated at 56.6% (1451 of 2562) --- po/uk.po | 50 ++++++++++++++++++++++++-------------------------- 1 file changed, 24 insertions(+), 26 deletions(-) diff --git a/po/uk.po b/po/uk.po index 42492bc1dd..cd2ba95cce 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-10-16 14:37+0200\n" -"PO-Revision-Date: 2012-12-13 13:04+0200\n" -"Last-Translator: Michal Čihař \n" +"PO-Revision-Date: 2013-01-19 15:43+0200\n" +"Last-Translator: Rostyslav Gaitkulov \n" "Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -1627,22 +1627,19 @@ msgid "Table" msgstr "Таблиця" #: js/messages.php:194 -#, fuzzy #| msgid "Charset" msgid "Chart" -msgstr "Набір символів" +msgstr "Графік" #: js/messages.php:195 -#, fuzzy #| msgid "Add into comments" msgid "Edit chart" -msgstr "Додати коментар" +msgstr "Редагувати графік" #: js/messages.php:196 -#, fuzzy #| msgid "Servers" msgid "Series" -msgstr "Сервери" +msgstr "Серії" #. l10n: A collection of available filters #: js/messages.php:199 @@ -1718,16 +1715,14 @@ msgid "Import" msgstr "Імпорт" #: js/messages.php:217 -#, fuzzy #| msgid "Could not import configuration" msgid "Import monitor configuration" -msgstr "Не вдається імпортувати конфігурацію" +msgstr "Імпорт налаштувань монітору" #: js/messages.php:218 -#, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import" -msgstr "Будь ласка, оберіть первинний ключ або унікальний ключ" +msgstr "Будь ласка, оберіть файл, який ви бажаєте імпортувати" #: js/messages.php:220 msgid "Analyse Query" @@ -1920,14 +1915,12 @@ msgid "Each point represents a data row." msgstr "Кожна точка являє собою рядок даних." #: js/messages.php:302 -#, fuzzy msgid "Hovering over a point will show its label." -msgstr "При наведенні на точку буде показано її лейбл." +msgstr "Наведення курсора над крапкою відобразить, її назву." #: js/messages.php:304 -#, fuzzy msgid "To zoom in, select a section of the plot with the mouse." -msgstr "Для маштабування, виділіть ділянку з допомогою мишки" +msgstr "Для збільшення, виділіть ділянку графіку з допомогою миші" #: js/messages.php:306 msgid "Click reset zoom link to come back to original state." @@ -1955,10 +1948,9 @@ msgid "Query results" msgstr "Результати запиту" #: js/messages.php:315 -#, fuzzy #| msgid "Table of contents" msgid "Data point content" -msgstr "Зміст" +msgstr "Вміст точки даних" #: js/messages.php:318 tbl_change.php:312 tbl_indexes.php:228 #: tbl_indexes.php:255 @@ -4435,7 +4427,7 @@ msgstr "Посилання для редагування, копіювання #: libraries/config/messages.inc.php:322 msgid "Where to show the table row links" -msgstr "" +msgstr "Де можна відобразити посилання на рядки таблиці" #: libraries/config/messages.inc.php:323 msgid "Use natural order for sorting table and database names" @@ -4487,6 +4479,8 @@ msgid "" "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" +"Вимкнути сповіщення, що відображається на сторінці структури бази даних при " +"відсутності таблиць, необхідних для зберігання конфігурації phpMyAdmin" #: libraries/config/messages.inc.php:334 msgid "Missing phpMyAdmin configuration storage tables" @@ -4494,7 +4488,7 @@ msgstr "Відсутня таблиця для збереження конфіг #: libraries/config/messages.inc.php:336 msgid "Iconic table operations" -msgstr "" +msgstr "Іконки операцій над таблицями" #: libraries/config/messages.inc.php:337 msgid "Disallow BLOB and BINARY columns from editing" @@ -4510,6 +4504,10 @@ msgid "" "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" +"Увімкніть, для зберігання історії запитів у базі даних (потрібно налаштоване " +"сховище конфігурації phpMyAdmin). При вимкненні, для зберігання буде " +"використовуватись JavaScript (історію запитів буде втрачено при закритті " +"вікна)." #: libraries/config/messages.inc.php:340 msgid "Permanent query history" @@ -4525,11 +4523,11 @@ msgstr "Довжина історії запитів" #: libraries/config/messages.inc.php:344 msgid "Tab displayed when opening a new query window" -msgstr "" +msgstr "Вкладка, які відображається під час відкриття нового вікна запиту" #: libraries/config/messages.inc.php:345 msgid "Default query window tab" -msgstr "" +msgstr "Вкладка за замовчуванням вікна запитів" #: libraries/config/messages.inc.php:346 msgid "Query window height (in pixels)" @@ -4554,7 +4552,7 @@ msgstr "" #: libraries/config/messages.inc.php:351 msgid "Recoding engine" -msgstr "" +msgstr "Механізм перекодування" #: libraries/config/messages.inc.php:352 msgid "When browsing tables, the sorting of each table is remembered" @@ -4620,7 +4618,7 @@ msgstr "Дозволити авторизацію для root" #: libraries/config/messages.inc.php:368 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" -msgstr "" +msgstr "Рядок, що відображається при ідентифікації з допомогою HTTP" #: libraries/config/messages.inc.php:369 msgid "HTTP Realm" @@ -4675,7 +4673,7 @@ msgstr "Стискати з’єднання" #: libraries/config/messages.inc.php:380 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" -msgstr "" +msgstr "Спосіб з'єднання з сервером - якщо не впевнені залиште [kbd]tcp[/kbd]" #: libraries/config/messages.inc.php:381 msgid "Connection type" @@ -4683,7 +4681,7 @@ msgstr "Тип з’єднання" #: libraries/config/messages.inc.php:382 msgid "Control user password" -msgstr "" +msgstr "Пароль виділеного користувача" #: libraries/config/messages.inc.php:383 msgid "" From 88a90fd7ad3a56b4e67bd9a9ac56774944990204 Mon Sep 17 00:00:00 2001 From: Rouslan Placella Date: Sun, 20 Jan 2013 14:52:14 +0000 Subject: [PATCH 10/85] Fixed bug #3775 - Token mismatch on 2nd and subsequent server --- js/functions.js | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/js/functions.js b/js/functions.js index 4f3317fdc5..7ef3a081af 100644 --- a/js/functions.js +++ b/js/functions.js @@ -157,13 +157,20 @@ function PMA_current_version(data) function PMA_display_git_revision() { $('#is_git_revision').remove(); - $.get("index.php?token=" - + $("input[type=hidden][name=token]").val() - + "&git_revision=1&ajax_request=true", function (data) { - if (data.success == true) { - $(data.message).insertAfter('#li_pma_version'); + $.get( + "index.php", + { + "server": PMA_commonParams.get('server'), + "token": PMA_commonParams.get('token'), + "git_revision": true, + "ajax_request": true + }, + function (data) { + if (data.success == true) { + $(data.message).insertAfter('#li_pma_version'); + } } - }); + ); } /** From 8b7c5c13b596fb632f07f9a7bc2f76aad6ac61f1 Mon Sep 17 00:00:00 2001 From: Yogendra Singh Shekhawat Date: Sun, 20 Jan 2013 12:34:47 +0100 Subject: [PATCH 11/85] Translated using Weblate (Hindi) Currently translated at 51.3% (1334 of 2602) --- po/hi.po | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/po/hi.po b/po/hi.po index f15324bf57..1bae687b81 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-01-18 14:17+0100\n" -"PO-Revision-Date: 2013-01-19 14:37+0200\n" +"PO-Revision-Date: 2013-01-20 12:34+0200\n" "Last-Translator: Yogendra Singh Shekhawat \n" "Language-Team: Hindi \n" "Language: hi\n" @@ -916,11 +916,11 @@ msgstr "क्या आप सचमुच \"%s\" निष्पादित #: js/messages.php:31 libraries/mult_submits.inc.php:314 sql.php:459 msgid "You are about to DESTROY a complete database!" -msgstr "आप एक पूरा डेटाबेस नष्ट कर रहे हैं!" +msgstr "आप एक पूरा डॅटाबेस मिटाने जा रहे हैं!" #: js/messages.php:32 msgid "You are about to DESTROY a complete table!" -msgstr "आप एक पूराटेबल नष्ट कर रहे हैं!" +msgstr "आप एक पूरी डॅटा टेबल मिटाने जा रहे हैं!" #: js/messages.php:33 #, fuzzy @@ -934,31 +934,31 @@ 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?" -msgstr "यह आपरेशन लंबे समय लग सकता है. फिर भी आगे बढ़ें?" +msgstr "" +"इस प्रक्रिया में लम्बा वक्त भी लग सकता है। क्या आप चाहते हैं ये प्रक्रिया की " +"जाये ?" #: js/messages.php:40 msgid "Missing value in the form!" -msgstr "फॉर्म में मूल्य गूम हैं." +msgstr "फॉर्म में सूचना गुम हैं!" #: js/messages.php:41 msgid "This is not a number!" -msgstr "यह नंबर नहीं है!" +msgstr "यह 'आंकिक' या नम्बर रूप में नहीं है।" #: js/messages.php:42 -#, fuzzy #| msgid "Add index" msgid "Add Index" -msgstr "अनुक्रमणिका जोड़" +msgstr "अनुक्रमणिका जोड़ें" #: js/messages.php:43 -#, fuzzy #| msgid "Edit mode" msgid "Edit Index" -msgstr "संपादन मोड" +msgstr "अनुक्रमणिका सम्पादित करें" #: js/messages.php:44 tbl_indexes.php:339 tbl_indexes.php:347 #, fuzzy, php-format From e66d5d284861d3a2b5936729663e521defab1aaa Mon Sep 17 00:00:00 2001 From: Rostyslav Gaitkulov Date: Sun, 20 Jan 2013 12:52:35 +0100 Subject: [PATCH 12/85] Translated using Weblate (Ukrainian) Currently translated at 53.6% (1394 of 2602) --- po/uk.po | 64 +++++++++++++++++++++++++++++++------------------------- 1 file changed, 35 insertions(+), 29 deletions(-) diff --git a/po/uk.po b/po/uk.po index c30f8b5607..729d2470a5 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-01-18 14:17+0100\n" -"PO-Revision-Date: 2013-01-19 15:43+0200\n" +"PO-Revision-Date: 2013-01-20 12:52+0200\n" "Last-Translator: Rostyslav Gaitkulov \n" "Language-Team: Ukrainian " "\n" @@ -1359,29 +1359,27 @@ msgid "Differential" msgstr "Диференціальний" #: js/messages.php:154 -#, fuzzy, php-format +#, php-format #| msgid "Divided by %s:" msgid "Divided by %s" -msgstr "Розділено по %s:" +msgstr "Розділено на %s" #: js/messages.php:155 msgid "Unit" msgstr "Модуль" #: js/messages.php:157 -#, fuzzy msgid "From slow log" -msgstr "Із повільного журналу (slow log)" +msgstr "З журналу повільних запитів" #: js/messages.php:158 msgid "From general log" msgstr "Із загального журналу" #: js/messages.php:159 -#, fuzzy #| msgid "Loading logs" msgid "Analysing logs" -msgstr "Журнал завантаження" +msgstr "Аналіз журналів" #: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." @@ -1419,10 +1417,9 @@ msgid "Jump to Log table" msgstr "Перейти до таблиці Log" #: js/messages.php:167 -#, fuzzy #| msgid "No databases" msgid "No data found" -msgstr "БД відсутні" +msgstr "Даних не знайдено" #: js/messages.php:168 msgid "Log analysed, but no data found in this time span." @@ -1453,7 +1450,6 @@ msgid "Profiling results" msgstr "Результати профілювання" #: js/messages.php:176 -#, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" @@ -1523,7 +1519,6 @@ msgid "Reload page" msgstr "Перезавантажити сторінку" #: js/messages.php:195 -#, fuzzy msgid "Affected rows:" msgstr "Рядки що зазнали змін:" @@ -2258,11 +2253,10 @@ msgstr "календар-місяць-рік" #. l10n: Year suffix for calendar, "none" is empty. #: js/messages.php:516 -#, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" -msgstr "Жодного" +msgstr "немає" #: js/messages.php:525 msgid "Hour" @@ -2546,7 +2540,6 @@ msgstr "Вперед" #: libraries/DisplayResults.class.php:863 libraries/Util.class.php:2591 #: libraries/Util.class.php:2594 -#, fuzzy #| msgid "End" msgctxt "Last page" msgid "End" @@ -3045,7 +3038,7 @@ msgid "Error" msgstr "Помилка" #: libraries/Message.class.php:254 -#, fuzzy, php-format +#, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d рядок задіяно." @@ -5338,6 +5331,8 @@ msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" +"[kbd]SMART[/kbd] - означає зворотній порядок сортування для полів, що мають " +"тип TIME, DATE, DATETIME и TIMESTAMP; у іншому випадку порядок буде прямим" #: libraries/config/messages.inc.php:329 msgid "Default sorting order" @@ -5522,6 +5517,8 @@ msgid "" "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" +"Шлях до конфігураційного файлу [a@http://swekey.com]апаратної аутентифікації " +"SweKey[/a] (наприклад, якщо розміщено нижче кореню хоста: /etc/swekey.conf)" #: libraries/config/messages.inc.php:371 msgid "SweKey config file" @@ -5580,22 +5577,25 @@ msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" +"Спеціальний користувач MySQL з обмеженими привілеями. Детальніше дивіться на " +"[a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" #: libraries/config/messages.inc.php:384 msgid "Control user" -msgstr "" +msgstr "Виділений користувач" #: libraries/config/messages.inc.php:385 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host" msgstr "" +"Альтернативний хост для зберігання налаштувань, для використання вже " +"вказаного хоста - залиште порожнім" #: libraries/config/messages.inc.php:386 -#, fuzzy #| msgid "Any host" msgid "Control host" -msgstr "Довільний хост" +msgstr "Керування хостом" #: libraries/config/messages.inc.php:387 msgid "Count tables when showing database list" @@ -5613,31 +5613,33 @@ msgstr "" #: libraries/config/messages.inc.php:390 msgid "Designer table" -msgstr "" +msgstr "Таблиця дизайнера" #: libraries/config/messages.inc.php:391 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" +"Детальніше дивіться на [a@http://sf.net/support/tracker.php?aid=1849494]PMA " +"bug tracker[/a] та [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" #: libraries/config/messages.inc.php:392 msgid "Disable use of INFORMATION_SCHEMA" -msgstr "Деактивувати використання INFORMATION_SCHEMA" +msgstr "Вимкнути використання INFORMATION_SCHEMA" #: libraries/config/messages.inc.php:393 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -"Які розширення PHP використовувати; слід використовувати mysqli, якщо " -"підтримується" +"Які розширення PHP використовувати для роботи з MySQL. Варто використовувати " +"mysqli, при можливості" #: libraries/config/messages.inc.php:394 msgid "PHP extension to use" -msgstr "" +msgstr "PHP розширення" #: libraries/config/messages.inc.php:395 msgid "Hide databases matching regular expression (PCRE)" -msgstr "" +msgstr "Приховати бази даних, що потрапляють під регулярний вираз (PCRE)" #: libraries/config/messages.inc.php:396 msgid "Hide databases" @@ -5655,11 +5657,11 @@ msgstr "Таблиця історії SQL запитів" #: libraries/config/messages.inc.php:399 msgid "Hostname where MySQL server is running" -msgstr "Ім’я сервера де запущений MySQL сервер" +msgstr "Ім’я сервера на якому запущено MySQL сервер" #: libraries/config/messages.inc.php:400 msgid "Server hostname" -msgstr "Назва сервера" +msgstr "Хост сервера" #: libraries/config/messages.inc.php:401 msgid "Logout URL" @@ -5670,18 +5672,22 @@ msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed" msgstr "" +"Обмежує кількість властивостей таблиці, що зберігаються в базі. Застарілі " +"автоматично видаляються" #: libraries/config/messages.inc.php:403 msgid "Maximal number of table preferences to store" -msgstr "" +msgstr "Максимальна кількість властивостей таблиці, що зберігаються" #: libraries/config/messages.inc.php:404 msgid "Try to connect without password" -msgstr "Спробувати з’єднатись буз паролю" +msgstr "" +"Спробувати з’єднатись без паролю, якщо пароль не було прийнято при " +"ідентифікації" #: libraries/config/messages.inc.php:405 msgid "Connect without password" -msgstr "З’єднатись без паролю" +msgstr "З’єднуватись без паролю" #: libraries/config/messages.inc.php:406 msgid "" From 6d5d315c2297376bf21218212b514ee6fefd31b0 Mon Sep 17 00:00:00 2001 From: Rostyslav Gaitkulov Date: Sun, 20 Jan 2013 12:52:34 +0100 Subject: [PATCH 13/85] Translated using Weblate (Ukrainian) Currently translated at 57.7% (1477 of 2562) --- po/uk.po | 76 +++++++++++++++++++++++++++++++++----------------------- 1 file changed, 45 insertions(+), 31 deletions(-) diff --git a/po/uk.po b/po/uk.po index cd2ba95cce..8823a9f8fa 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-10-16 14:37+0200\n" -"PO-Revision-Date: 2013-01-19 15:43+0200\n" +"PO-Revision-Date: 2013-01-20 12:52+0200\n" "Last-Translator: Rostyslav Gaitkulov \n" "Language-Team: Ukrainian \n" "Language: uk\n" @@ -1127,10 +1127,9 @@ 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!" @@ -1529,29 +1528,27 @@ msgid "Differential" msgstr "Диференціальний" #: js/messages.php:171 -#, fuzzy, php-format +#, php-format #| msgid "Divided by %s:" msgid "Divided by %s" -msgstr "Розділено по %s:" +msgstr "Розділено на %s" #: js/messages.php:172 msgid "Unit" msgstr "Модуль" #: js/messages.php:174 -#, fuzzy msgid "From slow log" -msgstr "Із повільного журналу (slow log)" +msgstr "З журналу повільних запитів" #: js/messages.php:175 msgid "From general log" msgstr "Із загального журналу" #: js/messages.php:176 -#, fuzzy #| msgid "Loading logs" msgid "Analysing logs" -msgstr "Журнал завантаження" +msgstr "Аналіз журналів" #: js/messages.php:177 msgid "Analysing & loading logs. This may take a while." @@ -1589,10 +1586,9 @@ msgid "Jump to Log table" msgstr "Перейти до таблиці Log" #: js/messages.php:184 -#, fuzzy #| msgid "No databases" msgid "No data found" -msgstr "БД відсутні" +msgstr "Даних не знайдено" #: js/messages.php:185 msgid "Log analysed, but no data found in this time span." @@ -1620,7 +1616,6 @@ msgid "Profiling results" msgstr "Результати профілювання" #: js/messages.php:193 -#, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" @@ -1690,7 +1685,6 @@ msgid "Reload page" msgstr "Перезавантажити сторінку" #: js/messages.php:212 -#, fuzzy msgid "Affected rows:" msgstr "Рядки що зазнали змін:" @@ -2315,11 +2309,10 @@ msgstr "календар-місяць-рік" #. l10n: Year suffix for calendar, "none" is empty. #: js/messages.php:489 -#, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" -msgstr "Жодного" +msgstr "немає" #: js/messages.php:498 msgid "Hour" @@ -2497,7 +2490,7 @@ msgid "Error" msgstr "Помилка" #: libraries/Message.class.php:241 -#, fuzzy, php-format +#, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d рядок задіяно." @@ -3021,7 +3014,6 @@ msgstr "Вперед" #: libraries/common.lib.php:2485 libraries/common.lib.php:2488 #: libraries/display_tbl.lib.php:390 -#, fuzzy #| msgid "End" msgctxt "Last page" msgid "End" @@ -4460,6 +4452,8 @@ msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" +"[kbd]SMART[/kbd] - означає зворотній порядок сортування для полів, що мають " +"тип TIME, DATE, DATETIME и TIMESTAMP; у іншому випадку порядок буде прямим" #: libraries/config/messages.inc.php:330 msgid "Default sorting order" @@ -4630,6 +4624,8 @@ msgid "" "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" +"Шлях до конфігураційного файлу [a@http://swekey.com]апаратної аутентифікації " +"SweKey[/a] (наприклад, якщо розміщено нижче кореню хоста: /etc/swekey.conf)" #: libraries/config/messages.inc.php:371 msgid "SweKey config file" @@ -4648,6 +4644,9 @@ msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" +"Для вимкнення підтримки " +"[a@http://wiki.phpmyadmin.net/pma/bookmark]закладок[/a] залиште порожнім. " +"Рекомендовано: [kbd]pma_bookmark[/kbd]" #: libraries/config/messages.inc.php:375 msgid "Bookmark table" @@ -4658,6 +4657,8 @@ msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" +"Для вимкнення підтримки коментарів/mime-типів полів залиште порожнім. " +"Рекомендовано: [kbd]pma_column_info[/kbd]" #: libraries/config/messages.inc.php:377 msgid "Column information table" @@ -4688,22 +4689,25 @@ msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" +"Спеціальний користувач MySQL з обмеженими привілеями. Детальніше дивіться на " +"[a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" #: libraries/config/messages.inc.php:384 msgid "Control user" -msgstr "" +msgstr "Виділений користувач" #: libraries/config/messages.inc.php:385 msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host" msgstr "" +"Альтернативний хост для зберігання налаштувань, для використання вже " +"вказаного хоста - залиште порожнім" #: libraries/config/messages.inc.php:386 -#, fuzzy #| msgid "Any host" msgid "Control host" -msgstr "Довільний хост" +msgstr "Керування хостом" #: libraries/config/messages.inc.php:387 msgid "Count tables when showing database list" @@ -4718,34 +4722,38 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" +"Для вимкнення підтримки дизайнера зв`язків залиште порожнім. Рекомендовано: " +"[kbd]pma_designer_coords[/kbd]" #: libraries/config/messages.inc.php:390 msgid "Designer table" -msgstr "" +msgstr "Таблиця дизайнера" #: libraries/config/messages.inc.php:391 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" +"Детальніше дивіться на [a@http://sf.net/support/tracker.php?aid=1849494]PMA " +"bug tracker[/a] та [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" #: libraries/config/messages.inc.php:392 msgid "Disable use of INFORMATION_SCHEMA" -msgstr "Деактивувати використання INFORMATION_SCHEMA" +msgstr "Вимкнути використання INFORMATION_SCHEMA" #: libraries/config/messages.inc.php:393 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -"Які розширення PHP використовувати; слід використовувати mysqli, якщо " -"підтримується" +"Які розширення PHP використовувати для роботи з MySQL. Варто використовувати " +"mysqli, при можливості" #: libraries/config/messages.inc.php:394 msgid "PHP extension to use" -msgstr "" +msgstr "PHP розширення" #: libraries/config/messages.inc.php:395 msgid "Hide databases matching regular expression (PCRE)" -msgstr "" +msgstr "Приховати бази даних, що потрапляють під регулярний вираз (PCRE)" #: libraries/config/messages.inc.php:396 msgid "Hide databases" @@ -4756,6 +4764,8 @@ msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" +"Для вимкнення історії SQL залиште поле порожнім. Рекомендовано: " +"[kbd]pma_history[/kbd]" #: libraries/config/messages.inc.php:398 msgid "SQL query history table" @@ -4763,11 +4773,11 @@ msgstr "Таблиця історії SQL запитів" #: libraries/config/messages.inc.php:399 msgid "Hostname where MySQL server is running" -msgstr "Ім’я сервера де запущений MySQL сервер" +msgstr "Ім’я сервера на якому запущено MySQL сервер" #: libraries/config/messages.inc.php:400 msgid "Server hostname" -msgstr "Назва сервера" +msgstr "Хост сервера" #: libraries/config/messages.inc.php:401 msgid "Logout URL" @@ -4778,18 +4788,22 @@ msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed" msgstr "" +"Обмежує кількість властивостей таблиці, що зберігаються в базі. Застарілі " +"автоматично видаляються" #: libraries/config/messages.inc.php:403 msgid "Maximal number of table preferences to store" -msgstr "" +msgstr "Максимальна кількість властивостей таблиці, що зберігаються" #: libraries/config/messages.inc.php:404 msgid "Try to connect without password" -msgstr "Спробувати з’єднатись буз паролю" +msgstr "" +"Спробувати з’єднатись без паролю, якщо пароль не було прийнято при " +"ідентифікації" #: libraries/config/messages.inc.php:405 msgid "Connect without password" -msgstr "З’єднатись без паролю" +msgstr "З’єднуватись без паролю" #: libraries/config/messages.inc.php:406 msgid "" From c8dfa6b2f78112dbd077af6ae008af740222776c Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sun, 20 Jan 2013 12:51:48 -0500 Subject: [PATCH 14/85] Bug #3777 Cannot log out from second server --- libraries/common.inc.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libraries/common.inc.php b/libraries/common.inc.php index 7d7fce1024..34964fac7c 100644 --- a/libraries/common.inc.php +++ b/libraries/common.inc.php @@ -481,7 +481,9 @@ if ($token_mismatch) { /* Possible login form */ 'pma_servername', 'pma_username', 'pma_password', /* Needed to send the correct reply */ - 'ajax_request' + 'ajax_request', + /* Permit to log out even if there is a token mismatch */ + 'old_usr' ); /** * Allow changing themes in test/theme.php From 6d62093d5ae1376a861ea0811020bc1a481c0fd2 Mon Sep 17 00:00:00 2001 From: Yogendra Singh Shekhawat Date: Sun, 20 Jan 2013 16:36:34 +0100 Subject: [PATCH 15/85] Translated using Weblate (Hindi) Currently translated at 51.5% (1339 of 2602) --- po/hi.po | 28 +++++++++++++--------------- 1 file changed, 13 insertions(+), 15 deletions(-) diff --git a/po/hi.po b/po/hi.po index 1bae687b81..4432942925 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-01-18 14:17+0100\n" -"PO-Revision-Date: 2013-01-20 12:34+0200\n" +"PO-Revision-Date: 2013-01-20 16:36+0200\n" "Last-Translator: Yogendra Singh Shekhawat \n" "Language-Team: Hindi \n" "Language: hi\n" @@ -979,32 +979,32 @@ msgstr "मेज़बान का नाम (hostname) खाली है!" #: js/messages.php:52 msgid "The user name is empty!" -msgstr "यूसर नाम खाली है!" +msgstr "प्रयोगकर्ता का नाम खाली है!" #: js/messages.php:53 libraries/server_privileges.lib.php:1315 #: user_password.php:110 msgid "The password is empty!" -msgstr "पासवर्ड खाली है" +msgstr "कूटशब्द (password) खाली है!" #: js/messages.php:54 libraries/server_privileges.lib.php:1313 #: user_password.php:113 msgid "The passwords aren't the same!" -msgstr "पासवर्ड मिलते झूलते नहीं हैं." +msgstr "कूटशब्द (password) समान नहीं हैं!" #: js/messages.php:55 libraries/server_privileges.lib.php:1444 #: libraries/server_privileges.lib.php:1636 #: libraries/server_privileges.lib.php:2531 #: libraries/server_privileges.lib.php:2832 msgid "Add user" -msgstr "naya upyokta" +msgstr "नया प्रयोक्ता जोड़ें" #: js/messages.php:56 msgid "Reloading Privileges" -msgstr "प्रिविलेज पुनः लोड करें" +msgstr "विशेषाधिकारों को पुनः लोड करें" #: js/messages.php:57 msgid "Removing Selected Users" -msgstr "चयनित यूसर को हटायें" +msgstr "चयनित प्रयोक्ताओं को हटायें" #: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 #: tbl_tracking.php:489 @@ -1029,17 +1029,16 @@ msgstr "सर्वर चुनिये" #: js/messages.php:63 msgid "Live conn./process chart" -msgstr "" +msgstr "लाईव कनेक्शन / प्रोसेस चार्ट" #: js/messages.php:64 -#, fuzzy #| msgid "Show query chart" msgid "Live query chart" -msgstr "क्वरी चार्ट शो" +msgstr "जीवन्त (live) क्वॅरी चार्ट" #: js/messages.php:66 msgid "Static data" -msgstr "" +msgstr "स्थिर (static) डॅटा" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 @@ -1053,7 +1052,7 @@ msgstr "कुल" #: js/messages.php:70 libraries/ServerStatusData.class.php:198 #: server_status_queries.php:155 msgid "Other" -msgstr "" +msgstr "अन्य" #. l10n: Thousands separator #: js/messages.php:72 libraries/Util.class.php:1510 @@ -1066,10 +1065,9 @@ msgid "." msgstr "." #: js/messages.php:76 -#, fuzzy #| msgid "Connections" msgid "Connections / Processes" -msgstr "कनेक्शन" +msgstr "कनेक्शन / प्रक्रियाएँ" #: js/messages.php:79 #, fuzzy @@ -1179,7 +1177,7 @@ msgstr "कनेक्शन" #: js/messages.php:105 server_status.php:384 msgid "Processes" -msgstr "प्रक्रियां" +msgstr "प्रक्रियाएँ" #. l10n: shortcuts for Byte #: js/messages.php:108 libraries/Util.class.php:1456 From 5878ac005202c9119ddffa02fd3d48d8e9b34899 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sun, 20 Jan 2013 17:30:28 +0100 Subject: [PATCH 16/85] Translated using Weblate (Sinhala) Currently translated at 82.2% (2140 of 2602) --- po/si.po | 150 +++++++++++++++++++++---------------------------------- 1 file changed, 58 insertions(+), 92 deletions(-) diff --git a/po/si.po b/po/si.po index 5a20c94cc9..5502017e37 100644 --- a/po/si.po +++ b/po/si.po @@ -4,10 +4,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-01-18 14:17+0100\n" -"PO-Revision-Date: 2012-12-27 18:39+0200\n" +"PO-Revision-Date: 2013-01-20 17:30+0200\n" "Last-Translator: Madhura Jayaratne \n" -"Language-Team: Sinhala \n" +"Language-Team: Sinhala " +"\n" "Language: si\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -2749,9 +2749,8 @@ msgid "Packed" msgstr "අහුරන ලද" #: libraries/Index.class.php:566 tbl_tracking.php:386 -#, fuzzy msgid "Cardinality" -msgstr "Cardinality" +msgstr "අනේකත්වය" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:130 @@ -5187,14 +5186,15 @@ msgid "Missing phpMyAdmin configuration storage tables" msgstr "phpMyAdmin වින්‍යාස ගබඩාවේ අඩු වගු" #: libraries/config/messages.inc.php:334 -#, fuzzy #| msgid "" #| "Disable the default warning that is displayed if mcrypt is missing for " #| "cookie authentication" msgid "" "Disable the default warning that is displayed if a difference between the " "MySQL library and server is detected" -msgstr "කුකී සත්‍යාපනය සඳහා අවශ්‍ය mcrypt නොමැති අවස්ථාවකදී පෙන්වන අනතුරු ඇඟවීම අක්‍රීය කරන්න" +msgstr "" +"MySQL පුස්තකාලය සහ සේවාදායකය අතර වෙනසක් හඳුනාගත් විට පෙන්වන අනතුරු ඇඟවීම " +"අක්‍රීය කරන්න" #: libraries/config/messages.inc.php:335 msgid "Server/library difference warning" @@ -5349,7 +5349,6 @@ msgid "Authentication type" msgstr "සත්‍යාපන වර්ගය" #: libraries/config/messages.inc.php:374 -#, fuzzy #| msgid "" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/" #| "a] support, suggested: [kbd]pma_bookmark[/kbd]" @@ -5357,15 +5356,14 @@ msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" msgstr "" -"[a@http://wiki.phpmyadmin.net/pma/bookmark]පොත්සලකුණු[/a] විශේෂාංගය අනවශ්‍ය නම් හිස්ව " -"තබන්න. යෝජිත: [kbd]pma_bookmark[/kbd]" +"[a@http://wiki.phpmyadmin.net/pma/bookmark]පොත්සලකුණු[/a] විශේෂාංගය අනවශ්‍ය " +"නම් හිස්ව තබන්න. යෝජිත: [kbd]pma__bookmark[/kbd]" #: libraries/config/messages.inc.php:375 msgid "Bookmark table" msgstr "පොත්සලකුණු ගොනුව" #: libraries/config/messages.inc.php:376 -#, fuzzy #| msgid "" #| "Leave blank for no column comments/mime types, suggested: [kbd]" #| "pma_column_info[/kbd]" @@ -5373,7 +5371,8 @@ msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]" msgstr "" -"තීර විස්තර/mime වර්ග විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න. යෝජිත: [kbd]pma_column_info[/kbd]" +"තීර විස්තර/mime වර්ග විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න. යෝජිත: " +"[kbd]pma__column_info[/kbd]" #: libraries/config/messages.inc.php:377 msgid "Column information table" @@ -5432,7 +5431,6 @@ msgid "Count tables" msgstr "වගු ගණන් කරන්න" #: libraries/config/messages.inc.php:389 -#, fuzzy #| msgid "" #| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" #| "kbd]" @@ -5440,7 +5438,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"සැලසුම්කරණය විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma_designer_coords[/kbd]" +"සැලසුම්කරණය විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: " +"[kbd]pma__designer_coords[/kbd]" #: libraries/config/messages.inc.php:390 msgid "Designer table" @@ -5473,7 +5472,6 @@ msgid "Hide databases" msgstr "දත්තගබඩා සඟවන්න" #: libraries/config/messages.inc.php:397 -#, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" #| "[/kbd]" @@ -5481,8 +5479,8 @@ msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" msgstr "" -"SQL විමසුම් ඉතිහාසය රඳවා ගැනීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma_history" -"[/kbd]" +"SQL විමසුම් ඉතිහාසය රඳවා ගැනීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: " +"[kbd]pma__history[/kbd]" #: libraries/config/messages.inc.php:398 msgid "SQL query history table" @@ -5540,14 +5538,13 @@ msgid "Password for config auth" msgstr "config සත්‍යාපනය සඳහා මුරපදය" #: libraries/config/messages.inc.php:410 -#, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]" msgstr "" -"ක්‍රමානුරූපය PDF ලෙස අපනයනය කිරීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]" -"pma_pdf_pages[/kbd]" +"ක්‍රමානුරූපය PDF ලෙස අපනයනය කිරීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: " +"[kbd]pma__pdf_pages[/kbd]" #: libraries/config/messages.inc.php:411 msgid "PDF schema: pages table" @@ -5576,7 +5573,6 @@ msgid "Server port" msgstr "සර්වරයේ පොර්ට්" #: libraries/config/messages.inc.php:416 -#, fuzzy #| msgid "" #| "Leave blank for no \"persistent\" recently used tables across sessions, " #| "suggested: [kbd]pma_recent[/kbd]" @@ -5584,15 +5580,14 @@ msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]" msgstr "" -"සැසි අතර \"කල් පවත්නා\" ලෙස මෑතදී භාවිතා කල වගු මතක තබාගැනීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව " -"තබන්න, යෝජිත: [kbd]pma_recent[/kbd]" +"සැසි අතර \"කල් පවත්නා\" ලෙස මෑතදී භාවිතා කල වගු මතක තබාගැනීමේ විශේෂාංගය " +"අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma__recent[/kbd]" #: libraries/config/messages.inc.php:417 msgid "Recently used table" msgstr "මෑතදී භාවිතා වූ වගුව" #: libraries/config/messages.inc.php:418 -#, fuzzy #| msgid "" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" #| "links[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -5600,8 +5595,8 @@ msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" -"[a@http://wiki.phpmyadmin.net/pma/relation]වගු අතර සම්බන්ධතා දැක්වෙන සබැඳි[/a] " -"විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma_relation[/kbd]" +"[a@http://wiki.phpmyadmin.net/pma/relation]වගු අතර සම්බන්ධතා දැක්වෙන " +"සබැඳි[/a] විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma__relation[/kbd]" #: libraries/config/messages.inc.php:419 msgid "Relation table" @@ -5648,7 +5643,6 @@ msgid "Use SSL" msgstr "SSL භාවිතා කරන්න" #: libraries/config/messages.inc.php:429 -#, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/" #| "kbd]" @@ -5656,15 +5650,14 @@ msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]" msgstr "" -"ක්‍රමානුරූපය PDF ලෙස අපනයනය කිරීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]" -"pma_table_coords[/kbd]" +"ක්‍රමානුරූපය PDF ලෙස අපනයනය කිරීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: " +"[kbd]pma__table_coords[/kbd]" #: libraries/config/messages.inc.php:430 msgid "PDF schema: table coordinates" msgstr "PDF ක්‍රමානුරූපය: වගු ඛණ්ඩාංක" #: libraries/config/messages.inc.php:431 -#, fuzzy #| msgid "" #| "Table to describe the display columns, leave blank for no support; " #| "suggested: [kbd]pma_table_info[/kbd]" @@ -5672,15 +5665,14 @@ msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]" msgstr "" -"දර්ෂිත තීර පිලිබඳ දත්ත අඩංගු වගුව. විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න; යෝජිත: [kbd]" -"pma_table_info[/kbd]" +"දර්ෂිත තීර පිලිබඳ දත්ත අඩංගු වගුව. විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න; යෝජිත: " +"[kbd]pma__table_info[/kbd]" #: libraries/config/messages.inc.php:432 msgid "Display columns table" msgstr "පෙන්විය යුතු තීර පිළිබඳ දත්ත ඇතුලත් වගුව" #: libraries/config/messages.inc.php:433 -#, fuzzy #| msgid "" #| "Leave blank for no \"persistent\" tables'UI preferences across sessions, " #| "suggested: [kbd]pma_table_uiprefs[/kbd]" @@ -5688,8 +5680,8 @@ msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]" msgstr "" -"සැසි අතර \"කල් පවත්නා\" ලෙස වගු අතුරු මුහුණත සම්බන්ධ අභිරුචි තබාගැනීමේ විශේෂාංගය අනවශ්‍ය නම් " -"හිස්ව තබන්න, යෝජිත: [kbd]pma_table_uiprefs[/kbd]" +"සැසි අතර \"කල් පවත්නා\" ලෙස වගු අතුරු මුහුණත සම්බන්ධ අභිරුචි තබාගැනීමේ " +"විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma__table_uiprefs[/kbd]" #: libraries/config/messages.inc.php:434 msgid "UI preferences table" @@ -5738,7 +5730,6 @@ msgid "Statements to track" msgstr "අවධානය සක්‍රීය කල යුතු ප්‍රකාශ" #: libraries/config/messages.inc.php:443 -#, fuzzy #| msgid "" #| "Leave blank for no SQL query tracking support, suggested: [kbd]" #| "pma_tracking[/kbd]" @@ -5746,7 +5737,8 @@ msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]" msgstr "" -"SQL විමසුම් අවධානය විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma_tracking[/kbd]" +"SQL විමසුම් අවධානය විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: " +"[kbd]pma__tracking[/kbd]" #: libraries/config/messages.inc.php:444 msgid "SQL query tracking table" @@ -5763,7 +5755,6 @@ msgid "Automatically create versions" msgstr "ස්වයංක්‍රියව අනුවාද සාදන්න" #: libraries/config/messages.inc.php:447 -#, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" #| "pma_userconfig[/kbd]" @@ -5771,8 +5762,8 @@ msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]" msgstr "" -"භාවිතා කරන්නාගේ අභිරුචි දත්තගබඩාවේ ගබඩා කිරීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න; යෝජිත: " -"[kbd]pma_userconfig[/kbd]" +"භාවිතා කරන්නාගේ අභිරුචි දත්තගබඩාවේ ගබඩා කිරීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව " +"තබන්න; යෝජිත: [kbd]pma__userconfig[/kbd]" #: libraries/config/messages.inc.php:448 msgid "User preferences storage table" @@ -6597,9 +6588,8 @@ msgid "" msgstr "තම වගු වල දත්ත සහ සුචි කෑෂ්ගත කිරීමට InnoDB භාවිතා කරන මතක බෆරයේ ප්‍රමාණය." #: libraries/engines/innodb.lib.php:143 -#, fuzzy msgid "Buffer Pool" -msgstr "Buffer Pool" +msgstr "අන්තරාච එකතුව" #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" @@ -6646,14 +6636,12 @@ msgid "Write requests" msgstr "ලිවීම සඳහා වූ ඉල්ලීම්" #: libraries/engines/innodb.lib.php:266 -#, fuzzy msgid "Read misses" -msgstr "Read misses" +msgstr "කියවීම් අතෑරුම්" #: libraries/engines/innodb.lib.php:274 -#, fuzzy msgid "Write waits" -msgstr "Write waits" +msgstr "ලිවීම් ප්‍රමාද" #: libraries/engines/innodb.lib.php:282 msgid "Read misses in %" @@ -7249,23 +7237,20 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.class.php:1027 -#, fuzzy #| msgid "Filter databases by name" msgid "filter databases by name" msgstr "දත්තගබඩා නමින් පෙරහන්න" #: libraries/navigation/NavigationTree.class.php:1028 #: libraries/navigation/NavigationTree.class.php:1054 -#, fuzzy #| msgid "Clear series" msgid "Clear Fast Filter" -msgstr "ශ්‍රේණිය ඉවත් කරන්න" +msgstr "පෙරහන ප්‍රත්‍යාරම්භ කරන්න" #: libraries/navigation/NavigationTree.class.php:1053 -#, fuzzy #| msgid "Filter tables by name" msgid "filter items by name" -msgstr "වගු නමින් පෙරහන්න" +msgstr "අයිතම නමින් පෙරහන්න" #. l10n: The word "Node" must not be translated here #: libraries/navigation/NodeFactory.class.php:41 @@ -7284,18 +7269,16 @@ msgid "Columns" msgstr "තීර" #: libraries/navigation/Nodes/Node_Column_Container.class.php:38 -#, fuzzy #| msgid "New" msgctxt "Create new column" msgid "New" -msgstr "නව" +msgstr "නව තීරයක්" #: libraries/navigation/Nodes/Node_Event_Container.class.php:36 -#, fuzzy #| msgid "New" msgctxt "Create new event" msgid "New" -msgstr "නව" +msgstr "නව සිද්ධියක්" #: libraries/navigation/Nodes/Node_Function_Container.class.php:26 #: libraries/plugins/export/ExportSql.class.php:475 @@ -7304,46 +7287,41 @@ msgid "Functions" msgstr "ශ්‍රිත" #: libraries/navigation/Nodes/Node_Function_Container.class.php:36 -#, fuzzy #| msgid "New" msgctxt "Create new function" msgid "New" -msgstr "නව" +msgstr "නව ශ්‍රිතයක්" #: libraries/navigation/Nodes/Node_Index_Container.class.php:38 -#, fuzzy #| msgid "New" msgctxt "Create new index" msgid "New" -msgstr "නව" +msgstr "නව සුචියක්" #: libraries/navigation/Nodes/Node_Procedure_Container.class.php:26 #: libraries/plugins/export/ExportSql.class.php:458 #: libraries/plugins/export/ExportXml.class.php:111 msgid "Procedures" -msgstr "ක්‍රියාපටිපාටිය" +msgstr "ක්‍රියාපටිපාටි" #: libraries/navigation/Nodes/Node_Procedure_Container.class.php:36 #: libraries/rte/rte_footer.lib.php:29 -#, fuzzy #| msgid "New" msgctxt "Create new procedure" msgid "New" -msgstr "නව" +msgstr "නව ක්‍රියාපටිපාටියක්" #: libraries/navigation/Nodes/Node_Table_Container.class.php:40 -#, fuzzy #| msgid "New" msgctxt "Create new table" msgid "New" -msgstr "නව" +msgstr "නව වගුවක්" #: libraries/navigation/Nodes/Node_Trigger_Container.class.php:36 -#, fuzzy #| msgid "New" msgctxt "Create new trigger" msgid "New" -msgstr "නව" +msgstr "නව ප්‍රේරකයක්" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/plugins/export/ExportXml.class.php:125 @@ -7351,11 +7329,10 @@ msgid "Views" msgstr "දසුන්" #: libraries/navigation/Nodes/Node_View_Container.class.php:36 -#, fuzzy #| msgid "New" msgctxt "Create new view" msgid "New" -msgstr "නව" +msgstr "නව දසුනක්" #: libraries/operations.lib.php:75 msgid "Rename database to" @@ -7863,10 +7840,9 @@ msgstr "" "නාමයන් ආරක්ෂා කරයි)" #: libraries/plugins/export/ExportSql.class.php:295 -#, fuzzy #| msgid "Object creation options" msgid "Data creation options" -msgstr "වස්තු නිර්මාණය කිරීමේ විකල්ප" +msgstr "දත්ත සෑදීමේ විකල්ප" #: libraries/plugins/export/ExportSql.class.php:299 #: libraries/plugins/export/ExportSql.class.php:1649 @@ -9257,11 +9233,10 @@ msgid "User has been added." msgstr "භාවිතා කරන්නා එක් කරන ලදි." #: libraries/server_privileges.lib.php:1625 -#, fuzzy #| msgid "New" msgctxt "Create new user" msgid "New" -msgstr "නව" +msgstr "නව භාවිතා කරන්නෙක්" #: libraries/server_privileges.lib.php:1681 #: libraries/server_privileges.lib.php:1847 @@ -11627,10 +11602,9 @@ msgid "Using bookmark \"%s\" as default browse query." msgstr "\"%s\" පොත් සලකුණ පිරික්සීම සඳහා වූ පෙරනිමි SQL විමසුම ලෙස යොදා ගනිමින්." #: sql.php:381 -#, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" -msgstr "%s පොත් සලකුණ සාදන ලදි" +msgstr "පොත් සලකුණ නොසාදන ලදි" #: sql.php:914 msgid "Showing as PHP code" @@ -11658,10 +11632,9 @@ msgid "Label" msgstr "ලේබලය" #: tbl_chart.php:43 -#, fuzzy #| msgid "No data found" msgid "No data to display" -msgstr "දත්ත කිසිවක් හමු නොවිණි" +msgstr "පෙන්වීම සඳහා දත්ත නොමැත" #: tbl_chart.php:132 msgctxt "Chart type" @@ -11694,11 +11667,10 @@ msgid "Pie" msgstr "වට" #: tbl_chart.php:148 -#, fuzzy #| msgid "Time" msgctxt "Chart type" msgid "Timeline" -msgstr "කාලය" +msgstr "කාලරාමු" #: tbl_chart.php:155 msgid "Stacked" @@ -11809,10 +11781,9 @@ msgid "" msgstr "(\"PRIMARY\" නාමය ප්‍රාථමික මූලය සඳහා පමණක් භාවිතා කල යුතුය!)" #: tbl_indexes.php:227 -#, fuzzy #| msgid "Comment" msgid "Comment:" -msgstr "ටීකාව" +msgstr "ටීකාව:" #: tbl_indexes.php:239 msgid "Index type:" @@ -12162,10 +12133,9 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:96 -#, fuzzy #| msgid "log_slow_queries is set to 'OFF'" msgid "slow_query_log is set to 'OFF'" -msgstr "log_slow_queries, 'OFF'(අක්‍රීය) වෙත පිහිටුවා ඇත" +msgstr "slow_query_log, 'OFF'(අක්‍රීය) වෙත පිහිටුවා ඇත" #: libraries/advisory_rules.txt:100 #, fuzzy @@ -12361,10 +12331,9 @@ msgid "Query cache fragmentation" msgstr "විමසුම් කෑෂ් ඛණ්ඩනීකරණය" #: libraries/advisory_rules.txt:184 -#, fuzzy #| msgid "The query cache is not enabled." msgid "The query cache is considerably fragmented." -msgstr "විමසුම් කෑෂ් සක්‍රීය කර නැත." +msgstr "විමසුම් කෑෂය භාගීකරණයට ලක්වී ඇත." #: libraries/advisory_rules.txt:185 msgid "" @@ -12393,12 +12362,12 @@ msgid "Query cache low memory prunes" msgstr "භාවිතා කරන ලද විමසුම් කෑෂ්" #: libraries/advisory_rules.txt:191 -#, 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 "The amount of free memory for query cache." +msgstr "" +"අඩු විමසුම් කෑෂ් ධාරිතාව හේතුවෙන් කෑෂ්ගත කරන ලද විමසුම් කෑෂයෙන් ඉවත් කෙරෙයි." #: libraries/advisory_rules.txt:192 msgid "" @@ -12461,16 +12430,14 @@ msgid "query_cache_limit is set to 1 MiB" msgstr "" #: libraries/advisory_rules.txt:211 -#, fuzzy #| msgid "Allows creating temporary tables." msgid "Percentage of sorts that cause temporary tables" -msgstr "Allows creating temporary tables." +msgstr "තාවකාලික වගු සැදීමට සිදුවූ අනුපිළිවෙල සැකසීම් ප්‍රතිශතයක් ලෙස" #: libraries/advisory_rules.txt:214 libraries/advisory_rules.txt:221 -#, fuzzy #| msgid "Allows creating temporary tables." msgid "Too many sorts are causing temporary tables." -msgstr "Allows creating temporary tables." +msgstr "තාවකාලික වගු සැදීමට සිදුවූ අනුපිළිවෙල සැකසීම් ඉතා විශාල ගණනකි." #: libraries/advisory_rules.txt:215 libraries/advisory_rules.txt:222 msgid "" @@ -12486,10 +12453,9 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:218 -#, fuzzy #| msgid "Allows creating temporary tables." msgid "Rate of sorts that cause temporary tables" -msgstr "Allows creating temporary tables." +msgstr "තාවකාලික වගු සැදීමට සිදුවූ අනුපිළිවෙල සැකසීම් ගණන" #: libraries/advisory_rules.txt:223 #, fuzzy, php-format From ae5316a5bd9cc4882719f90f34c1375988f44be3 Mon Sep 17 00:00:00 2001 From: Andrey Prokopenko Date: Sun, 20 Jan 2013 18:09:41 +0100 Subject: [PATCH 17/85] Translated using Weblate (Ukrainian) Currently translated at 59.0% (1535 of 2602) --- po/uk.po | 417 ++++++++++++++++++++++++++----------------------------- 1 file changed, 197 insertions(+), 220 deletions(-) diff --git a/po/uk.po b/po/uk.po index 729d2470a5..6795923bc4 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-01-18 14:17+0100\n" -"PO-Revision-Date: 2013-01-20 12:52+0200\n" -"Last-Translator: Rostyslav Gaitkulov \n" +"PO-Revision-Date: 2013-01-20 18:09+0200\n" +"Last-Translator: Andrey Prokopenko \n" "Language-Team: Ukrainian " "\n" "Language: uk\n" @@ -89,7 +89,7 @@ msgstr "Вперед" #: browse_foreigners.php:181 browse_foreigners.php:185 #: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" -msgstr "Ім'я ключа" +msgstr "Назва ключа" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 @@ -284,7 +284,7 @@ msgstr "В БД не виявлено таблиць." #: db_export.php:40 libraries/DbSearch.class.php:437 server_export.php:25 msgid "Select All" -msgstr "Відмітити все" +msgstr "Вибрати всі" #: db_export.php:45 libraries/DbSearch.class.php:440 server_export.php:30 msgid "Unselect All" @@ -295,16 +295,16 @@ msgid "The database name is empty!" msgstr "Ім'я бази даних порожнє!" #: db_operations.php:129 -#, fuzzy, php-format +#, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" -msgstr "Базу даних %s перейменовано в %s" +msgstr "Базу даних %1$s було перейменовано в %2$s" #: db_operations.php:133 -#, fuzzy, php-format +#, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" -msgstr "Базу даних %s скопійовано в %s" +msgstr "Базу даних %1$s було скопійовано до %2$s" #: db_operations.php:259 #, php-format @@ -395,7 +395,7 @@ msgstr "Доступ заборонено" #: db_structure.php:86 msgid "No tables found in database" -msgstr "В БД не виявлено таблиць." +msgstr "Немає таблиць у базі даних" #: db_tracking.php:73 msgid "Tracked tables" @@ -699,7 +699,7 @@ msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -"Досягнуто часове обмеження віконання скрипту, якщо Ви бажаєте закінчити " +"Досягнуто часове обмеження виконання скрипту, якщо Ви бажаєте закінчити " "імпорт, необхідно повторно відправити той самий файл." #: import.php:532 @@ -724,10 +724,9 @@ msgid "Back" msgstr "Назад" #: index.php:114 -#, fuzzy #| msgid "General relation features" msgid "General Settings" -msgstr "Загальні можливості" +msgstr "Загальні налаштування" #: index.php:140 libraries/display_change_password.lib.php:46 #: user_password.php:234 @@ -735,26 +734,23 @@ msgid "Change password" msgstr "Змінити пароль" #: index.php:155 -#, fuzzy #| msgid "Server configuration" msgid "Server connection collation" msgstr "Конфігурація сервера" #: index.php:181 msgid "Appearance Settings" -msgstr "" +msgstr "Налаштування вигляду" #: index.php:210 prefs_manage.php:275 -#, fuzzy #| msgid "General relation features" msgid "More settings" -msgstr "Загальні можливості" +msgstr "Додаткові налаштування" #: index.php:227 -#, fuzzy #| msgid "Databases" msgid "Database server" -msgstr "Бази Даних" +msgstr "Сервер бази даних" #: index.php:230 libraries/Menu.class.php:150 #: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653 @@ -764,17 +760,16 @@ msgstr "Сервер" #: index.php:234 msgid "Software" -msgstr "" +msgstr "Програмне забезпечення" #: index.php:238 -#, fuzzy #| msgid "Server version" msgid "Software version" -msgstr "Версія сервера" +msgstr "Версія програмного забезпечення" #: index.php:242 msgid "Protocol version" -msgstr "" +msgstr "Версія протоколу" #: index.php:246 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 @@ -784,24 +779,22 @@ msgid "User" msgstr "Користувач" #: index.php:251 -#, fuzzy #| msgid "Remove database" msgid "Server charset" -msgstr "Видалити базу даних" +msgstr "Кодування символів серверу" #: index.php:263 msgid "Web server" -msgstr "" +msgstr "Веб-сервер" #: index.php:276 -#, fuzzy #| msgid "Database comment: " msgid "Database client version" -msgstr "Коментар бази даних: " +msgstr "Версія клієнту бази даних" #: index.php:280 msgid "PHP extension" -msgstr "" +msgstr "PHP розширення" #: index.php:294 msgid "Show PHP information" @@ -809,7 +802,7 @@ msgstr "Показати інформацію про PHP" #: index.php:317 libraries/engines/bdb.lib.php:25 msgid "Version information" -msgstr "" +msgstr "Відомості про версію" #: index.php:326 libraries/Util.class.php:430 libraries/Util.class.php:516 #: libraries/config/FormDisplay.tpl.php:147 @@ -828,20 +821,18 @@ msgid "Official Homepage" msgstr "Офіційна сторінка phpMyAdmin" #: index.php:349 -#, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Атрибути" #: index.php:356 msgid "Get support" -msgstr "" +msgstr "Отримати підтримку" #: index.php:363 -#, fuzzy #| msgid "No change" msgid "List of changes" -msgstr "Змін немає" +msgstr "Перелік змін" #: index.php:386 msgid "" @@ -861,6 +852,8 @@ msgid "" "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" +"У конфігурації PHP увімкнено mbstring.func_overload. Цей параметр є " +"несумісним з phpMyAdmin і може викликати пошкодження деяких даних!" #: index.php:408 msgid "" @@ -868,6 +861,10 @@ msgid "" "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" +"Pозширення PHP mbstring не знайдено, і схоже на те, що використовуються " +"багатобайтові символи. Без розширення mbstring phpMyAdmin не зможе правильно " +"виконати поділ текстових рядків, і це може призвести до неочікуваних " +"результатів." #: index.php:419 msgid "" @@ -876,12 +873,20 @@ msgid "" "cookie validity configured in phpMyAdmin, because of this, your login will " "expire sooner than configured in phpMyAdmin." msgstr "" +"Параметр PHP " +"[a@http://php.net/manual/en/session.configuration.php#ini.session.gc-" +"maxlifetime@_blank]session.gc_maxlifetime[/a] менший, ніж термін придатності " +"cookie налаштованого в phpMyAdmin, і через це термін дії вашого логіну " +"закінчується раніше, ніж це налаштовано в phpMyAdmin." #: index.php:431 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" +"Параметр збереження куків логін менший терміну дії куків, що налаштований в " +"phpMyAdmin, і через це термін дії вашого логіну закінчується раніше терміну, " +"налаштованого в phpMyAdmin." #: index.php:443 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." @@ -893,6 +898,9 @@ msgid "" "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" +"Каталог [code]config[/code], який використовується сценарій установки, все " +"ще існує в каталозі phpMyAdmin. Якщо phpMyAdmin вже налаштовано, його " +"необхідно видалити." #: index.php:464 #, fuzzy, php-format @@ -912,6 +920,8 @@ msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" +"Версія бібліотеки PHP MySQL %s відрізняється від версії сервера MySQL %s. Це " +"може спричинити непередбачувані наслідки." #: index.php:519 #, php-format @@ -919,16 +929,18 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" +"Сервер, що працює з Suhosin. Щодо можливих проблем звертайтеся до %" +"sdocumentation%s." #: js/messages.php:27 libraries/import.lib.php:118 sql.php:337 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Оператори \"DROP DATABASE\" заборонені." #: js/messages.php:30 -#, fuzzy, php-format +#, php-format #| msgid "Do you really want to " msgid "Do you really want to execute \"%s\"?" -msgstr "Ви насправді хочете " +msgstr "Ви дійсно бажаєте виконати \"%s\"?" #: js/messages.php:31 libraries/mult_submits.inc.php:314 sql.php:459 msgid "You are about to DESTROY a complete database!" @@ -971,17 +983,16 @@ msgid "Edit Index" msgstr "Редагувати Індекс" #: js/messages.php:44 tbl_indexes.php:339 tbl_indexes.php:347 -#, fuzzy, php-format +#, php-format #| msgid "Add %d column(s) to index" msgid "Add %s column(s) to index" -msgstr "Додати %d стовпчик(ів) до індексу" +msgstr "Додати до індексу %s стовпчик(ів)" #. l10n: Default label for the y-Axis of Charts #: js/messages.php:48 tbl_chart.php:217 -#, fuzzy #| msgid "Value" msgid "Y Values" -msgstr "Значення" +msgstr "Значення y" #: js/messages.php:51 msgid "The host name is empty!" @@ -1216,7 +1227,7 @@ msgstr "%d таблиця(таблиць)" #. l10n: Questions is the name of a MySQL Status variable #: js/messages.php:118 msgid "Questions" -msgstr "Questions" +msgstr "Питання" #: js/messages.php:119 server_status.php:136 msgid "Traffic" @@ -1263,7 +1274,7 @@ msgstr "Призупинити монітор" #: js/messages.php:130 msgid "general_log and slow_query_log are enabled." -msgstr "general_log та slow_query_log ввімкнені" +msgstr "general_log та slow_query_log ввімкнені." #: js/messages.php:131 msgid "general_log is enabled." @@ -1370,7 +1381,7 @@ msgstr "Модуль" #: js/messages.php:157 msgid "From slow log" -msgstr "З журналу повільних запитів" +msgstr "З журналу повільних запитів (slow log)" #: js/messages.php:158 msgid "From general log" @@ -1611,12 +1622,12 @@ msgstr "Помилка при обробці запиту" #: js/messages.php:225 #, php-format msgid "Error code: %s" -msgstr "" +msgstr "Код помилки: %s" #: js/messages.php:226 #, php-format msgid "Error text: %s" -msgstr "" +msgstr "Текст помилки: %s" #: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 @@ -1674,22 +1685,19 @@ msgid "Show indexes" msgstr "Показати індекси" #: js/messages.php:246 libraries/mult_submits.inc.php:327 -#, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" -msgstr "Відключити перевірки зовнішніх ключів" +msgstr "Перевірка зовнішніх ключів:" #: js/messages.php:247 libraries/mult_submits.inc.php:331 -#, fuzzy #| msgid "Enabled" msgid "(Enabled)" -msgstr "дозволено" +msgstr "(Увімкнено)" #: js/messages.php:248 libraries/mult_submits.inc.php:331 -#, fuzzy #| msgid "Disabled" msgid "(Disabled)" -msgstr "заблоковано" +msgstr "(Вимкнено)" #: js/messages.php:251 msgid "Searching" @@ -1802,13 +1810,13 @@ msgstr "Наведення курсора над крапкою відобраз #: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." -msgstr "Для збільшення, виділіть ділянку графіку з допомогою миші" +msgstr "Щоб збільшити масштаб, виберіть ділянку діаграми за допомогою миші." #: js/messages.php:295 -#, fuzzy #| msgid "Click reset zoom link to come back to original state." msgid "Click reset zoom button to come back to original state." -msgstr "Натисніть кнопку скидання зума, щоб повернутися до вихідного стану." +msgstr "" +"Натисніть кнопку Скидання масштабу, щоб повернутися до початкового стану." #: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." @@ -1880,7 +1888,7 @@ msgstr "Додати опцію для колонки " #: js/messages.php:334 #, php-format msgid "%d object(s) created" -msgstr "" +msgstr "Створено %d об'єкт(ів)" #: js/messages.php:337 msgid "Press escape to cancel editing" @@ -1908,7 +1916,7 @@ msgstr "Клікніть щоб позначити/зняти позначку" #: js/messages.php:342 msgid "Double-click to copy column name" -msgstr "" +msgstr "Клацніть двічі, щоб скопіювати назву стовпчика" #: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" @@ -1947,20 +1955,19 @@ msgid "Go to link" msgstr "Перейти за посиланням" #: js/messages.php:359 -#, fuzzy #| msgid "Column names" msgid "Copy column name" -msgstr "Назви колонок" +msgstr "Копіювати назву стовпчик(ів)" #: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" +"Клацніть правою кнопкою назву стовпчика, щоб скопіювати його в буфер обміну." #: js/messages.php:361 -#, fuzzy #| msgid "Showing rows" msgid "Show data row(s)" -msgstr "Показано записи " +msgstr "Показати ряд(и) даних" #: js/messages.php:364 msgid "Generate password" @@ -1979,22 +1986,20 @@ msgid "More" msgstr "Більше" #: js/messages.php:372 -#, fuzzy #| msgid "Show all" msgid "Show Panel" -msgstr "Показати все" +msgstr "Показати панель" #: js/messages.php:373 -#, fuzzy #| msgid "Hide indexes" msgid "Hide Panel" -msgstr "Сховати індекси" +msgstr "Приховати панель" #: js/messages.php:376 -#, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." -msgstr "Вказаного користувача не знайдено в таблиці прав." +msgstr "" +"Запитану сторінку не знайдено в історії, можливо минув її термін зберігання." #: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format @@ -2273,53 +2278,54 @@ msgstr "Секунда" #: libraries/Advisor.class.php:77 #, php-format msgid "PHP threw following error: %s" -msgstr "" +msgstr "PHP вивів наступне повідомлення про помилку: %s" #: libraries/Advisor.class.php:104 #, php-format msgid "Failed evaluating precondition for rule '%s'" -msgstr "" +msgstr "Не вдалося виконати визначення передумови для правила '%s'" #: libraries/Advisor.class.php:121 #, php-format msgid "Failed calculating value for rule '%s'" -msgstr "" +msgstr "Не вдалося виконати обчислення значення для правила '%s'" #: libraries/Advisor.class.php:140 #, php-format msgid "Failed running test for rule '%s'" -msgstr "" +msgstr "Не вдалося виконати тест для правила \"%s\"" #: libraries/Advisor.class.php:222 -#, fuzzy, php-format +#, php-format #| msgid "" #| "Failed formatting string for rule '%s'. PHP threw following error: %s" msgid "Failed formatting string for rule '%s'." -msgstr "" -"Помилка форматування рядка по '%s' правилу. PHP припинив роботу з наступною " -"помилкою: %s" +msgstr "Не вдалося виконати форматування рядка для правила '%s'." #: libraries/Advisor.class.php:378 #, php-format msgid "" "Invalid rule declaration on line %1$s, expected line %2$s of previous rule" msgstr "" +"Неприпустиме правило декларації на рядку %1$s, очікувався рядок %2$s " +"попереднього правила" #: libraries/Advisor.class.php:395 -#, fuzzy, php-format +#, php-format #| msgid "Invalid server index: %s" msgid "Invalid rule declaration on line %s" -msgstr "Не вірний індекс сервера: %s" +msgstr "Неприпустиме правило декларації в рядку %s" #: libraries/Advisor.class.php:403 #, php-format msgid "Unexpected characters on line %s" -msgstr "" +msgstr "Неочікувані символи в рядку %s" #: libraries/Advisor.class.php:417 #, php-format msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" +"Неочікуваний символ в рядку %1$s. Очікувався tab, але не знайдено \"%2$s\"" #: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" @@ -2457,14 +2463,14 @@ msgstr[1] "Всього: %s співпадань" msgstr[2] "Всього: %s співпадань" #: libraries/DbSearch.class.php:330 -#, fuzzy, php-format +#, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" -msgstr[0] "%s співпадіння у таблиці %s" -msgstr[1] "%s співпадіння у таблиці %s" -msgstr[2] "%s співпадінь у таблиці %s" +msgstr[0] "%1$s співпадіння у %2$s" +msgstr[1] "%1$s співпадіння у %2$s" +msgstr[2] "%1$s співпадінь у %2$s" #: libraries/DbSearch.class.php:345 libraries/Menu.class.php:250 #: libraries/Util.class.php:3278 libraries/Util.class.php:3486 @@ -2514,11 +2520,11 @@ msgstr "Всередині стовпчика:" #: libraries/DisplayResults.class.php:698 msgid "Save edited data" -msgstr "" +msgstr "Зберегти відредаговані дані" #: libraries/DisplayResults.class.php:704 msgid "Restore column order" -msgstr "" +msgstr "Відновити порядок стовпців" #: libraries/DisplayResults.class.php:775 libraries/Util.class.php:2553 #: libraries/Util.class.php:2557 @@ -2547,19 +2553,17 @@ msgstr "Кінець" #: libraries/DisplayResults.class.php:904 tbl_chart.php:222 msgid "Start row" -msgstr "" +msgstr "Початковий рядок" #: libraries/DisplayResults.class.php:908 tbl_chart.php:226 -#, fuzzy #| msgid "Number of rows:" msgid "Number of rows" -msgstr "Число рядків:" +msgstr "Кількість рядків" #: libraries/DisplayResults.class.php:917 -#, fuzzy #| msgid "More" msgid "Mode" -msgstr "Більше" +msgstr "Режим" #: libraries/DisplayResults.class.php:919 msgid "horizontal" @@ -2574,14 +2578,14 @@ msgid "vertical" msgstr "вертикальному" #: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format +#, php-format #| msgid "Execute every" msgid "Headers every %s rows" -msgstr "Виконати кожні" +msgstr "Заголовки кожні %s рядків" #: libraries/DisplayResults.class.php:1230 msgid "Sort by key" -msgstr "" +msgstr "Сортувати за ключем" #: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:748 #: libraries/import.lib.php:1196 libraries/import.lib.php:1222 @@ -2609,18 +2613,16 @@ msgstr "" #: libraries/plugins/import/ImportXml.class.php:57 #: libraries/rte/rte_routines.lib.php:935 libraries/structure.lib.php:1723 msgid "Options" -msgstr "" +msgstr "Параметри" #: libraries/DisplayResults.class.php:1584 #: libraries/DisplayResults.class.php:1690 -#, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Часткові тексти" #: libraries/DisplayResults.class.php:1585 #: libraries/DisplayResults.class.php:1694 -#, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Повні тексти" @@ -2637,11 +2639,11 @@ msgstr "Схема зв'язків" #: libraries/DisplayResults.class.php:1612 msgid "Show binary contents" -msgstr "" +msgstr "Показати двійковий вміст" #: libraries/DisplayResults.class.php:1617 msgid "Show BLOB contents" -msgstr "" +msgstr "Показати вміст BLOB-ОБ'ЄКТІВ" #: libraries/DisplayResults.class.php:1622 #: libraries/config/messages.inc.php:57 @@ -2674,7 +2676,7 @@ msgstr "Вбити" #: libraries/DisplayResults.class.php:4493 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" -msgstr "" +msgstr "Може бути приблизним. Дивіться [doc@faq3-11]FAQ 3.11 [/doc]" #: libraries/DisplayResults.class.php:4889 msgid "in query" @@ -2747,7 +2749,7 @@ msgstr "Версія для друку" #: libraries/DisplayResults.class.php:5220 msgid "Print view (with full texts)" -msgstr "" +msgstr "Подання дял друку (з повними текстами)" #: libraries/DisplayResults.class.php:5291 tbl_chart.php:129 #, fuzzy @@ -2760,10 +2762,9 @@ msgid "Visualize GIS data" msgstr "" #: libraries/DisplayResults.class.php:5348 view_create.php:152 -#, fuzzy #| msgid "Create User" msgid "Create view" -msgstr "Створити користувача" +msgstr "Створити подання" #: libraries/DisplayResults.class.php:5541 msgid "Link not found" @@ -2824,11 +2825,11 @@ msgstr "Неможливо прочитати (перемістити) зава #: libraries/Footer.class.php:133 libraries/Footer.class.php:137 #: libraries/Footer.class.php:140 msgid "Open new phpMyAdmin window" -msgstr "" +msgstr "Відкрити нове вікно phpMyAdmin" #: libraries/Header.class.php:386 msgid "Click on the bar to scroll to top of page" -msgstr "" +msgstr "Натисніть на панелі, щоб прокрутити до початку сторінки" #: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:267 @@ -2837,10 +2838,9 @@ msgstr "З цього моменту Cookies повинні бути дозво #: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:171 -#, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" -msgstr "З цього моменту Cookies повинні бути дозволені." +msgstr "З цього моменту Javascript має бути увімкнений" #: libraries/Index.class.php:531 tbl_relation.php:487 msgid "No index defined!" @@ -2951,7 +2951,7 @@ msgstr "Операцій" #: libraries/Menu.class.php:296 libraries/Menu.class.php:413 #: libraries/relation.lib.php:238 msgid "Tracking" -msgstr "" +msgstr "Відстеження" #: libraries/Menu.class.php:305 libraries/Menu.class.php:407 #: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26 @@ -2962,7 +2962,7 @@ msgstr "" #: libraries/plugins/export/ExportXml.class.php:121 #: libraries/rte/rte_words.lib.php:41 msgid "Triggers" -msgstr "" +msgstr "Тригери" #: libraries/Menu.class.php:319 libraries/Menu.class.php:320 msgid "Table seems to be empty!" @@ -2985,14 +2985,14 @@ msgstr "Привілеї" #: libraries/Menu.class.php:392 libraries/rte/rte_words.lib.php:29 msgid "Routines" -msgstr "" +msgstr "Процедури" #: libraries/Menu.class.php:400 #: libraries/navigation/Nodes/Node_Event_Container.class.php:26 #: libraries/plugins/export/ExportSql.class.php:810 #: libraries/rte/rte_words.lib.php:53 msgid "Events" -msgstr "" +msgstr "Події" #: libraries/Menu.class.php:419 libraries/relation.lib.php:205 msgid "Designer" @@ -3084,11 +3084,11 @@ msgstr "SQL-запит" #: libraries/ServerStatusData.class.php:184 msgid "Handler" -msgstr "" +msgstr "Обробник" #: libraries/ServerStatusData.class.php:185 msgid "Query cache" -msgstr "" +msgstr "Кеш запитів" #: libraries/ServerStatusData.class.php:186 msgid "Threads" @@ -3096,7 +3096,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:188 msgid "Temporary data" -msgstr "" +msgstr "Тимчасові дані" #: libraries/ServerStatusData.class.php:189 msgid "Delayed inserts" @@ -3112,7 +3112,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:193 msgid "Sorting" -msgstr "" +msgstr "Сортування" #: libraries/ServerStatusData.class.php:194 #: libraries/build_html_for_db.lib.php:26 @@ -3124,7 +3124,7 @@ msgstr "Таблиць" #: libraries/ServerStatusData.class.php:195 msgid "Transaction coordinator" -msgstr "" +msgstr "Координатор транзакцій" #: libraries/ServerStatusData.class.php:196 server_binlog.php:107 msgid "Files" @@ -3132,7 +3132,7 @@ msgstr "Файли" #: libraries/ServerStatusData.class.php:207 msgid "Flush (close) all tables" -msgstr "" +msgstr "Вичистити (закрити) всі таблиці" #: libraries/ServerStatusData.class.php:209 msgid "Show open tables" @@ -3169,11 +3169,11 @@ msgstr "" #: libraries/ServerStatusData.class.php:353 msgid "Monitor" -msgstr "" +msgstr "Монітор" #: libraries/ServerStatusData.class.php:357 msgid "Advisor" -msgstr "" +msgstr "Радник" #: libraries/StorageEngine.class.php:216 msgid "" @@ -3207,13 +3207,13 @@ msgstr "невідомий статус таблиці: " #: libraries/Table.class.php:728 #, php-format msgid "Source database `%s` was not found!" -msgstr "" +msgstr "Вихідна база даних \"%s\" не знайдена!" #: libraries/Table.class.php:736 -#, fuzzy, php-format +#, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" -msgstr "Тема %s не знайдена!" +msgstr "Цільова база даних \"%s\" не знайдена!" #: libraries/Table.class.php:1164 msgid "Invalid database" @@ -3229,10 +3229,10 @@ msgid "Error renaming table %1$s to %2$s" msgstr "Помилка зміни назви таблиці %1$s на %2$s" #: libraries/Table.class.php:1229 -#, fuzzy, php-format +#, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." -msgstr "Таблицю %s було перейменовано в %s" +msgstr "Таблицю %1$s було перейменовано в %2$s." #: libraries/Table.class.php:1373 msgid "Could not save table UI preferences" @@ -3267,7 +3267,7 @@ msgstr "Функція" #: pmd_general.php:678 pmd_general.php:691 pmd_general.php:754 #: pmd_general.php:808 msgid "Operator" -msgstr "" +msgstr "Оператор" #: libraries/TableSearch.class.php:187 libraries/TableSearch.class.php:1186 #: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:124 @@ -3290,10 +3290,9 @@ msgid "Edit/Insert" msgstr "Вставити" #: libraries/TableSearch.class.php:755 -#, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" -msgstr "Вибрати поля (щонайменше одне):" +msgstr "Виберіть стовпці (принаймні один):" #: libraries/TableSearch.class.php:775 msgid "Add search conditions (body of the \"where\" clause):" @@ -3321,10 +3320,9 @@ msgid "Browse foreign values" msgstr "" #: libraries/TableSearch.class.php:971 -#, fuzzy #| msgid "Hide search criteria" msgid "Additional search criteria" -msgstr "Сховати критерії пошуку" +msgstr "Додаткові критерії пошуку" #: libraries/TableSearch.class.php:1109 #, fuzzy @@ -3342,13 +3340,12 @@ msgstr "" #: libraries/TableSearch.class.php:1170 msgid "How to use" -msgstr "" +msgstr "Як використовувати" #: libraries/TableSearch.class.php:1175 -#, fuzzy #| msgid "Reset" msgid "Reset zoom" -msgstr "Перевстановити" +msgstr "Скидання масштабу" #: libraries/Theme.class.php:170 #, php-format @@ -3386,18 +3383,24 @@ msgstr "Тема" msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" +"Однобайтове ціле число, діапазон зі знаком - від -128 до 127, діапазон без " +"знаку - від 0 до 255" #: libraries/Types.class.php:298 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" msgstr "" +"Двобайтове ціле число, діапазон зі знаком від -32768 до 32767, діапазон без " +"знаку від 0 до 65535" #: libraries/Types.class.php:300 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" msgstr "" +"Трибайтове ціле число, діапазон зі знаком від -8,388,608 до 8,388,607, " +"діапазон без знаку від 0 до 16,777,215" #: libraries/Types.class.php:302 msgid "" @@ -3453,27 +3456,29 @@ msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "" #: libraries/Types.class.php:320 libraries/Types.class.php:722 -#, fuzzy, php-format +#, php-format #| msgid "General relation features" msgid "A date, supported range is %1$s to %2$s" -msgstr "Загальні можливості" +msgstr "Дата, підтримується інтервал від %1$s до %2$s" #: libraries/Types.class.php:322 libraries/Types.class.php:724 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" -msgstr "" +msgstr "Комбінація дати і часу, підтримуваний інтервал від %1$s до %2$s" #: libraries/Types.class.php:324 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" msgstr "" +"Мітка часу, інтервал від 1970-01-01: 00: 00: 01 UTC до 2038-01-09 03: 14: 07 " +"UTC у кількості секунд з початку епохи (1970-01-01 00: 00: 00 UTC)" #: libraries/Types.class.php:326 libraries/Types.class.php:728 -#, fuzzy, php-format +#, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "A time, range is %1$s to %2$s" -msgstr "Помилка зміни назви таблиці %1$s на %2$s" +msgstr "Час, інтервал від %1$s до %2$s" #: libraries/Types.class.php:328 msgid "" @@ -3493,6 +3498,8 @@ msgid "" "A variable-length (%s) string, the effective maximum length is subject to " "the maximum row size" msgstr "" +"Текстовий рядок змінної довжини (%s), максимальна ефективна довжина " +"відповідає максимальній довжині рядка таблиці" #: libraries/Types.class.php:334 msgid "" @@ -3844,7 +3851,7 @@ msgstr "Перевірити права" #: libraries/common.inc.php:577 msgid "Failed to read configuration file" -msgstr "Неможливо прочитати конфігураційний файл." +msgstr "Не вдалося прочитати файл конфігурації" #: libraries/common.inc.php:579 msgid "" @@ -4463,7 +4470,7 @@ msgstr "Ключ підпису" #: libraries/plugins/export/ExportOdt.class.php:480 #: libraries/tbl_columns_definition_form.inc.php:168 msgid "MIME type" -msgstr "MIME type" +msgstr "Тип MIME" #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 #: libraries/config/messages.inc.php:134 tbl_relation.php:359 @@ -4490,7 +4497,7 @@ msgstr "Запам'ятати шаблон імені файлу" #: libraries/config/messages.inc.php:117 libraries/operations.lib.php:195 #: libraries/operations.lib.php:684 libraries/operations.lib.php:1028 msgid "Add AUTO_INCREMENT value" -msgstr "Додати AUTO_INCREMENT значення" +msgstr "Додати значення AUTO_INCREMENT" #: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" @@ -5700,7 +5707,7 @@ msgstr "" #: libraries/config/messages.inc.php:407 msgid "Show only listed databases" -msgstr "" +msgstr "Показати лише перелічені бази даних" #: libraries/config/messages.inc.php:408 libraries/config/messages.inc.php:449 msgid "Leave empty if not using config auth" @@ -5747,10 +5754,9 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:417 -#, fuzzy #| msgid "Analyze table" msgid "Recently used table" -msgstr "Аналіз таблиці" +msgstr "Нещодавно використані таблиці" #: libraries/config/messages.inc.php:418 msgid "" @@ -5768,7 +5774,7 @@ msgstr "" #: libraries/config/messages.inc.php:421 msgid "SHOW DATABASES command" -msgstr "" +msgstr "Команда SHOW DATABASES" #: libraries/config/messages.inc.php:422 msgid "" @@ -5792,7 +5798,7 @@ msgstr "" #: libraries/config/messages.inc.php:426 msgid "Server socket" -msgstr "" +msgstr "Сокет серверу" #: libraries/config/messages.inc.php:427 msgid "Enable SSL for connection to MySQL server" @@ -5800,7 +5806,7 @@ msgstr "Активувати SSL для з’єднання з MySQL серве #: libraries/config/messages.inc.php:428 msgid "Use SSL" -msgstr "" +msgstr "Використовувати SSL" #: libraries/config/messages.inc.php:429 msgid "" @@ -5830,7 +5836,7 @@ msgstr "" #: libraries/config/messages.inc.php:434 msgid "UI preferences table" -msgstr "" +msgstr "Таблиця налаштувань користувацького інтерфейсу" #: libraries/config/messages.inc.php:435 msgid "" @@ -5840,7 +5846,7 @@ msgstr "" #: libraries/config/messages.inc.php:436 msgid "Add DROP DATABASE" -msgstr "" +msgstr "Додати DROP DATABASE" #: libraries/config/messages.inc.php:437 msgid "" @@ -5850,7 +5856,7 @@ msgstr "" #: libraries/config/messages.inc.php:438 msgid "Add DROP TABLE" -msgstr "" +msgstr "Додати DROP TABLE" #: libraries/config/messages.inc.php:439 msgid "" @@ -5860,7 +5866,7 @@ msgstr "" #: libraries/config/messages.inc.php:440 msgid "Add DROP VIEW" -msgstr "" +msgstr "Додати DROP VIEW" #: libraries/config/messages.inc.php:441 msgid "Defines the list of statements the auto-creation uses for new versions." @@ -5878,7 +5884,7 @@ msgstr "" #: libraries/config/messages.inc.php:444 msgid "SQL query tracking table" -msgstr "" +msgstr "Таблиця відстежування SQL запитів" #: libraries/config/messages.inc.php:445 msgid "" @@ -5888,7 +5894,7 @@ msgstr "" #: libraries/config/messages.inc.php:446 msgid "Automatically create versions" -msgstr "" +msgstr "Автоматично створювати версії" #: libraries/config/messages.inc.php:447 msgid "" @@ -5898,7 +5904,7 @@ msgstr "" #: libraries/config/messages.inc.php:448 msgid "User preferences storage table" -msgstr "" +msgstr "Таблиця збереження налаштувань користувача" #: libraries/config/messages.inc.php:450 msgid "User for config auth" @@ -5972,10 +5978,9 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:465 -#, fuzzy #| msgid "Default display direction" msgid "Show display direction" -msgstr "Напрямок відображення по змовчуванню" +msgstr "Показати напрямком відображення" #: libraries/config/messages.inc.php:466 msgid "" @@ -6000,10 +6005,9 @@ msgid "Whether to show hint or not" msgstr "" #: libraries/config/messages.inc.php:471 -#, fuzzy #| msgid "Show grid" msgid "Show hint" -msgstr "Показати сітку" +msgstr "Відображати підказки" #: libraries/config/messages.inc.php:472 msgid "" @@ -6365,10 +6369,9 @@ msgstr "" #: libraries/display_create_database.lib.php:21 #: libraries/display_create_database.lib.php:39 -#, fuzzy #| msgid "Create new database" msgid "Create database" -msgstr "Створити нову БД" +msgstr "Створити базу даних" #: libraries/display_create_database.lib.php:33 msgid "Create" @@ -6532,10 +6535,9 @@ msgid "Format:" msgstr "Формат:" #: libraries/display_export.lib.php:418 -#, fuzzy #| msgid "Transformation options" msgid "Format-specific options:" -msgstr "Опції перетворення" +msgstr "Параметри форматування:" #: libraries/display_export.lib.php:420 msgid "" @@ -6617,19 +6619,19 @@ msgstr "" #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" -msgstr "Не можу зареєструватися на MySQL сервері" +msgstr "Імпортування до поточного сервера" #: libraries/display_import.lib.php:192 -#, fuzzy, php-format +#, php-format #| msgid "No databases" msgid "Importing into the database \"%s\"" -msgstr "БД відсутні" +msgstr "Імпортування до бази даних \"%s\"" #: libraries/display_import.lib.php:194 -#, fuzzy, php-format +#, php-format #| msgid "No databases" msgid "Importing into the table \"%s\"" -msgstr "БД відсутні" +msgstr "Імпортування до таблиці \"%s\"" #: libraries/display_import.lib.php:200 msgid "File to Import:" @@ -7139,10 +7141,9 @@ msgid "Copy table with prefix" msgstr "Копіювати таблицю з префіксом" #: libraries/mult_submits.inc.php:280 -#, fuzzy #| msgid "Fr" msgid "From" -msgstr "Пт" +msgstr "Від" #: libraries/mult_submits.inc.php:283 msgid "To" @@ -7189,11 +7190,11 @@ msgstr "Китайське Традиційне" #: libraries/mysql_charsets.lib.php:261 libraries/mysql_charsets.lib.php:447 msgid "case-insensitive" -msgstr "case-insensitive" +msgstr "нечутливий до регістру" #: libraries/mysql_charsets.lib.php:264 libraries/mysql_charsets.lib.php:449 msgid "case-sensitive" -msgstr "case-sensitive" +msgstr "чутливий до регістру" #: libraries/mysql_charsets.lib.php:267 msgid "Croatian" @@ -7666,10 +7667,9 @@ msgid "Check referential integrity:" msgstr "Перевір цілісність даних на рівні посилань:" #: libraries/plugin_interface.lib.php:503 -#, fuzzy #| msgid "This format has no options" msgid "This format has no options" -msgstr "Цей формат не має опцій" +msgstr "Цей формат не має параметрів" #: libraries/plugins/auth/AuthenticationConfig.class.php:73 msgid "Cannot connect: invalid settings." @@ -7784,10 +7784,9 @@ msgstr "Авторизуємося…" #: libraries/plugins/export/ExportCsv.class.php:93 #: libraries/plugins/import/ImportCsv.class.php:82 -#, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" -msgstr "Рядки розділено" +msgstr "Стовпці розділені з:" #: libraries/plugins/export/ExportCsv.class.php:97 #: libraries/plugins/import/ImportCsv.class.php:88 @@ -7817,10 +7816,9 @@ msgstr "Рядки розділено" #: libraries/plugins/export/ExportOds.class.php:71 #: libraries/plugins/export/ExportOdt.class.php:132 #: libraries/plugins/export/ExportTexytext.class.php:89 -#, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with:" -msgstr "Замінити NULL на" +msgstr "Замінити значення NULL на:" #: libraries/plugins/export/ExportCsv.class.php:114 #: libraries/plugins/export/ExportExcel.class.php:63 @@ -7836,10 +7834,9 @@ msgstr "" #: libraries/plugins/export/ExportOdt.class.php:123 #: libraries/plugins/export/ExportTexytext.class.php:80 #: libraries/plugins/export/ExportXml.class.php:133 -#, fuzzy #| msgid "Database export options" msgid "Data dump options" -msgstr "Налаштування експорту бази даних" +msgstr "Параметри дампу даних" #: libraries/plugins/export/ExportHtmlword.class.php:203 #: libraries/plugins/export/ExportOdt.class.php:258 @@ -7899,17 +7896,15 @@ msgstr "Структура таблиці @TABLE@" #: libraries/plugins/export/ExportLatex.class.php:116 #: libraries/plugins/export/ExportOdt.class.php:97 #: libraries/plugins/export/ExportSql.class.php:213 -#, fuzzy #| msgid "Transformation options" msgid "Object creation options" -msgstr "Опції перетворення" +msgstr "Параметри створення об'єкта" #: libraries/plugins/export/ExportLatex.class.php:126 #: libraries/plugins/export/ExportLatex.class.php:171 -#, fuzzy #| msgid "Table of contents" msgid "Table caption (continued)" -msgstr "Зміст" +msgstr "Заголовок таблиці (продовження)" #: libraries/plugins/export/ExportLatex.class.php:137 #: libraries/plugins/export/ExportOdt.class.php:103 @@ -7919,18 +7914,16 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:142 #: libraries/plugins/export/ExportOdt.class.php:108 -#, fuzzy #| msgid "Displaying Column Comments" msgid "Display comments" -msgstr "Показувати коментарі стовпців" +msgstr "Відображення коментарів" #: libraries/plugins/export/ExportLatex.class.php:147 #: libraries/plugins/export/ExportOdt.class.php:113 #: libraries/plugins/export/ExportSql.class.php:120 -#, fuzzy #| msgid "Available MIME types" msgid "Display MIME types" -msgstr "Доступні MIME-types" +msgstr "Відображати Типи MIME" #: libraries/plugins/export/ExportLatex.class.php:218 #: libraries/plugins/export/ExportSql.class.php:601 @@ -7981,10 +7974,9 @@ msgid "(Generates a report containing the data of a single table)" msgstr "" #: libraries/plugins/export/ExportPdf.class.php:102 -#, fuzzy #| msgid "Import files" msgid "Report title:" -msgstr "Імпорт файлів" +msgstr "Заголовок звіту:" #: libraries/plugins/export/ExportSql.class.php:90 msgid "" @@ -8010,16 +8002,15 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:184 #: libraries/plugins/export/ExportSql.class.php:241 #: libraries/plugins/export/ExportSql.class.php:249 -#, fuzzy, php-format +#, php-format #| msgid "Statements" msgid "Add %s statement" -msgstr "Параметр" +msgstr "Додати оператор %s" #: libraries/plugins/export/ExportSql.class.php:220 -#, fuzzy #| msgid "Statements" msgid "Add statements:" -msgstr "Параметр" +msgstr "Додати оператори:" #: libraries/plugins/export/ExportSql.class.php:279 msgid "" @@ -8114,10 +8105,9 @@ msgid "RELATIONS FOR TABLE" msgstr "" #: libraries/plugins/export/ExportSql.class.php:1566 -#, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" -msgstr "Дозволити читання даних." +msgstr "Помилка читання даних:" #: libraries/plugins/export/ExportXml.class.php:102 msgid "Object creation options (all are recommended)" @@ -8142,10 +8132,9 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.class.php:127 -#, fuzzy #| msgid "Column names" msgid "Column names: " -msgstr "Назви колонок" +msgstr "Назви стовпців: " #: libraries/plugins/import/ImportCsv.class.php:177 #: libraries/plugins/import/ImportCsv.class.php:192 @@ -8328,8 +8317,8 @@ msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." msgstr "" -"Відображає clickable thumbnail; опції: ширина, висота у пікселах (зберігає " -"початкові пропорції)" +"Відображає клікабельний ескіз. Параметрами є максимальна ширина і висота в " +"пікселях. Оригінальні пропорції зберігаються." #: libraries/plugins/transformations/abstract/LongToIPv4TransformationsPlugin.class.php:31 msgid "" @@ -8453,7 +8442,7 @@ msgstr "" #: libraries/relation.lib.php:265 msgid "Create a pma user and give access to these tables." -msgstr "Створити phpMyAdmin користувача та дати йому доступ до цих таблиць" +msgstr "Створити користувача phpMyAdmin та дати йому доступ до цих таблиць." #: libraries/relation.lib.php:270 msgid "" @@ -8653,7 +8642,6 @@ msgid "Start" msgstr "Старт" #: libraries/rte/rte_events.lib.php:505 -#, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" @@ -8789,9 +8777,8 @@ msgid "Security type" msgstr "Тип безпеки" #: libraries/rte/rte_routines.lib.php:1017 -#, fuzzy msgid "SQL data access" -msgstr "доступ SQL даних" +msgstr "Доступ до даних SQL" #: libraries/rte/rte_routines.lib.php:1086 msgid "You must provide a routine name" @@ -8867,7 +8854,6 @@ msgid "Trigger name" msgstr "Назва тригера" #: libraries/rte/rte_triggers.lib.php:373 -#, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" @@ -9127,8 +9113,9 @@ msgstr "ввімкнути чорновик (scratchboard)" #. l10n: Text direction for language, use either "ltr" or "rtl" #: libraries/select_lang.lib.php:499 +#, fuzzy msgid "ltr" -msgstr "ltr" +msgstr "зліва направо" #: libraries/select_lang.lib.php:517 libraries/select_lang.lib.php:526 #: libraries/select_lang.lib.php:535 @@ -9430,10 +9417,9 @@ msgid "Grant" msgstr "Grant" #: libraries/server_privileges.lib.php:1617 -#, fuzzy #| msgid "The row has been deleted" msgid "User has been added." -msgstr "Рядок видалено" +msgstr "Користувача було додано." #: libraries/server_privileges.lib.php:1625 #, fuzzy @@ -9461,10 +9447,9 @@ msgid "wildcard" msgstr "шаблон" #: libraries/server_privileges.lib.php:1751 server_privileges.php:168 -#, fuzzy #| msgid "No user(s) found." msgid "No user found." -msgstr "Не знайдено користувача." +msgstr "Користувача не знайдено." #: libraries/server_privileges.lib.php:1777 #: libraries/server_privileges.lib.php:2853 @@ -9558,7 +9543,6 @@ msgid "Privileges for %s" msgstr "Привілеї" #: libraries/server_privileges.lib.php:2907 -#, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Огляд користувачів" @@ -9631,9 +9615,8 @@ msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" msgstr "" -"There seems to be an error in your SQL query. Повідомлення MySQL сервера про " -"помилку подане нижче (якщо є таке) також може допомогти Вам у визначенні " -"проблеми." +"Схоже на помилку у SQL запиті. У визначенні проблеми може допомогти " +"повідомлення про помилку сервера MySQL, що наведено нижче (якщо таке є)" #: libraries/sqlparser.lib.php:171 msgid "" @@ -9797,10 +9780,9 @@ msgstr "Запропонувати структуру таблиці" #: libraries/structure.lib.php:1541 #: libraries/tbl_columns_definition_form.inc.php:760 -#, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." -msgstr "Необхідно вибрати принаймі один Стовпчик для показу" +msgstr "Необхідно додати принаймні один стовпчик." #: libraries/structure.lib.php:1552 #, fuzzy @@ -9982,7 +9964,6 @@ msgid "Get more editing space" msgstr "" #: libraries/tbl_columns_definition_form.inc.php:429 -#, fuzzy #| msgid "None" msgctxt "for default" msgid "None" @@ -10942,26 +10923,23 @@ msgid "Filters" msgstr "" #: server_status_variables.php:82 server_variables.php:158 -#, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" -msgstr "Не змінювати пароль" +msgstr "Містить слова:" #: server_status_variables.php:89 -#, fuzzy #| msgid "Show tables" msgid "Show only alert values" -msgstr "Показати таблиці" +msgstr "Показати тільки оповіщення значень" #: server_status_variables.php:94 msgid "Filter by category…" msgstr "" #: server_status_variables.php:114 -#, fuzzy #| msgid "Show tables" msgid "Show unformatted values" -msgstr "Показати таблиці" +msgstr "Показати неформатовані значення" #: server_status_variables.php:133 #, fuzzy @@ -11865,7 +11843,7 @@ msgstr "Перевірити SQL" #: sql.php:1086 msgid "SQL result" -msgstr "SQL result" +msgstr "Результат SQL" #: sql.php:1093 msgid "Generated by" @@ -13270,10 +13248,9 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:399 -#, fuzzy #| msgid "Connections" msgid "Percentage of aborted connections" -msgstr "З'єднань" +msgstr "Відсоток перерваних підключень" #: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." From bad1163dd4f26cefb63cc252b6c58db919590a5a Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sun, 20 Jan 2013 13:11:07 -0500 Subject: [PATCH 18/85] 3.5.6-rc1 --- Documentation.html | 4 ++-- README | 4 ++-- libraries/Config.class.php | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Documentation.html b/Documentation.html index ab10c8f072..aae4493a70 100644 --- a/Documentation.html +++ b/Documentation.html @@ -9,7 +9,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78 - phpMyAdmin 3.5.6-dev - Documentation + phpMyAdmin 3.5.6-rc1 - Documentation @@ -17,7 +17,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78 diff --git a/README b/README index 3dc6841e6a..2f63cf2f21 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ phpMyAdmin - Readme =================== -Version 3.5.6-dev +Version 3.5.6-rc1 A set of PHP-scripts to manage MySQL over the web. @@ -13,7 +13,7 @@ Copyright Copyright (C) 1998-2000 Tobias Ratschiller -Copyright (C) 2001-2012 +Copyright (C) 2001-2013 Marc Delisle Olivier Müller Robin Johnson diff --git a/libraries/Config.class.php b/libraries/Config.class.php index 5ba4343058..ae7e23e128 100644 --- a/libraries/Config.class.php +++ b/libraries/Config.class.php @@ -98,7 +98,7 @@ class PMA_Config */ function checkSystem() { - $this->set('PMA_VERSION', '3.5.6-dev'); + $this->set('PMA_VERSION', '3.5.6-rc1'); /** * @deprecated */ From 47660fd539edb4d952a67dfcbc6a9ce57b75ed6e Mon Sep 17 00:00:00 2001 From: Yogendra Singh Shekhawat Date: Sun, 20 Jan 2013 19:01:44 +0100 Subject: [PATCH 19/85] Translated using Weblate (Hindi) Currently translated at 56.8% (1454 of 2562) --- po/hi.po | 73 +++++++++++++++++++++++++++----------------------------- 1 file changed, 35 insertions(+), 38 deletions(-) diff --git a/po/hi.po b/po/hi.po index e08af1a2f7..12d66fe517 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-10-16 14:37+0200\n" -"PO-Revision-Date: 2013-01-19 14:37+0200\n" +"PO-Revision-Date: 2013-01-20 19:01+0200\n" "Last-Translator: Yogendra Singh Shekhawat \n" "Language-Team: Hindi \n" "Language: hi\n" @@ -1064,15 +1064,15 @@ msgstr "\"DROP DATABASE\" बयान अक्षम हैं." #: js/messages.php:30 libraries/mult_submits.inc.php:280 sql.php:350 msgid "Do you really want to " -msgstr "क्या आप सचमुच चाहते है की" +msgstr "क्या आप सचमुच चाहते है कि" #: js/messages.php:31 libraries/mult_submits.inc.php:280 sql.php:335 msgid "You are about to DESTROY a complete database!" -msgstr "आप एक पूरा डेटाबेस नष्ट कर रहे हैं!" +msgstr "आप एक पूरा डॅटाबेस मिटाने जा रहे हैं!" #: js/messages.php:32 msgid "You are about to DESTROY a complete table!" -msgstr "आप एक पूराटेबल नष्ट कर रहे हैं!" +msgstr "आप एक पूरी डॅटा टेबल मिटाने जा रहे हैं!" #: js/messages.php:33 #, fuzzy @@ -1086,51 +1086,51 @@ 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?" -msgstr "यह आपरेशन लंबे समय लग सकता है. फिर भी आगे बढ़ें?" +msgstr "" +"इस प्रक्रिया में लम्बा वक्त भी लग सकता है। क्या आप चाहते हैं ये प्रक्रिया की " +"जाये ?" #: js/messages.php:40 msgid "You are about to DISABLE a BLOB Repository!" -msgstr "आप एक BLOB भंडार निष्क्रिय करने वाले हैं!" +msgstr "आप एक BLOB डॅटा टाईप का भंडार निष्क्रिय करने को हैं!" #: js/messages.php:41 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" -msgstr "क्या आप वाकई %s दाताबेस के सारे संदर्भ निष्क्रिय करना चाहते है?" +msgstr "क्या आप वाकई %s डॅटाबेस के सारे संदर्भ निष्क्रिय करना चाहते है?" #: js/messages.php:44 msgid "Missing value in the form!" -msgstr "फॉर्म में मूल्य गूम हैं." +msgstr "फॉर्म में सूचना गुम हैं!" #: js/messages.php:45 msgid "This is not a number!" -msgstr "यह नंबर नहीं है!" +msgstr "यह 'आंकिक' या नम्बर रूप में नहीं है।" #: js/messages.php:46 -#, fuzzy #| msgid "Add index" msgid "Add Index" -msgstr "अनुक्रमणिका जोड़" +msgstr "अनुक्रमणिका जोड़ें" #: js/messages.php:47 -#, fuzzy #| msgid "Edit mode" 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 "%s कॉलम जोडें" #. l10n: Default description for the y-Axis of Charts #: js/messages.php:52 msgid "Total count" -msgstr "कुल गिनती" +msgstr "कुल संख्या" #: js/messages.php:55 msgid "The host name is empty!" @@ -1138,28 +1138,28 @@ msgstr "मेज़बान का नाम (hostname) खाली है!" #: 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 "कूटशब्द (password) खाली है!" #: js/messages.php:58 server_privileges.php:1314 user_password.php:53 msgid "The passwords aren't the same!" -msgstr "पासवर्ड मिलते झूलते नहीं हैं." +msgstr "कूटशब्द (password) समान नहीं हैं!" #: js/messages.php:59 server_privileges.php:1775 server_privileges.php:1799 #: server_privileges.php:2211 server_privileges.php:2416 msgid "Add user" -msgstr "naya upyokta" +msgstr "नया प्रयोक्ता जोड़ें" #: js/messages.php:60 msgid "Reloading Privileges" -msgstr "प्रिविलेज पुनः लोड करें" +msgstr "विशेषाधिकारों को पुनः लोड करें" #: js/messages.php:61 msgid "Removing Selected Users" -msgstr "चयनित यूसर को हटायें" +msgstr "चयनित प्रयोक्ताओं को हटायें" #: js/messages.php:62 js/messages.php:141 tbl_tracking.php:235 #: tbl_tracking.php:415 @@ -1182,17 +1182,16 @@ msgstr "सर्वर चुनिये" #: js/messages.php:67 server_status.php:815 msgid "Live conn./process chart" -msgstr "" +msgstr "लाईव कनेक्शन / प्रोसेस चार्ट" #: js/messages.php:68 server_status.php:837 -#, fuzzy #| msgid "Show query chart" msgid "Live query chart" -msgstr "क्वरी चार्ट शो" +msgstr "जीवन्त (live) क्वॅरी चार्ट" #: js/messages.php:70 msgid "Static data" -msgstr "" +msgstr "स्थिर (static) डॅटा" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:46 @@ -1205,7 +1204,7 @@ msgstr "कुल" #. l10n: Other, small valued, queries #: js/messages.php:74 server_status.php:608 server_status.php:1035 msgid "Other" -msgstr "" +msgstr "अन्य" #. l10n: Thousands separator #: js/messages.php:76 libraries/common.lib.php:1448 @@ -1219,41 +1218,39 @@ msgstr "." #: js/messages.php:80 msgid "KiB sent since last refresh" -msgstr "" +msgstr "किलोबाइट भेजे गए, पिछले रिफ्रेश से लेकर अब तक" #: js/messages.php:81 msgid "KiB received since last refresh" -msgstr "" +msgstr "किलोबाइट प्राप्त हुए, पिछले रिफ्रेश से अब तक" #: js/messages.php:82 -#, fuzzy #| msgid "Server Choice" msgid "Server traffic (in KiB)" -msgstr "सर्वर चुनिये" +msgstr "सर्वर व्यस्तता (किलोबाइट में)" #: js/messages.php:83 msgid "Connections since last refresh" -msgstr "" +msgstr "पिछले रिफ्रेश से लेकर अब तक के कनेक्शन" #: js/messages.php:84 js/messages.php:122 server_status.php:1248 msgid "Processes" -msgstr "प्रक्रियां" +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:790 msgid "Query statistics" From 8ad78aecb29a32064db64f538ebc2dfbacf5b34b Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sun, 20 Jan 2013 17:30:29 +0100 Subject: [PATCH 20/85] Translated using Weblate (Sinhala) Currently translated at 81.6% (2090 of 2562) --- po/si.po | 31 ++++++++++++------------------- 1 file changed, 12 insertions(+), 19 deletions(-) diff --git a/po/si.po b/po/si.po index 4d9caca602..fcfa3f277c 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-10-16 14:37+0200\n" -"PO-Revision-Date: 2012-12-27 18:22+0200\n" +"PO-Revision-Date: 2013-01-20 17:30+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: Sinhala \n" "Language: si\n" @@ -2401,9 +2401,8 @@ msgid "Packed" msgstr "අහුරන ලද" #: libraries/Index.class.php:445 tbl_tracking.php:324 -#, fuzzy msgid "Cardinality" -msgstr "Cardinality" +msgstr "අනේකත්වය" #: libraries/Index.class.php:448 libraries/rte/rte_events.lib.php:497 #: libraries/rte/rte_routines.lib.php:974 tbl_tracking.php:263 @@ -5912,9 +5911,8 @@ msgid "" msgstr "තම වගු වල දත්ත සහ සුචි කෑෂ්ගත කිරීමට InnoDB භාවිතා කරන මතක බෆරයේ ප්‍රමාණය." #: libraries/engines/innodb.lib.php:130 -#, fuzzy msgid "Buffer Pool" -msgstr "Buffer Pool" +msgstr "අන්තරාච එකතුව" #: libraries/engines/innodb.lib.php:131 server_status.php:652 msgid "InnoDB Status" @@ -5965,14 +5963,12 @@ msgid "Write requests" msgstr "ලිවීම සඳහා වූ ඉල්ලීම්" #: libraries/engines/innodb.lib.php:230 -#, fuzzy msgid "Read misses" -msgstr "Read misses" +msgstr "කියවීම් අතෑරුම්" #: libraries/engines/innodb.lib.php:236 -#, fuzzy msgid "Write waits" -msgstr "Write waits" +msgstr "ලිවීම් ප්‍රමාද" #: libraries/engines/innodb.lib.php:242 msgid "Read misses in %" @@ -6513,7 +6509,7 @@ msgstr "" #: libraries/export/sql.php:342 libraries/export/xml.php:45 msgid "Procedures" -msgstr "ක්‍රියාපටිපාටිය" +msgstr "ක්‍රියාපටිපාටි" #: libraries/export/sql.php:359 libraries/export/xml.php:40 msgid "Functions" @@ -11800,7 +11796,7 @@ msgstr "විමසුම් කෑෂ් ඛණ්ඩනීකරණය" #: po/advisory_rules.php:91 msgid "The query cache is considerably fragmented." -msgstr "" +msgstr "විමසුම් කෑෂය භාගීකරණයට ලක්වී ඇත." #: po/advisory_rules.php:92 msgid "" @@ -11827,12 +11823,12 @@ 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 "The amount of free memory for query cache." +msgstr "" +"අඩු විමසුම් කෑෂ් ධාරිතාව හේතුවෙන් කෑෂ්ගත කරන ලද විමසුම් කෑෂයෙන් ඉවත් කෙරෙයි." #: po/advisory_rules.php:97 msgid "" @@ -11895,16 +11891,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 "Allows creating temporary tables." +msgstr "තාවකාලික වගු සැදීමට සිදුවූ අනුපිළිවෙල සැකසීම් ප්‍රතිශතයක් ලෙස" #: 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 "Allows creating temporary tables." +msgstr "තාවකාලික වගු සැදීමට සිදුවූ අනුපිළිවෙල සැකසීම් ඉතා විශාල ගණනකි." #: po/advisory_rules.php:112 po/advisory_rules.php:117 msgid "" @@ -11920,10 +11914,9 @@ msgid "" msgstr "" #: po/advisory_rules.php:115 -#, fuzzy #| msgid "Allows creating temporary tables." msgid "Rate of sorts that cause temporary tables" -msgstr "Allows creating temporary tables." +msgstr "තාවකාලික වගු සැදීමට සිදුවූ අනුපිළිවෙල සැකසීම් ගණන" #: po/advisory_rules.php:118 #, php-format From 2b95f96875f11657835edb51dcd6f0461109cc3e Mon Sep 17 00:00:00 2001 From: Andrey Prokopenko Date: Sun, 20 Jan 2013 18:09:41 +0100 Subject: [PATCH 21/85] Translated using Weblate (Ukrainian) Currently translated at 61.5% (1576 of 2562) --- po/uk.po | 297 +++++++++++++++++++++++++------------------------------ 1 file changed, 135 insertions(+), 162 deletions(-) diff --git a/po/uk.po b/po/uk.po index 8823a9f8fa..e5b3db169a 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-10-16 14:37+0200\n" -"PO-Revision-Date: 2013-01-20 12:52+0200\n" -"Last-Translator: Rostyslav Gaitkulov \n" +"PO-Revision-Date: 2013-01-20 18:09+0200\n" +"Last-Translator: Andrey Prokopenko \n" "Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ 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 @@ -110,7 +110,7 @@ msgstr "Отримання заголовків невдале" #: bs_disp_as_mime_type.php:41 msgid "Failed to open remote URL" -msgstr "Відкривання зовнішнього посилання URL невдале" +msgstr "Не вдалося відкрити зовнішню URL адресу" #: changelog.php:32 license.php:28 #, php-format @@ -254,7 +254,7 @@ 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" @@ -321,7 +321,7 @@ msgstr "Додати %s" #: db_operations.php:508 libraries/config/messages.inc.php:121 #: tbl_operations.php:318 tbl_operations.php:564 msgid "Add AUTO_INCREMENT value" -msgstr "Додати AUTO_INCREMENT значення" +msgstr "Додати значення AUTO_INCREMENT" #: db_operations.php:512 tbl_operations.php:571 msgid "Add constraints" @@ -589,7 +589,7 @@ msgstr "Всередині стовпчика:" #: db_structure.php:68 msgid "No tables found in database" -msgstr "В БД не виявлено таблиць." +msgstr "Немає таблиць у базі даних" #: db_structure.php:228 libraries/mysql_charsets.lib.php:409 #: libraries/mysql_charsets.lib.php:416 @@ -1035,7 +1035,7 @@ msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -"Досягнуто часове обмеження віконання скрипту, якщо Ви бажаєте закінчити " +"Досягнуто часове обмеження виконання скрипту, якщо Ви бажаєте закінчити " "імпорт, необхідно повторно відправити той самий файл." #: import.php:444 @@ -1387,7 +1387,7 @@ msgstr "%d таблиця(таблиць)" #. l10n: Questions is the name of a MySQL Status variable #: js/messages.php:135 msgid "Questions" -msgstr "Questions" +msgstr "Питання" #: js/messages.php:136 server_status.php:1113 msgid "Traffic" @@ -1432,7 +1432,7 @@ msgstr "Призупинити монітор" #: js/messages.php:147 msgid "general_log and slow_query_log are enabled." -msgstr "general_log та slow_query_log ввімкнені" +msgstr "general_log та slow_query_log ввімкнені." #: js/messages.php:148 msgid "general_log is enabled." @@ -1539,7 +1539,7 @@ msgstr "Модуль" #: js/messages.php:174 msgid "From slow log" -msgstr "З журналу повільних запитів" +msgstr "З журналу повільних запитів (slow log)" #: js/messages.php:175 msgid "From general log" @@ -1914,7 +1914,7 @@ msgstr "Наведення курсора над крапкою відобраз #: js/messages.php:304 msgid "To zoom in, select a section of the plot with the mouse." -msgstr "Для збільшення, виділіть ділянку графіку з допомогою миші" +msgstr "Щоб збільшити масштаб, виберіть ділянку діаграми за допомогою миші." #: js/messages.php:306 msgid "Click reset zoom link to come back to original state." @@ -2758,7 +2758,7 @@ msgstr "PBMS get BLOB info не вдалося:" #: libraries/blobstreaming.lib.php:373 msgid "PBMS get BLOB Content-Type failed" -msgstr "PBMS get BLOB Content-Type не вдалося:" +msgstr "PBMS не вдалося отримати BLOB Content-Type" #: libraries/blobstreaming.lib.php:401 msgid "View image" @@ -2840,7 +2840,7 @@ msgstr "виявлено цифровий ключ" #: libraries/common.inc.php:624 msgid "Failed to read configuration file" -msgstr "Неможливо прочитати конфігураційний файл." +msgstr "Не вдалося прочитати файл конфігурації" #: libraries/common.inc.php:625 msgid "" @@ -3643,7 +3643,7 @@ msgstr "Ключ підпису" #: libraries/config/messages.inc.php:136 libraries/export/odt.php:324 #: libraries/tbl_properties.inc.php:135 msgid "MIME type" -msgstr "MIME type" +msgstr "Тип MIME" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 tbl_relation.php:392 @@ -4816,7 +4816,7 @@ msgstr "" #: libraries/config/messages.inc.php:407 msgid "Show only listed databases" -msgstr "" +msgstr "Показати лише перелічені бази даних" #: libraries/config/messages.inc.php:408 libraries/config/messages.inc.php:449 msgid "Leave empty if not using config auth" @@ -4863,10 +4863,9 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:417 -#, fuzzy #| msgid "Analyze table" msgid "Recently used table" -msgstr "Аналіз таблиці" +msgstr "Нещодавно використані таблиці" #: libraries/config/messages.inc.php:418 msgid "" @@ -4884,7 +4883,7 @@ msgstr "" #: libraries/config/messages.inc.php:421 msgid "SHOW DATABASES command" -msgstr "" +msgstr "Команда SHOW DATABASES" #: libraries/config/messages.inc.php:422 msgid "" @@ -4908,7 +4907,7 @@ msgstr "" #: libraries/config/messages.inc.php:426 msgid "Server socket" -msgstr "" +msgstr "Сокет серверу" #: libraries/config/messages.inc.php:427 msgid "Enable SSL for connection to MySQL server" @@ -4916,7 +4915,7 @@ msgstr "Активувати SSL для з’єднання з MySQL серве #: libraries/config/messages.inc.php:428 msgid "Use SSL" -msgstr "" +msgstr "Використовувати SSL" #: libraries/config/messages.inc.php:429 msgid "" @@ -4945,7 +4944,7 @@ msgstr "" #: libraries/config/messages.inc.php:434 msgid "UI preferences table" -msgstr "" +msgstr "Таблиця налаштувань користувацького інтерфейсу" #: libraries/config/messages.inc.php:435 msgid "" @@ -4955,7 +4954,7 @@ msgstr "" #: libraries/config/messages.inc.php:436 msgid "Add DROP DATABASE" -msgstr "" +msgstr "Додати DROP DATABASE" #: libraries/config/messages.inc.php:437 msgid "" @@ -4965,7 +4964,7 @@ msgstr "" #: libraries/config/messages.inc.php:438 msgid "Add DROP TABLE" -msgstr "" +msgstr "Додати DROP TABLE" #: libraries/config/messages.inc.php:439 msgid "" @@ -4975,7 +4974,7 @@ msgstr "" #: libraries/config/messages.inc.php:440 msgid "Add DROP VIEW" -msgstr "" +msgstr "Додати DROP VIEW" #: libraries/config/messages.inc.php:441 msgid "Defines the list of statements the auto-creation uses for new versions." @@ -4993,7 +4992,7 @@ msgstr "" #: libraries/config/messages.inc.php:444 msgid "SQL query tracking table" -msgstr "" +msgstr "Таблиця відстежування SQL запитів" #: libraries/config/messages.inc.php:445 msgid "" @@ -5003,7 +5002,7 @@ msgstr "" #: libraries/config/messages.inc.php:446 msgid "Automatically create versions" -msgstr "" +msgstr "Автоматично створювати версії" #: libraries/config/messages.inc.php:447 msgid "" @@ -5013,7 +5012,7 @@ msgstr "" #: libraries/config/messages.inc.php:448 msgid "User preferences storage table" -msgstr "" +msgstr "Таблиця збереження налаштувань користувача" #: libraries/config/messages.inc.php:450 msgid "User for config auth" @@ -5069,10 +5068,9 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:461 -#, fuzzy #| msgid "Default display direction" msgid "Show display direction" -msgstr "Напрямок відображення по змовчуванню" +msgstr "Показати напрямком відображення" #: libraries/config/messages.inc.php:462 msgid "" @@ -5097,10 +5095,9 @@ msgid "Whether to show hint or not" msgstr "" #: libraries/config/messages.inc.php:467 -#, fuzzy #| msgid "Show grid" msgid "Show hint" -msgstr "Показати сітку" +msgstr "Відображати підказки" #: libraries/config/messages.inc.php:468 msgid "" @@ -5478,7 +5475,7 @@ msgstr "" #: libraries/db_links.inc.php:65 libraries/relation.lib.php:144 #: libraries/tbl_links.inc.php:97 msgid "Tracking" -msgstr "" +msgstr "Відстеження" #: libraries/db_links.inc.php:70 msgid "Query" @@ -5495,18 +5492,18 @@ msgstr "Привілеї" #: libraries/db_links.inc.php:96 libraries/rte/rte_words.lib.php:25 msgid "Routines" -msgstr "" +msgstr "Процедури" #: libraries/db_links.inc.php:100 libraries/export/sql.php:641 #: libraries/rte/rte_words.lib.php:49 msgid "Events" -msgstr "" +msgstr "Події" #: libraries/db_links.inc.php:104 libraries/export/sql.php:1032 #: libraries/export/xml.php:57 libraries/rte/rte_words.lib.php:37 #: libraries/tbl_links.inc.php:103 msgid "Triggers" -msgstr "" +msgstr "Тригери" #: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2228 msgid "" @@ -5545,10 +5542,9 @@ msgstr "" #: libraries/display_create_database.lib.php:21 #: libraries/display_create_database.lib.php:39 -#, fuzzy #| msgid "Create new database" msgid "Create database" -msgstr "Створити нову БД" +msgstr "Створити базу даних" #: libraries/display_create_database.lib.php:33 msgid "Create" @@ -5708,10 +5704,9 @@ msgid "Format:" msgstr "Формат:" #: libraries/display_export.lib.php:333 -#, fuzzy #| msgid "Transformation options" msgid "Format-specific options:" -msgstr "Опції перетворення" +msgstr "Параметри форматування:" #: libraries/display_export.lib.php:334 msgid "" @@ -5744,19 +5739,19 @@ msgstr "" #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" -msgstr "Не можу зареєструватися на MySQL сервері" +msgstr "Імпортування до поточного сервера" #: libraries/display_import.lib.php:131 -#, fuzzy, php-format +#, php-format #| msgid "No databases" msgid "Importing into the database \"%s\"" -msgstr "БД відсутні" +msgstr "Імпортування до бази даних \"%s\"" #: libraries/display_import.lib.php:133 -#, fuzzy, php-format +#, php-format #| msgid "No databases" msgid "Importing into the table \"%s\"" -msgstr "БД відсутні" +msgstr "Імпортування до таблиці \"%s\"" #: libraries/display_import.lib.php:139 msgid "File to Import:" @@ -5811,27 +5806,25 @@ msgstr "" #: libraries/display_tbl.lib.php:406 msgid "Save edited data" -msgstr "" +msgstr "Зберегти відредаговані дані" #: libraries/display_tbl.lib.php:412 msgid "Restore column order" -msgstr "" +msgstr "Відновити порядок стовпців" #: libraries/display_tbl.lib.php:428 msgid "Start row" -msgstr "" +msgstr "Початковий рядок" #: libraries/display_tbl.lib.php:430 -#, fuzzy #| msgid "Number of rows:" msgid "Number of rows" -msgstr "Число рядків:" +msgstr "Кількість рядків" #: libraries/display_tbl.lib.php:435 -#, fuzzy #| msgid "More" msgid "Mode" -msgstr "Більше" +msgstr "Режим" #: libraries/display_tbl.lib.php:437 msgid "horizontal" @@ -5848,11 +5841,11 @@ msgstr "вертикальному" #: libraries/display_tbl.lib.php:445 #, php-format msgid "Headers every %s rows" -msgstr "" +msgstr "Заголовки кожні %s рядків" #: libraries/display_tbl.lib.php:548 msgid "Sort by key" -msgstr "" +msgstr "Сортувати за ключем" #: libraries/display_tbl.lib.php:627 libraries/export/codegen.php:41 #: libraries/export/csv.php:34 libraries/export/excel.php:37 @@ -5869,16 +5862,14 @@ msgstr "" #: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:880 #: tbl_select.php:177 tbl_structure.php:862 msgid "Options" -msgstr "" +msgstr "Параметри" #: libraries/display_tbl.lib.php:632 libraries/display_tbl.lib.php:650 -#, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Часткові тексти" #: libraries/display_tbl.lib.php:633 libraries/display_tbl.lib.php:654 -#, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Повні тексти" @@ -5895,11 +5886,11 @@ msgstr "Схема зв'язків" #: libraries/display_tbl.lib.php:675 msgid "Show binary contents" -msgstr "" +msgstr "Показати двійковий вміст" #: libraries/display_tbl.lib.php:677 msgid "Show BLOB contents" -msgstr "" +msgstr "Показати вміст BLOB-ОБ'ЄКТІВ" #: libraries/display_tbl.lib.php:687 #, fuzzy @@ -5947,7 +5938,7 @@ msgstr "" #: libraries/display_tbl.lib.php:2614 msgid "Print view (with full texts)" -msgstr "" +msgstr "Подання дял друку (з повними текстами)" #: libraries/display_tbl.lib.php:2664 tbl_chart.php:92 #, fuzzy @@ -5960,10 +5951,9 @@ msgid "Visualize GIS data" msgstr "" #: libraries/display_tbl.lib.php:2701 -#, fuzzy #| msgid "Create User" msgid "Create view" -msgstr "Створити користувача" +msgstr "Створити подання" #: libraries/display_tbl.lib.php:2808 msgid "Link not found" @@ -5971,7 +5961,7 @@ msgstr "Лінк не знайдено" #: libraries/engines/bdb.lib.php:20 main.php:236 msgid "Version information" -msgstr "" +msgstr "Відомості про версію" #: libraries/engines/innodb.lib.php:20 msgid "Data home directory" @@ -6365,10 +6355,9 @@ msgid "The PrimeBase Media Streaming (PBMS) home page" msgstr "" #: libraries/export/csv.php:24 libraries/import/csv.php:28 -#, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" -msgstr "Рядки розділено" +msgstr "Стовпці розділені з:" #: libraries/export/csv.php:25 libraries/import/csv.php:29 #, fuzzy @@ -6391,10 +6380,9 @@ msgstr "Рядки розділено" #: libraries/export/csv.php:28 libraries/export/excel.php:23 #: libraries/export/htmlword.php:29 libraries/export/latex.php:80 #: libraries/export/ods.php:24 libraries/export/odt.php:60 -#, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with:" -msgstr "Замінити NULL на" +msgstr "Замінити значення NULL на:" #: libraries/export/csv.php:29 libraries/export/excel.php:24 msgid "Remove carriage return/line feed characters within columns" @@ -6407,10 +6395,9 @@ msgstr "" #: libraries/export/htmlword.php:28 libraries/export/latex.php:70 #: libraries/export/odt.php:56 libraries/export/sql.php:222 #: libraries/export/texytext.php:26 libraries/export/xml.php:73 -#, fuzzy #| msgid "Database export options" msgid "Data dump options" -msgstr "Налаштування експорту бази даних" +msgstr "Параметри дампу даних" #: libraries/export/htmlword.php:121 libraries/export/odt.php:173 #: libraries/export/sql.php:1188 libraries/export/texytext.php:109 @@ -6436,16 +6423,14 @@ msgstr "Структура таблиці @TABLE@" #: libraries/export/latex.php:48 libraries/export/odt.php:40 #: libraries/export/sql.php:142 -#, fuzzy #| msgid "Transformation options" msgid "Object creation options" -msgstr "Опції перетворення" +msgstr "Параметри створення об'єкта" #: libraries/export/latex.php:52 libraries/export/latex.php:76 -#, fuzzy #| msgid "Table of contents" msgid "Table caption (continued)" -msgstr "Зміст" +msgstr "Заголовок таблиці (продовження)" #: libraries/export/latex.php:57 libraries/export/odt.php:43 #: libraries/export/sql.php:56 @@ -6453,17 +6438,15 @@ msgid "Display foreign key relationships" msgstr "" #: libraries/export/latex.php:60 libraries/export/odt.php:46 -#, fuzzy #| msgid "Displaying Column Comments" msgid "Display comments" -msgstr "Показувати коментарі стовпців" +msgstr "Відображення коментарів" #: libraries/export/latex.php:63 libraries/export/odt.php:49 #: libraries/export/sql.php:63 -#, fuzzy #| msgid "Available MIME types" msgid "Display MIME types" -msgstr "Доступні MIME-types" +msgstr "Відображати Типи MIME" #: libraries/export/latex.php:132 libraries/export/sql.php:482 #: libraries/export/xml.php:131 libraries/header_printview.inc.php:59 @@ -6504,10 +6487,9 @@ msgid "(Generates a report containing the data of a single table)" msgstr "" #: libraries/export/pdf.php:25 -#, fuzzy #| msgid "Import files" msgid "Report title:" -msgstr "Імпорт файлів" +msgstr "Заголовок звіту:" #: libraries/export/php_array.php:18 msgid "PHP array" @@ -6536,16 +6518,15 @@ msgstr "" #: libraries/export/sql.php:114 libraries/export/sql.php:173 #: libraries/export/sql.php:180 -#, fuzzy, php-format +#, php-format #| msgid "Statements" msgid "Add %s statement" -msgstr "Параметр" +msgstr "Додати оператор %s" #: libraries/export/sql.php:152 -#, fuzzy #| msgid "Statements" msgid "Add statements:" -msgstr "Параметр" +msgstr "Додати оператори:" #: libraries/export/sql.php:211 msgid "" @@ -6644,10 +6625,9 @@ msgid "Stand-in structure for view" msgstr "" #: libraries/export/sql.php:1112 -#, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" -msgstr "Дозволити читання даних." +msgstr "Помилка читання даних:" #: libraries/export/xml.php:19 libraries/import/xml.php:28 msgid "XML" @@ -6668,7 +6648,7 @@ msgstr "" #: libraries/footer.inc.php:163 libraries/footer.inc.php:165 #: libraries/footer.inc.php:168 msgid "Open new phpMyAdmin window" -msgstr "" +msgstr "Відкрити нове вікно phpMyAdmin" #: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." @@ -6680,7 +6660,7 @@ msgstr "" #: libraries/header_printview.inc.php:49 libraries/header_printview.inc.php:57 msgid "SQL result" -msgstr "SQL result" +msgstr "Результат SQL" #: libraries/header_printview.inc.php:62 msgid "Generated by" @@ -6751,10 +6731,9 @@ msgid "" msgstr "" #: libraries/import/csv.php:42 -#, fuzzy #| msgid "Column names" msgid "Column names: " -msgstr "Назви колонок" +msgstr "Назви стовпців: " #: libraries/import/csv.php:62 libraries/import/csv.php:75 #: libraries/import/csv.php:80 libraries/import/csv.php:85 @@ -6857,10 +6836,9 @@ msgid "Convert to Kana" msgstr "" #: libraries/mult_submits.inc.php:254 -#, fuzzy #| msgid "Fr" msgid "From" -msgstr "Пт" +msgstr "Від" #: libraries/mult_submits.inc.php:257 msgid "To" @@ -6906,11 +6884,11 @@ msgstr "Китайське Традиційне" #: libraries/mysql_charsets.lib.php:234 libraries/mysql_charsets.lib.php:420 msgid "case-insensitive" -msgstr "case-insensitive" +msgstr "нечутливий до регістру" #: libraries/mysql_charsets.lib.php:237 libraries/mysql_charsets.lib.php:422 msgid "case-sensitive" -msgstr "case-sensitive" +msgstr "чутливий до регістру" #: libraries/mysql_charsets.lib.php:240 msgid "Croatian" @@ -7089,10 +7067,9 @@ msgid "Reload navigation frame" msgstr "" #: libraries/plugin_interface.lib.php:309 -#, fuzzy #| msgid "This format has no options" msgid "This format has no options" -msgstr "Цей формат не має опцій" +msgstr "Цей формат не має параметрів" #: libraries/relation.lib.php:76 msgid "not OK" @@ -7164,7 +7141,7 @@ msgstr "" #: libraries/relation.lib.php:155 msgid "Create a pma user and give access to these tables." -msgstr "Створити phpMyAdmin користувача та дати йому доступ до цих таблиць" +msgstr "Створити користувача phpMyAdmin та дати йому доступ до цих таблиць." #: libraries/relation.lib.php:156 msgid "" @@ -7353,7 +7330,6 @@ msgid "Start" msgstr "Старт" #: libraries/rte/rte_events.lib.php:474 -#, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" @@ -7499,9 +7475,8 @@ msgid "Security type" msgstr "Тип безпеки" #: libraries/rte/rte_routines.lib.php:962 -#, fuzzy msgid "SQL data access" -msgstr "доступ SQL даних" +msgstr "Доступ до даних SQL" #: libraries/rte/rte_routines.lib.php:1027 msgid "You must provide a routine name" @@ -7582,7 +7557,6 @@ msgid "Trigger name" msgstr "Назва тригера" #: libraries/rte/rte_triggers.lib.php:345 -#, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" @@ -7833,8 +7807,9 @@ msgstr "ввімкнути чорновик (scratchboard)" #. l10n: Text direction, use either ltr or rtl #: libraries/select_lang.lib.php:478 +#, fuzzy msgid "ltr" -msgstr "ltr" +msgstr "зліва направо" #: libraries/select_lang.lib.php:495 libraries/select_lang.lib.php:501 #: libraries/select_lang.lib.php:507 @@ -7961,9 +7936,8 @@ msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" msgstr "" -"There seems to be an error in your SQL query. Повідомлення MySQL сервера про " -"помилку подане нижче (якщо є таке) також може допомогти Вам у визначенні " -"проблеми." +"Схоже на помилку у SQL запиті. У визначенні проблеми може допомогти " +"повідомлення про помилку сервера MySQL, що наведено нижче (якщо таке є)" #: libraries/sqlparser.lib.php:175 msgid "" @@ -8098,7 +8072,6 @@ msgid "Get more editing space" msgstr "" #: libraries/tbl_properties.inc.php:351 -#, fuzzy #| msgid "None" msgctxt "for default" msgid "None" @@ -8124,10 +8097,9 @@ msgid "Add %s column(s)" msgstr "Додати %s стовпчик(ів)" #: libraries/tbl_properties.inc.php:575 tbl_structure.php:662 -#, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." -msgstr "Необхідно вибрати принаймі один Стовпчик для показу" +msgstr "Необхідно додати принаймні один стовпчик." #: libraries/tbl_properties.inc.php:663 server_engines.php:54 #: tbl_operations.php:374 @@ -8142,7 +8114,7 @@ msgstr "" #: pmd_general.php:623 pmd_general.php:636 pmd_general.php:699 #: pmd_general.php:753 msgid "Operator" -msgstr "" +msgstr "Оператор" #: libraries/tbl_select.lib.php:103 #, fuzzy @@ -8185,8 +8157,8 @@ msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." msgstr "" -"Відображає clickable thumbnail; опції: ширина, висота у пікселах (зберігає " -"початкові пропорції)" +"Відображає клікабельний ескіз. Параметрами є максимальна ширина і висота в " +"пікселях. Оригінальні пропорції зберігаються." #: libraries/transformations/image_jpeg__link.inc.php:10 msgid "Displays a link to download this image." @@ -8331,46 +8303,41 @@ msgid "Error in ZIP archive:" msgstr "" #: main.php:65 -#, fuzzy #| msgid "General relation features" msgid "General Settings" -msgstr "Загальні можливості" +msgstr "Загальні налаштування" #: main.php:109 -#, fuzzy #| msgid "Server configuration" msgid "Server connection collation" msgstr "Конфігурація сервера" #: main.php:124 msgid "Appearance Settings" -msgstr "" +msgstr "Налаштування вигляду" #: main.php:153 prefs_manage.php:272 -#, fuzzy #| msgid "General relation features" msgid "More settings" -msgstr "Загальні можливості" +msgstr "Додаткові налаштування" #: main.php:169 -#, fuzzy #| msgid "Databases" msgid "Database server" -msgstr "Бази Даних" +msgstr "Сервер бази даних" #: main.php:172 msgid "Software" -msgstr "" +msgstr "Програмне забезпечення" #: main.php:173 -#, fuzzy #| msgid "Server version" msgid "Software version" -msgstr "Версія сервера" +msgstr "Версія програмного забезпечення" #: main.php:175 msgid "Protocol version" -msgstr "" +msgstr "Версія протоколу" #: main.php:179 server_privileges.php:1547 server_privileges.php:1702 #: server_privileges.php:1826 server_privileges.php:2256 @@ -8379,24 +8346,22 @@ msgid "User" msgstr "Користувач" #: main.php:184 -#, fuzzy #| msgid "Remove database" msgid "Server charset" -msgstr "Видалити базу даних" +msgstr "Кодування символів серверу" #: main.php:196 msgid "Web server" -msgstr "" +msgstr "Веб-сервер" #: main.php:209 -#, fuzzy #| msgid "Database comment: " msgid "Database client version" -msgstr "Коментар бази даних: " +msgstr "Версія клієнту бази даних" #: main.php:213 msgid "PHP extension" -msgstr "" +msgstr "PHP розширення" #: main.php:221 msgid "Show PHP information" @@ -8407,20 +8372,18 @@ msgid "Official Homepage" msgstr "Офіційна сторінка phpMyAdmin" #: main.php:242 -#, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Атрибути" #: main.php:243 msgid "Get support" -msgstr "" +msgstr "Отримати підтримку" #: main.php:244 -#, fuzzy #| msgid "No change" msgid "List of changes" -msgstr "Змін немає" +msgstr "Перелік змін" #: main.php:268 msgid "" @@ -8440,6 +8403,8 @@ msgid "" "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" +"У конфігурації PHP увімкнено mbstring.func_overload. Цей параметр є " +"несумісним з phpMyAdmin і може викликати пошкодження деяких даних!" #: main.php:284 msgid "" @@ -8447,6 +8412,10 @@ msgid "" "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" +"Pозширення PHP mbstring не знайдено, і схоже на те, що використовуються " +"багатобайтові символи. Без розширення mbstring phpMyAdmin не зможе правильно " +"виконати поділ текстових рядків, і це може призвести до неочікуваних " +"результатів." #: main.php:292 msgid "" @@ -8455,12 +8424,20 @@ msgid "" "cookie validity configured in phpMyAdmin, because of this, your login will " "expire sooner than configured in phpMyAdmin." msgstr "" +"Параметр PHP " +"[a@http://php.net/manual/en/session.configuration.php#ini.session.gc-" +"maxlifetime@_blank]session.gc_maxlifetime[/a] менший, ніж термін придатності " +"cookie налаштованого в phpMyAdmin, і через це термін дії вашого логіну " +"закінчується раніше, ніж це налаштовано в phpMyAdmin." #: main.php:299 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" +"Параметр збереження куків логін менший терміну дії куків, що налаштований в " +"phpMyAdmin, і через це термін дії вашого логіну закінчується раніше терміну, " +"налаштованого в phpMyAdmin." #: main.php:307 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." @@ -8472,6 +8449,9 @@ msgid "" "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" +"Каталог [code]config[/code], який використовується сценарій установки, все " +"ще існує в каталозі phpMyAdmin. Якщо phpMyAdmin вже налаштовано, його " +"необхідно видалити." #: main.php:321 #, fuzzy, php-format @@ -8498,6 +8478,8 @@ msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" +"Версія бібліотеки PHP MySQL %s відрізняється від версії сервера MySQL %s. Це " +"може спричинити непередбачувані наслідки." #: main.php:378 #, php-format @@ -8505,6 +8487,8 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" +"Сервер, що працює з Suhosin. Щодо можливих проблем звертайтеся до %" +"sdocumentation%s." #: navigation.php:182 server_databases.php:284 server_synchronize.php:1294 msgid "No databases" @@ -9146,10 +9130,9 @@ msgid "Do not change the password" msgstr "Не змінювати пароль" #: server_privileges.php:917 server_privileges.php:2399 -#, fuzzy #| msgid "No user(s) found." msgid "No user found." -msgstr "Не знайдено користувача." +msgstr "Користувача не знайдено." #: server_privileges.php:961 #, php-format @@ -9210,7 +9193,6 @@ msgid "Any" msgstr "Довільний" #: server_privileges.php:1567 -#, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Огляд користувачів" @@ -9339,10 +9321,9 @@ msgid "wildcard" msgstr "шаблон" #: server_privileges.php:2408 -#, fuzzy #| msgid "The row has been deleted" msgid "User has been added." -msgstr "Рядок видалено" +msgstr "Користувача було додано." #: server_replication.php:49 msgid "Unknown error" @@ -9522,11 +9503,11 @@ msgstr "phpMyAdmin не може припинити процес %s. Він вж #: server_status.php:594 msgid "Handler" -msgstr "" +msgstr "Обробник" #: server_status.php:595 msgid "Query cache" -msgstr "" +msgstr "Кеш запитів" #: server_status.php:596 msgid "Threads" @@ -9534,7 +9515,7 @@ msgstr "" #: server_status.php:598 msgid "Temporary data" -msgstr "" +msgstr "Тимчасові дані" #: server_status.php:599 msgid "Delayed inserts" @@ -9550,15 +9531,15 @@ msgstr "" #: server_status.php:603 msgid "Sorting" -msgstr "" +msgstr "Сортування" #: server_status.php:605 msgid "Transaction coordinator" -msgstr "" +msgstr "Координатор транзакцій" #: server_status.php:617 msgid "Flush (close) all tables" -msgstr "" +msgstr "Вичистити (закрити) всі таблиці" #: server_status.php:619 msgid "Show open tables" @@ -9586,11 +9567,11 @@ msgstr "" #: server_status.php:792 msgid "Monitor" -msgstr "" +msgstr "Монітор" #: server_status.php:793 msgid "Advisor" -msgstr "" +msgstr "Радник" #: server_status.php:803 server_status.php:829 #, fuzzy @@ -9609,26 +9590,23 @@ msgid "Filters" msgstr "" #: server_status.php:854 server_variables.php:117 -#, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" -msgstr "Не змінювати пароль" +msgstr "Містить слова:" #: server_status.php:859 -#, fuzzy #| msgid "Show tables" msgid "Show only alert values" -msgstr "Показати таблиці" +msgstr "Показати тільки оповіщення значень" #: server_status.php:863 msgid "Filter by category..." msgstr "" #: server_status.php:877 -#, fuzzy #| msgid "Show tables" msgid "Show unformatted values" -msgstr "Показати таблиці" +msgstr "Показати неформатовані значення" #: server_status.php:881 #, fuzzy @@ -11096,10 +11074,9 @@ msgid "Y-Axis label:" msgstr "" #: tbl_chart.php:149 -#, fuzzy #| msgid "Value" msgid "Y Values" -msgstr "Значення" +msgstr "Значення y" #: tbl_create.php:31 #, php-format @@ -11383,10 +11360,9 @@ msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Виконати \"запит згідно прикладу\" (символ підставновки: \"%\")" #: tbl_select.php:180 -#, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" -msgstr "Вибрати поля (щонайменше одне):" +msgstr "Виберіть стовпці (принаймні один):" #: tbl_select.php:198 msgid "Add search conditions (body of the \"where\" clause):" @@ -11655,10 +11631,9 @@ msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "Виконати \"запит згідно прикладу\" (символ підставновки: \"%\")" #: tbl_zoom_select.php:152 -#, fuzzy #| msgid "Hide search criteria" msgid "Additional search criteria" -msgstr "Сховати критерії пошуку" +msgstr "Додаткові критерії пошуку" #: tbl_zoom_select.php:283 msgid "Use this column to label each point" @@ -11674,13 +11649,12 @@ msgstr "" #: tbl_zoom_select.php:424 msgid "How to use" -msgstr "" +msgstr "Як використовувати" #: tbl_zoom_select.php:431 -#, fuzzy #| msgid "Reset" msgid "Reset zoom" -msgstr "Перевстановити" +msgstr "Скидання масштабу" #: themes.php:28 msgid "Get more themes!" @@ -12620,10 +12594,9 @@ msgid "" msgstr "" #: po/advisory_rules.php:230 -#, fuzzy #| msgid "Connections" msgid "Percentage of aborted connections" -msgstr "З'єднань" +msgstr "Відсоток перерваних підключень" #: po/advisory_rules.php:231 po/advisory_rules.php:236 msgid "Too many connections are aborted." From 1fe30ed7db3f604a0bcaf86ff85c912f9118f705 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sun, 20 Jan 2013 13:26:21 -0500 Subject: [PATCH 22/85] 3.5.7-dev --- ChangeLog | 2 ++ Documentation.html | 4 ++-- README | 4 ++-- libraries/Config.class.php | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4d34ef54bb..c0367cfd1c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,8 @@ phpMyAdmin - ChangeLog ====================== +3.5.7.0 (not yet released) + 3.5.6.0 (not yet released) - bug #3593604 [status] Erroneous advisor rule - bug #3596070 [status] localStorage broken in server status monitor diff --git a/Documentation.html b/Documentation.html index ab10c8f072..deedd14782 100644 --- a/Documentation.html +++ b/Documentation.html @@ -9,7 +9,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78 - phpMyAdmin 3.5.6-dev - Documentation + phpMyAdmin 3.5.7-dev - Documentation @@ -17,7 +17,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78 diff --git a/README b/README index 3dc6841e6a..538d6701b4 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ phpMyAdmin - Readme =================== -Version 3.5.6-dev +Version 3.5.7-dev A set of PHP-scripts to manage MySQL over the web. @@ -13,7 +13,7 @@ Copyright Copyright (C) 1998-2000 Tobias Ratschiller -Copyright (C) 2001-2012 +Copyright (C) 2001-2013 Marc Delisle Olivier Müller Robin Johnson diff --git a/libraries/Config.class.php b/libraries/Config.class.php index 5ba4343058..599244d5ec 100644 --- a/libraries/Config.class.php +++ b/libraries/Config.class.php @@ -98,7 +98,7 @@ class PMA_Config */ function checkSystem() { - $this->set('PMA_VERSION', '3.5.6-dev'); + $this->set('PMA_VERSION', '3.5.7-dev'); /** * @deprecated */ From 704e299916604f593ae6b77606e6749b9c7d76d1 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sun, 20 Jan 2013 13:28:27 -0500 Subject: [PATCH 23/85] Fix merge conflicts --- ChangeLog | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ChangeLog b/ChangeLog index 0e76d8c185..6343a3dc41 100644 --- a/ChangeLog +++ b/ChangeLog @@ -87,6 +87,8 @@ VerboseMultiSubmit, ReplaceHelpImg - Replaced qtip with jQuery UI tooltip - Upgraded CodeMirror to 2.37 +3.5.7.0 (not yet released) + 3.5.6.0 (not yet released) - bug #3593604 [status] Erroneous advisor rule - bug #3596070 [status] localStorage broken in server status monitor From 09af4b5bf1ae9d786a4027d225d771255e4e77ed Mon Sep 17 00:00:00 2001 From: Yogendra Singh Shekhawat Date: Sun, 20 Jan 2013 19:25:47 +0100 Subject: [PATCH 24/85] Translated using Weblate (Hindi) Currently translated at 51.5% (1339 of 2602) --- po/hi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hi.po b/po/hi.po index 4432942925..948e24f5d7 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-01-18 14:17+0100\n" -"PO-Revision-Date: 2013-01-20 16:36+0200\n" +"PO-Revision-Date: 2013-01-20 19:25+0200\n" "Last-Translator: Yogendra Singh Shekhawat \n" "Language-Team: Hindi \n" "Language: hi\n" @@ -3226,7 +3226,7 @@ msgstr "" #: libraries/ServerStatusData.class.php:345 msgid "Query statistics" -msgstr "डाटाबेसों के सांख्यिकी" +msgstr "क्वॅरी संबंधी आंकड़े" #: libraries/ServerStatusData.class.php:349 msgid "All status variables" From f6f8f284dc29a4249d4fee196ba344c6718b49df Mon Sep 17 00:00:00 2001 From: Yogendra Singh Shekhawat Date: Sun, 20 Jan 2013 19:25:47 +0100 Subject: [PATCH 25/85] Translated using Weblate (Hindi) Currently translated at 56.8% (1454 of 2562) --- po/hi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hi.po b/po/hi.po index 12d66fe517..b39e79a3db 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-10-16 14:37+0200\n" -"PO-Revision-Date: 2013-01-20 19:01+0200\n" +"PO-Revision-Date: 2013-01-20 19:25+0200\n" "Last-Translator: Yogendra Singh Shekhawat \n" "Language-Team: Hindi \n" "Language: hi\n" @@ -1254,7 +1254,7 @@ msgstr "प्रश्न (सर्वर द्वारा क्रिय #: js/messages.php:91 server_status.php:790 msgid "Query statistics" -msgstr "डाटाबेसों के सांख्यिकी" +msgstr "क्वॅरी संबंधी आंकड़े" #: js/messages.php:94 #, fuzzy From 0f8f017a2a01c272070b9cbe8d22d692a978c856 Mon Sep 17 00:00:00 2001 From: Andrey Prokopenko Date: Sun, 20 Jan 2013 19:28:31 +0100 Subject: [PATCH 26/85] Translated using Weblate (Ukrainian) Currently translated at 61.9% (1587 of 2562) --- po/uk.po | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/po/uk.po b/po/uk.po index e5b3db169a..d599714612 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-10-16 14:37+0200\n" -"PO-Revision-Date: 2013-01-20 18:09+0200\n" +"PO-Revision-Date: 2013-01-20 19:28+0200\n" "Last-Translator: Andrey Prokopenko \n" "Language-Team: Ukrainian \n" "Language: uk\n" @@ -4999,6 +4999,7 @@ msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" +"Чи механізм відстеження створює версії для таблиць і подань автоматично." #: libraries/config/messages.inc.php:446 msgid "Automatically create versions" @@ -5009,6 +5010,8 @@ msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" +"Залиште порожнім, якщо налаштування користувача не зберігаються в базі " +"даних, пропонується: [kbd]pma_userconfig[/kbd]" #: libraries/config/messages.inc.php:448 msgid "User preferences storage table" @@ -5023,10 +5026,12 @@ msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" +"Вимкніть, якщо відомо, що таблиці pma_ *, є актуальними. Це запобігає " +"перевіркам на сумісність і тим самим підвищує продуктивність" #: libraries/config/messages.inc.php:452 msgid "Verbose check" -msgstr "" +msgstr "Докладна перевірка" #: libraries/config/messages.inc.php:453 msgid "" @@ -5036,15 +5041,15 @@ msgstr "" #: libraries/config/messages.inc.php:454 msgid "Verbose name of this server" -msgstr "" +msgstr "Повна назва цього сервера" #: libraries/config/messages.inc.php:455 msgid "Whether a user should be displayed a "show all (rows)" button" -msgstr "" +msgstr "Чи користувачеві має відображатися кнопка на \"показати всі (рядки)\"" #: libraries/config/messages.inc.php:456 msgid "Allow to display all the rows" -msgstr "" +msgstr "Дозволити відображати всі рядки" #: libraries/config/messages.inc.php:457 msgid "" @@ -5055,17 +5060,19 @@ msgstr "" #: libraries/config/messages.inc.php:458 msgid "Show password change form" -msgstr "" +msgstr "Показати форму для зміни паролю" #: libraries/config/messages.inc.php:459 msgid "Show create database form" -msgstr "" +msgstr "Показати форму для створення бази даних" #: libraries/config/messages.inc.php:460 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" +"Визначає, чи буде показуватися при перегляді таблиці параметр типу напрямку " +"відображення" #: libraries/config/messages.inc.php:461 #| msgid "Default display direction" @@ -5077,6 +5084,8 @@ msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" +"Визначає, чи в режимі редагування/вставки має на початку відображатися тип " +"поля" #: libraries/config/messages.inc.php:463 msgid "Show field types" From 306e82519dc3b497e4ed496d902218f23cc0249b Mon Sep 17 00:00:00 2001 From: Andrey Prokopenko Date: Sun, 20 Jan 2013 19:28:31 +0100 Subject: [PATCH 27/85] Translated using Weblate (Ukrainian) Currently translated at 59.3% (1543 of 2602) --- po/uk.po | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/po/uk.po b/po/uk.po index 6795923bc4..bc84470df1 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-01-18 14:17+0100\n" -"PO-Revision-Date: 2013-01-20 18:09+0200\n" +"PO-Revision-Date: 2013-01-20 19:28+0200\n" "Last-Translator: Andrey Prokopenko \n" "Language-Team: Ukrainian " "\n" @@ -5891,6 +5891,7 @@ msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" +"Чи механізм відстеження створює версії для таблиць і подань автоматично." #: libraries/config/messages.inc.php:446 msgid "Automatically create versions" @@ -5918,15 +5919,15 @@ msgstr "" #: libraries/config/messages.inc.php:452 msgid "Verbose name of this server" -msgstr "" +msgstr "Повна назва цього сервера" #: libraries/config/messages.inc.php:453 msgid "Whether a user should be displayed a "show all (rows)" button" -msgstr "" +msgstr "Чи користувачеві має відображатися кнопка на \"показати всі (рядки)\"" #: libraries/config/messages.inc.php:454 msgid "Allow to display all the rows" -msgstr "" +msgstr "Дозволити відображати всі рядки" #: libraries/config/messages.inc.php:455 msgid "" @@ -5937,11 +5938,11 @@ msgstr "" #: libraries/config/messages.inc.php:456 msgid "Show password change form" -msgstr "" +msgstr "Показати форму для зміни паролю" #: libraries/config/messages.inc.php:457 msgid "Show create database form" -msgstr "" +msgstr "Показати форму для створення бази даних" #: libraries/config/messages.inc.php:458 msgid "Show or hide a column displaying the Creation timestamp for all tables" @@ -5976,6 +5977,8 @@ msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" +"Визначає, чи буде показуватися при перегляді таблиці параметр типу напрямку " +"відображення" #: libraries/config/messages.inc.php:465 #| msgid "Default display direction" @@ -5987,6 +5990,8 @@ msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" +"Визначає, чи в режимі редагування/вставки має на початку відображатися тип " +"поля" #: libraries/config/messages.inc.php:467 msgid "Show field types" From d223d8f5f1a990f108597fa7eb00652851f73bf8 Mon Sep 17 00:00:00 2001 From: Andrey Prokopenko Date: Sun, 20 Jan 2013 19:28:31 +0100 Subject: [PATCH 28/85] Translated using Weblate (Ukrainian) Currently translated at 61.9% (1587 of 2562) --- po/uk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/uk.po b/po/uk.po index d599714612..5e827bae7f 100644 --- a/po/uk.po +++ b/po/uk.po @@ -5089,7 +5089,7 @@ msgstr "" #: libraries/config/messages.inc.php:463 msgid "Show field types" -msgstr "" +msgstr "Показувати типи полів" #: libraries/config/messages.inc.php:464 msgid "Display the function fields in edit/insert mode" From b13bcaec126267dd48d81d5f29ebf41b32c4df57 Mon Sep 17 00:00:00 2001 From: Andrey Prokopenko Date: Sun, 20 Jan 2013 19:28:31 +0100 Subject: [PATCH 29/85] Translated using Weblate (Ukrainian) Currently translated at 59.3% (1543 of 2602) --- po/uk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/uk.po b/po/uk.po index bc84470df1..c41b1afe76 100644 --- a/po/uk.po +++ b/po/uk.po @@ -5995,7 +5995,7 @@ msgstr "" #: libraries/config/messages.inc.php:467 msgid "Show field types" -msgstr "" +msgstr "Показувати типи полів" #: libraries/config/messages.inc.php:468 msgid "Display the function fields in edit/insert mode" From 34e8a230b004dde5fb7e122c19fcd281beb2ebab Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sun, 20 Jan 2013 13:39:53 -0500 Subject: [PATCH 30/85] New sf interface for milestones --- scripts/create-release.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/create-release.sh b/scripts/create-release.sh index d1158a6827..f822ff8e7e 100755 --- a/scripts/create-release.sh +++ b/scripts/create-release.sh @@ -312,8 +312,7 @@ Todo now: - in doc/conf.py (if it exists) the line " version = '2.7.1-dev' " - 8. add a group for bug tracking this new version, at - https://sourceforge.net/tracker/admin/index.php?group_id=23067&atid=377408&add_group=1 + 8. add a milestone for this new version in the bugs tickets, at https://sourceforge.net/p/phpmyadmin/bugs/milestones 9. the end :-) From ddfab21fb0960f9a883001dbc781a14490103cf3 Mon Sep 17 00:00:00 2001 From: Yogendra Singh Shekhawat Date: Sun, 20 Jan 2013 19:31:01 +0100 Subject: [PATCH 31/85] Translated using Weblate (Hindi) Currently translated at 51.5% (1340 of 2602) --- po/hi.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/hi.po b/po/hi.po index 948e24f5d7..9ca237fb05 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-01-18 14:17+0100\n" -"PO-Revision-Date: 2013-01-20 19:25+0200\n" +"PO-Revision-Date: 2013-01-20 19:31+0200\n" "Last-Translator: Yogendra Singh Shekhawat \n" "Language-Team: Hindi \n" "Language: hi\n" @@ -1070,10 +1070,9 @@ msgid "Connections / Processes" msgstr "कनेक्शन / प्रक्रियाएँ" #: js/messages.php:79 -#, fuzzy #| msgid "Could not save configuration" msgid "Local monitor configuration incompatible" -msgstr "विन्यास सहेज नहीं सकते" +msgstr "स्थानीय जाँच व्यवस्था असंगत" #: js/messages.php:80 msgid "" From ac77fbd590eeb8838cf2f647a6610a251ec61020 Mon Sep 17 00:00:00 2001 From: Andrey Prokopenko Date: Sun, 20 Jan 2013 19:39:45 +0100 Subject: [PATCH 32/85] Translated using Weblate (Ukrainian) Currently translated at 59.8% (1557 of 2602) --- po/uk.po | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/po/uk.po b/po/uk.po index c41b1afe76..2a3e245d9e 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-01-18 14:17+0100\n" -"PO-Revision-Date: 2013-01-20 19:28+0200\n" +"PO-Revision-Date: 2013-01-20 19:39+0200\n" "Last-Translator: Andrey Prokopenko \n" "Language-Team: Ukrainian " "\n" @@ -5999,15 +5999,15 @@ msgstr "Показувати типи полів" #: libraries/config/messages.inc.php:468 msgid "Display the function fields in edit/insert mode" -msgstr "" +msgstr "Відображувати поля функції у режим редагування/вставки" #: libraries/config/messages.inc.php:469 msgid "Show function fields" -msgstr "" +msgstr "Показувати поля функції" #: libraries/config/messages.inc.php:470 msgid "Whether to show hint or not" -msgstr "" +msgstr "Чи показувати підказки" #: libraries/config/messages.inc.php:471 #| msgid "Show grid" @@ -6019,41 +6019,45 @@ 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:473 msgid "Show phpinfo() link" -msgstr "" +msgstr "Показувати посилання phpinfo()" #: libraries/config/messages.inc.php:474 msgid "Show detailed MySQL server information" -msgstr "" +msgstr "Показувати докладну інформацію про сервер MySQL" #: libraries/config/messages.inc.php:475 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" -msgstr "" +msgstr "Визначає, чи мають відображатися SQL запити, що згенеровані PHPMyAdmin" #: libraries/config/messages.inc.php:476 msgid "Show SQL queries" -msgstr "" +msgstr "Показувати SQL-запити" #: libraries/config/messages.inc.php:477 msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" +"Визначає, чи має залишатися вікно запиту на екрані після надсилання запиту" #: libraries/config/messages.inc.php:478 libraries/sql_query_form.lib.php:361 -#, fuzzy #| msgid "Hide query box" msgid "Retain query box" -msgstr "Сховати блок запиту" +msgstr "Залишати вікно запиту" #: libraries/config/messages.inc.php:479 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" +"Дозволити показ статистики бази даних і таблиць (наприклад, використання " +"простору)" #: libraries/config/messages.inc.php:480 msgid "Show statistics" -msgstr "" +msgstr "Показувати статистику" #: libraries/config/messages.inc.php:481 msgid "Display table comments in tooltips" @@ -6066,7 +6070,7 @@ msgstr "" #: libraries/config/messages.inc.php:483 msgid "Skip locked tables" -msgstr "" +msgstr "Пропускати заблоковані таблиці" #: libraries/config/messages.inc.php:488 msgid "Requires SQL Validator to be enabled" From 5edee797e0f1e79335a926a1c11badc76f1755b4 Mon Sep 17 00:00:00 2001 From: Victor Volkov Date: Sun, 20 Jan 2013 19:51:41 +0100 Subject: [PATCH 33/85] Translated using Weblate (Russian) Currently translated at 100.0% (2602 of 2602) --- po/ru.po | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/po/ru.po b/po/ru.po index 0d2fc1daac..67d3c79957 100644 --- a/po/ru.po +++ b/po/ru.po @@ -4,16 +4,16 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-01-18 14:17+0100\n" -"PO-Revision-Date: 2013-01-13 21:07+0200\n" +"PO-Revision-Date: 2013-01-20 19:51+0200\n" "Last-Translator: Victor Volkov \n" -"Language-Team: Russian \n" +"Language-Team: Russian " +"\n" "Language: ru\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" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 1.4-dev\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 @@ -12161,7 +12161,7 @@ msgstr "Сплайн" #: tbl_chart.php:141 msgctxt "Chart type" msgid "Area" -msgstr "" +msgstr "Тип графика" #: tbl_chart.php:144 msgctxt "Chart type" @@ -12169,11 +12169,10 @@ msgid "Pie" msgstr "Круговая" #: tbl_chart.php:148 -#, fuzzy #| msgid "Time" msgctxt "Chart type" msgid "Timeline" -msgstr "Время" +msgstr "Шкала времени" #: tbl_chart.php:155 msgid "Stacked" From a9f129b4aa61a2054a64d8985648fb6a2a7aeae9 Mon Sep 17 00:00:00 2001 From: Dieter Adriaenssens Date: Sun, 20 Jan 2013 22:01:55 +0100 Subject: [PATCH 34/85] Translated using Weblate (Dutch) Currently translated at 100.0% (2602 of 2602) --- po/nl.po | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/po/nl.po b/po/nl.po index d241c1446c..0c7801e69e 100644 --- a/po/nl.po +++ b/po/nl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-01-18 14:17+0100\n" -"PO-Revision-Date: 2013-01-18 15:36+0200\n" +"PO-Revision-Date: 2013-01-20 22:01+0200\n" "Last-Translator: Dieter Adriaenssens \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -3547,7 +3547,7 @@ msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" msgstr "" -"Een oplijsting, geselecteerd uit een lijst met tot 65.535 waarden of de " +"Een opsomming, geselecteerd uit een lijst met tot 65.535 waarden of de " "speciale '' foutwaarde" #: libraries/Types.class.php:356 @@ -3652,7 +3652,7 @@ msgstr "" #: libraries/Types.class.php:738 msgid "An enumeration, chosen from the list of defined values" -msgstr "" +msgstr "Een opsomming, gekozen uit de lijst van gedefiniëerde waarden" #: libraries/Util.class.php:223 #, php-format @@ -3878,7 +3878,7 @@ msgstr "U moet upgraden naar %s %s of hoger." #: libraries/common.inc.php:1042 msgid "Error: Token mismatch" -msgstr "" +msgstr "Fout: token niet hetzelfde" #: libraries/common.inc.php:1086 msgid "GLOBALS overwrite attempt" @@ -3911,11 +3911,11 @@ msgstr "Rechts" #: libraries/config.values.php:69 msgid "Click" -msgstr "" +msgstr "Klik" #: libraries/config.values.php:70 msgid "Double click" -msgstr "" +msgstr "Dubbelklik" #: libraries/config.values.php:71 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:225 libraries/relation.lib.php:98 @@ -5096,7 +5096,7 @@ msgstr "" #: libraries/config/messages.inc.php:287 msgid "Maximum items in branch" -msgstr "" +msgstr "Maximum elementen in tak" #: libraries/config/messages.inc.php:288 msgid "" @@ -5327,7 +5327,7 @@ msgstr "" #: libraries/config/messages.inc.php:335 msgid "Server/library difference warning" -msgstr "" +msgstr "Waarschuwing verschil server/bibliotheek" #: libraries/config/messages.inc.php:337 msgid "Iconic table operations" @@ -5417,7 +5417,7 @@ msgstr "Kopregels herhalen" #: libraries/config/messages.inc.php:358 msgid "Grid editing: trigger action" -msgstr "" +msgstr "Rasterbewerken: trigger actie" #: libraries/config/messages.inc.php:359 msgid "Grid editing: save all edited cells at once" @@ -6368,11 +6368,11 @@ msgstr "Details…" #: libraries/dbi/drizzle-wrappers.lib.php:387 msgid "Can't seek in an unbuffered result set" -msgstr "" +msgstr "Kan niet zoeken in een ongebufferde resultatenreeks" #: libraries/dbi/drizzle-wrappers.lib.php:408 msgid "Can't count rows in an unbuffered result set" -msgstr "" +msgstr "Kan geen rijen tellen in een ongebufferde resultatenreeks" #: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:159 #: libraries/dbi/mysqli.dbi.lib.php:206 @@ -7441,7 +7441,7 @@ msgstr "onbekend" #: libraries/navigation/Navigation.class.php:61 msgid "An error has occured while loading the navigation tree" -msgstr "" +msgstr "Er is een fout opgetreden bij het laden van de navigatieboom" #: libraries/navigation/NavigationHeader.class.php:182 msgid "Home" @@ -7464,8 +7464,8 @@ msgstr "Navigatievenster herladen" #, php-format msgid "%s other result found" msgid_plural "%s other results found" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s ander resultaat gevonden" +msgstr[1] "%s andere resultaten gevonden" #: libraries/navigation/NavigationTree.class.php:1027 msgid "filter databases by name" @@ -7484,12 +7484,12 @@ msgstr "elementen filteren op naam" #: libraries/navigation/NodeFactory.class.php:41 #, php-format msgid "Invalid class name \"%1$s\", using default of \"Node\"" -msgstr "" +msgstr "Ongeldige klassenaam \"%1$s\", \"Node\" zal gebruikt worden" #: libraries/navigation/NodeFactory.class.php:65 #, php-format msgid "Could not include class \"%1$s\", file \"%2$s\" not found" -msgstr "" +msgstr "Klasse \"%1$s\" kon niet ingevoegd worden, bestand \"%2$s' niet gevonden" #: libraries/navigation/Nodes/Node_Column_Container.class.php:26 #: libraries/sql_query_form.lib.php:271 @@ -7769,7 +7769,7 @@ msgstr "Aanmelden" #: libraries/plugins/auth/AuthenticationCookie.class.php:99 msgid "Your session has expired. Please log in again." -msgstr "" +msgstr "Uw sessie is verlopen. Gelieve opnieuw aan te melden." #: libraries/plugins/auth/AuthenticationCookie.class.php:197 #: libraries/plugins/auth/AuthenticationCookie.class.php:207 @@ -8301,7 +8301,7 @@ msgstr "XML" #: libraries/plugins/import/ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." -msgstr "" +msgstr "Meetkundig type '%s' wordt niet ondersteund door MySQL." #: libraries/plugins/transformations/abstract/AppendTransformationsPlugin.class.php:32 msgid "" @@ -9856,7 +9856,7 @@ msgstr "Kolommen verplaatsen" #: libraries/structure.lib.php:1426 msgid "Move the columns by dragging them up and down." -msgstr "" +msgstr "De kolommen verplaatsen door ze omhoog en omlaag te slepen." #: libraries/structure.lib.php:1460 msgid "Edit view" @@ -10057,7 +10057,7 @@ msgstr "Zoals aangegeven:" #: libraries/tbl_columns_definition_form.inc.php:632 msgid "first" -msgstr "" +msgstr "eerste" #: libraries/tbl_columns_definition_form.inc.php:642 #, php-format @@ -10117,7 +10117,7 @@ msgstr "Fout in het ZIP-archief:" #: navigation.php:23 msgid "Fatal error: The navigation can only be accessed via ajax" -msgstr "" +msgstr "Fatale fout: de navigatie is alleen toegankelijk via AJAX" #: pmd_display_field.php:60 pmd_save_pos.php:81 msgid "Modifications have been saved" @@ -10129,11 +10129,11 @@ msgstr "Toon/verberg linker menu" #: pmd_general.php:86 msgid "View in fullscreen" -msgstr "" +msgstr "In volledig scherm bekijken" #: pmd_general.php:90 msgid "Exit fullscreen" -msgstr "" +msgstr "Volledig scherm modus verlaten" #: pmd_general.php:95 msgid "Save position" @@ -12188,7 +12188,7 @@ msgstr "Spline" #: tbl_chart.php:141 msgctxt "Chart type" msgid "Area" -msgstr "" +msgstr "Grafiektype" #: tbl_chart.php:144 msgctxt "Chart type" From 53d771022148a570d8e5252acb9a61d0bae58840 Mon Sep 17 00:00:00 2001 From: Dieter Adriaenssens Date: Mon, 21 Jan 2013 00:34:23 +0100 Subject: [PATCH 35/85] use uppercase for AJAX acronym --- navigation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/navigation.php b/navigation.php index 39b0e8c9eb..4b4b3b36f7 100644 --- a/navigation.php +++ b/navigation.php @@ -20,7 +20,7 @@ if ($response->isAjax()) { } else { $response->addHTML( PMA_Message::error( - __('Fatal error: The navigation can only be accessed via ajax') + __('Fatal error: The navigation can only be accessed via AJAX') ) ); } From 093ecd44c24aa5f163919ccf16dc1d5c85a70695 Mon Sep 17 00:00:00 2001 From: Yogendra Singh Shekhawat Date: Sun, 20 Jan 2013 23:04:11 +0100 Subject: [PATCH 36/85] Translated using Weblate (Hindi) Currently translated at 56.3% (1466 of 2602) --- po/hi.po | 425 +++++++++++++++++++++++++++---------------------------- 1 file changed, 206 insertions(+), 219 deletions(-) diff --git a/po/hi.po b/po/hi.po index 9ca237fb05..9b956b1ee3 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-01-18 14:17+0100\n" -"PO-Revision-Date: 2013-01-20 19:31+0200\n" +"PO-Revision-Date: 2013-01-20 23:04+0200\n" "Last-Translator: Yogendra Singh Shekhawat \n" "Language-Team: Hindi \n" "Language: hi\n" @@ -1081,94 +1081,90 @@ msgid "" "likely that your current configuration will not work anymore. Please reset " "your configuration to default in the Settings menu." msgstr "" +"आपके ब्राउज़र के स्थानीय भण्डार में स्थित चार्ट व्यवस्था और नयी जांच सम्बन्धी " +"व्यवस्था के बीच तारतम्यता नहीं बैठ पा रही है। हो सकता है कि इस सम्बन्ध में " +"आपका वर्तमान प्रारूप अब काम न कर पाए। कृपया, सेटिंग्स मेन्यू में जाकर " +"इसे पुनः डिफ़ॉल्ट पर रिसेट करें।" #: js/messages.php:82 -#, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" -msgstr "क्वेरी कैश" +msgstr "क्वॅरी कैश की कार्यक्षमता" #: js/messages.php:83 -#, fuzzy #| msgid "Query cache" msgid "Query cache usage" -msgstr "क्वेरी कैश" +msgstr "क्वॅरी कैश प्रयोग" #: js/messages.php:84 -#, fuzzy #| msgid "Query cache" msgid "Query cache used" -msgstr "क्वेरी कैश" +msgstr "काम में ली गई क्वॅरी कैश" #: js/messages.php:86 msgid "System CPU Usage" -msgstr "" +msgstr "मशीन सीपीयू उपयोग" #: js/messages.php:87 msgid "System memory" -msgstr "" +msgstr "सिस्टम मेमोरी" #: js/messages.php:88 msgid "System swap" -msgstr "" +msgstr "सिस्टम स्वॅप" #: js/messages.php:90 msgid "Average load" -msgstr "" +msgstr "औसत दबाव" #: js/messages.php:91 -#, fuzzy #| msgid "Total count" msgid "Total memory" -msgstr "कुल गिनती" +msgstr "कुल मॅमरी" #: js/messages.php:92 msgid "Cached memory" -msgstr "" +msgstr "गुप्त एकत्र (cached) मॅमरी" #: js/messages.php:93 -#, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" -msgstr "बफर पूल" +msgstr "बफ़र स्मृति" #: js/messages.php:94 msgid "Free memory" -msgstr "" +msgstr "मुक्त स्मृति" #: js/messages.php:95 msgid "Used memory" -msgstr "" +msgstr "प्रयुक्त स्मृति" #: js/messages.php:97 -#, fuzzy #| msgid "Total" msgid "Total Swap" -msgstr "कुल" +msgstr "कुल स्वॅप" #: js/messages.php:98 msgid "Cached Swap" -msgstr "" +msgstr "एकत्र (cached) स्वॅप" #: js/messages.php:99 msgid "Used Swap" -msgstr "" +msgstr "प्रयुक्त स्वॅप" #: js/messages.php:100 -#, fuzzy #| msgid "Free pages" msgid "Free Swap" -msgstr "मुक्त पृष्ठों" +msgstr "मुक्त स्वॅप" #: js/messages.php:102 msgid "Bytes sent" -msgstr "" +msgstr "बाइट भेजे गए" #: js/messages.php:103 -#, fuzzy #| msgid "Received" msgid "Bytes received" -msgstr "प्राप्त" +msgstr "बाइट प्राप्त हुए" #: js/messages.php:104 server_status.php:212 msgid "Connections" @@ -1181,84 +1177,80 @@ msgstr "प्रक्रियाएँ" #. l10n: shortcuts for Byte #: js/messages.php:108 libraries/Util.class.php:1456 msgid "B" -msgstr "बैट्स" +msgstr "बिट्स" #. l10n: shortcuts for Kilobyte #: js/messages.php:109 libraries/Util.class.php:1458 #: server_status_monitor.php:648 msgid "KiB" -msgstr "KB" +msgstr "किलोबाइट" #. l10n: shortcuts for Megabyte #: js/messages.php:110 libraries/Util.class.php:1460 #: server_status_monitor.php:649 msgid "MiB" -msgstr "MB" +msgstr "मेगाबाइट" #. l10n: shortcuts for Gigabyte #: js/messages.php:111 libraries/Util.class.php:1462 msgid "GiB" -msgstr "GB" +msgstr "गीगाबाइट" #. l10n: shortcuts for Terabyte #: js/messages.php:112 libraries/Util.class.php:1464 msgid "TiB" -msgstr "TB" +msgstr "टॅराबाइट" #. l10n: shortcuts for Petabyte #: js/messages.php:113 libraries/Util.class.php:1466 msgid "PiB" -msgstr "PB" +msgstr "पॅटाबाइट" #. l10n: shortcuts for Exabyte #: js/messages.php:114 libraries/Util.class.php:1468 msgid "EiB" -msgstr "EB" +msgstr "अॅग्जाबाइट" #: js/messages.php:115 -#, fuzzy, php-format +#, php-format #| msgid "%s table" #| msgid_plural "%s tables" msgid "%d table(s)" -msgstr " %s टेबलें" +msgstr "%d टेबल" #. l10n: Questions is the name of a MySQL Status variable #: js/messages.php:118 -#, fuzzy #| msgid "Versions" msgid "Questions" -msgstr "संस्करण" +msgstr "प्रश्न" #: js/messages.php:119 server_status.php:136 msgid "Traffic" -msgstr "ट्रैफ़िक" +msgstr "व्यस्तता" #: js/messages.php:120 libraries/Menu.class.php:486 #: server_status_monitor.php:475 -#, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "सेटिंग्स" #: js/messages.php:121 -#, fuzzy #| msgid "Remove database" msgid "Remove chart" -msgstr "डेटाबेस को हटा दे" +msgstr "चार्ट हटाएँ" #: js/messages.php:122 msgid "Edit title and labels" -msgstr "" +msgstr "शीर्षक व लेबल सम्पादित करें" #: js/messages.php:123 -#, fuzzy #| msgid "Snap to grid" msgid "Add chart to grid" -msgstr "ग्रिड पर स्नैप" +msgstr "चार्ट को जाली (grid) पर लगाएँ" #: js/messages.php:125 msgid "Please add at least one variable to the series" -msgstr "" +msgstr "कृपया, श्रृंखला में कम से कम एक चर (variable) ज़रूर जोड़ें" #: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 @@ -1268,39 +1260,43 @@ msgstr "" #: libraries/tbl_columns_definition_form.inc.php:681 pmd_general.php:559 #: server_status.php:472 server_status_monitor.php:667 msgid "None" -msgstr "कोई नहीं" +msgstr "कुछ नहीं" #: js/messages.php:127 msgid "Resume monitor" -msgstr "" +msgstr "देखभाल व्यवस्था को पुनः शुरू करें" #: js/messages.php:128 msgid "Pause monitor" -msgstr "" +msgstr "देखभाल व्यवस्था को एक बार यथास्थिति (pause) रोकें" #: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "" +"सामान्य पञ्जिका (general_log) तथा धीमी क्वॅरी पञ्जिका (slow_query_log) समर्थ " +"किये गए" #: js/messages.php:131 msgid "general_log is enabled." -msgstr "" +msgstr "सामान्य पञ्जिका (general_log) को समर्थ किया गया" #: js/messages.php:132 msgid "slow_query_log is enabled." -msgstr "" +msgstr "धीमी क्वॅरी पञ्जिका (slow_query_log) को समर्थ किया गया" #: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "" +"धीमी क्वॅरी पञ्जिका (slow_query_log) तथा सामान्य पञ्जिका (general_log) को " +"निष्क्रिय किया गया।" #: js/messages.php:134 msgid "log_output is not set to TABLE." -msgstr "" +msgstr "टेबल पर पंजिका परिणाम (log_output) सेट नहीं है।" #: js/messages.php:135 msgid "log_output is set to TABLE." -msgstr "" +msgstr "टेबल पंजिका परिणाम (log_output) के साथ सेट है" #: js/messages.php:136 #, php-format @@ -1309,108 +1305,110 @@ msgid "" "than %d seconds. It is advisable to set this long_query_time 0-2 seconds, " "depending on your system." msgstr "" +"यद्यपि धीमी_क्वॅरी_पंजिका (slow_query_log) समर्थ है, परन्तु सर्वर उन्हीं " +"क्वॅरीज को पंजिका में सूचीबद्ध करता है जो %d सेकण्ड्स से ज्यादा समय लेती " +"हैं। अतः आपको सलाह दी जाती है कि सिस्टम के अनुरूप अधिक_क्वॅरी_समय " +"(long_query_time) को 0-2 सेकण्ड्स पर सेट कर लें।" #: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." -msgstr "" +msgstr "अधिक_क्वॅरी_समय (long_query_time) को %d सेकण्ड्स पर सेट किया गया।" #: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" +"सर्वर के दुबारा चालू होने पर अग्रवर्णित व्यवस्थाएं समूचे तंत्र में एक साथ " +"लागू होंगी और पुनः डिफ़ॉल्ट पर सेट हो जाएँगी" #. l10n: %s is FILE or TABLE #: js/messages.php:140 -#, fuzzy, php-format +#, php-format #| msgid "Save output to a file" msgid "Set log_output to %s" -msgstr "उत्पादन को फाईल मे सेव करें" +msgstr "पंजिका परिणाम (log_output) को %s पर सेट करें" #. l10n: Enable in this context means setting a status variable to ON #: js/messages.php:142 -#, 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:144 -#, fuzzy, php-format +#, php-format #| msgid "Disabled" msgid "Disable %s" -msgstr "अक्षम" +msgstr "%s निष्क्रिय करें" #. l10n: %d seconds #: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" -msgstr "" +msgstr "अधिक_समय_क्वॅरी (long_query_time) को %ds पर सेट करें" #: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" +"आप इन चरों (variables) को बदलने की स्थिति में नहीं है। कृपया मूल (root) " +"प्रयोक्ता के बतौर लोग इन करें या अपने डॅटाबेस प्रबंधक से संपर्क करें।" #: js/messages.php:148 -#, fuzzy #| msgid "General relation features" msgid "Change settings" -msgstr "सेटिंग्स प्रबंधक" +msgstr "सेटिंग्स बदलें" #: js/messages.php:149 -#, fuzzy #| msgid "General relation features" msgid "Current settings" -msgstr "अधिक सेटिंग्स" +msgstr "वर्तमान सेटिंग्स" #: js/messages.php:151 server_status_monitor.php:608 -#, fuzzy #| msgid "Default title" msgid "Chart Title" -msgstr "डिफ़ॉल्ट शीर्षक" +msgstr "चार्ट शीर्षक" #. l10n: As in differential values #: js/messages.php:153 -#, fuzzy #| msgid "Difference" msgid "Differential" -msgstr "अंतर" +msgstr "अवकलित" #: js/messages.php:154 #, php-format msgid "Divided by %s" -msgstr "" +msgstr "%s से विभाजित" #: js/messages.php:155 msgid "Unit" -msgstr "" +msgstr "इकाई" #: js/messages.php:157 msgid "From slow log" -msgstr "" +msgstr "धीमी पंजिका (slow log) से" #: js/messages.php:158 msgid "From general log" -msgstr "" +msgstr "सामान्य पंजिका (general_log) से" #: js/messages.php:159 -#, fuzzy #| msgid "Loading" msgid "Analysing logs" -msgstr "लोड हो रहा है" +msgstr "पंजिका (log) छान-बीन ज़ारी" #: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." -msgstr "" +msgstr "पंजिका की छान-बीन और लोडिंग हो रही है। इसमें थोड़ा वक्त लग सकता है।" #: js/messages.php:161 -#, fuzzy #| msgid "Read requests" msgid "Cancel request" -msgstr "पढने का अनुरोध" +msgstr "अनुरोध रद्द करें" #: js/messages.php:162 msgid "" @@ -1418,6 +1416,9 @@ msgid "" "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" +"इस कॉलम में उन्हीं क्वॅरीज को एकत्रित किया गया है जो एक जैसी हैं। तथापि इनको " +"एकत्र करने का मापदण्ड इनका SQL पाठ्य ही है अतः क्वॅरीज के अन्य गुणधर्म जैसे " +"शुरुआत का समय आदि भिन्न मान लिए हो सकते हैं।" #: js/messages.php:163 msgid "" @@ -1425,26 +1426,29 @@ msgid "" "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" +"चूँकि INSERT क्वॅरीज के एकत्रीकरण (grouping) का को चुना गया है, सो एक ही " +"टेबल में की गयी INSERT क्वॅरीज को भी एकत्रित (group) किया गया है। टेबल में " +"डाले (insert) गए डॅटा से इसका कोई सम्बन्ध नहीं है।" #: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" -msgstr "" +msgstr "पंजिका जानकारी लोड हो चुकी है। क्वॅरीज क्रियान्वन में लगा समय:" #: js/messages.php:166 -#, fuzzy #| msgid "Jump to database" msgid "Jump to Log table" -msgstr "डेटाबेस को कूद" +msgstr "सीधे पंजिका टेबल (log table) पर जाएँ" #: js/messages.php:167 -#, fuzzy #| msgid "No databases" msgid "No data found" -msgstr "कोइ डाटाबेस नहिं" +msgstr "कोई डॅटा नहीं पाया गया" #: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" +"पंजिका (log) की छान-बीन की गयी, परन्तु इस समय अन्तराल विशेष में कोई डॅटा " +"नहीं पाया गया।" #: js/messages.php:170 #, fuzzy @@ -1453,10 +1457,9 @@ msgid "Analyzing…" msgstr "विश्लेषण" #: js/messages.php:171 -#, fuzzy #| msgid "Explain SQL" msgid "Explain output" -msgstr "SQL की व्याख्या " +msgstr "परिणाम को समझाएँ" #: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 @@ -1467,67 +1470,61 @@ msgid "Time" msgstr "समय" #: js/messages.php:174 -#, fuzzy #| msgid "Total" msgid "Total time:" -msgstr "कुल" +msgstr "कुल समय:" #: js/messages.php:175 -#, fuzzy #| msgid "Profiling" msgid "Profiling results" -msgstr "रूपरेखा" +msgstr "परिणाम का रूपरेखा बन रही है" #: js/messages.php:176 -#, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" -msgstr "टेबल " +msgstr "टेबल" #: js/messages.php:177 -#, fuzzy #| msgid "Charset" msgid "Chart" -msgstr "कोई" +msgstr "चार्ट" #: js/messages.php:178 -#, fuzzy #| msgid "Add index" msgid "Edit chart" -msgstr "अनुक्रमणिका जोड़" +msgstr "चार्ट सम्पादित करें" #: js/messages.php:179 -#, fuzzy #| msgid "SQL queries" msgid "Series" -msgstr "SQL क्वरी" +msgstr "श्रृंखला" #. l10n: A collection of available filters #: js/messages.php:182 -#, fuzzy #| msgid "Tables display options" msgid "Log table filter options" -msgstr "टेबल प्रदर्शन विकल्प" +msgstr "पंजिका (log) टेबल फ़िल्टर विकल्प" #. l10n: Filter as in "Start Filtering" #: js/messages.php:184 msgid "Filter" -msgstr "" +msgstr "फ़िल्टर" #: js/messages.php:185 msgid "Filter queries by word/regexp:" -msgstr "" +msgstr "क्वॅरीज को शब्द / रेग्युलर एक्सप्रेशन के जरिये फ़िल्टर करें:" #: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" +"WHERE कथन में चर (variable) डॅटा को बिना शामिल किये, क्वॅरीज को एकत्र " +"(group) करें" #: js/messages.php:187 -#, fuzzy #| msgid "Number of inserted rows" msgid "Sum of grouped rows:" -msgstr "डाली गयी पक्न्तियों" +msgstr "एकत्र (group) पंक्तियों का योग:" #: js/messages.php:188 #, fuzzy @@ -1536,14 +1533,13 @@ msgid "Total:" msgstr "कुल" #: js/messages.php:190 -#, fuzzy #| msgid "Loading" msgid "Loading logs" -msgstr "लोड हो रहा है" +msgstr "पंजिका (log) को लोड किया जा रह है" #: js/messages.php:191 msgid "Monitor refresh failed" -msgstr "" +msgstr "देख-रेख तंत्र असफल रहा" #: js/messages.php:192 msgid "" @@ -1551,20 +1547,24 @@ msgid "" "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" +"आपके नवीन चार्ट डॅटा के अनुरोध को सर्वर ने अमान्य करार दिया है। शायद आपके " +"सेशन की अवधि समाप्त हो गयी हो। समाधान के लिए पेज रीलोड करें और अपने परिचय " +"सम्बन्धी जानकारी फिर से डालकर देखें।" #: js/messages.php:193 -#, fuzzy #| msgid "Reload" msgid "Reload page" -msgstr "पुनः लोड" +msgstr "पृष्ठ पुनः लोड करें" #: js/messages.php:195 msgid "Affected rows:" -msgstr "" +msgstr "प्रभावित पंक्तियाँ:" #: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" +"कॉन्फिग फ़ाईल की को पढ़ पाने असमर्थ। ऐसा प्रतीत होता है कि इसमें मानक JSON कोड " +"नहीं है।" #: js/messages.php:198 msgid "" @@ -1577,63 +1577,57 @@ msgstr "" #: prefs_manage.php:232 server_status_monitor.php:530 #: setup/frames/menu.inc.php:21 msgid "Import" -msgstr "आयात" +msgstr "आयात करें" #: js/messages.php:200 -#, fuzzy #| msgid "Could not import configuration" msgid "Import monitor configuration" -msgstr "विन्यास आयात नहीं किया जा सका" +msgstr "देख-रेख (import) विन्यास (configuration) आयात करें" #: js/messages.php:201 -#, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import" -msgstr "कृपया प्राथमिक कुंजी या एक अद्वितीय कुंजी का चयन करें" +msgstr "जिस फाईल को आयात करना चाहते हैं, उसे चुनें:" #: js/messages.php:203 -#, fuzzy #| msgid "Update Query" msgid "Analyse Query" -msgstr "क्वरी का नवीनीकरण करें" +msgstr "क्वॅरी का विश्लेष्ण करें" #: js/messages.php:207 msgid "Advisor system" -msgstr "" +msgstr "परामर्श व्यवस्था" #: js/messages.php:208 msgid "Possible performance issues" -msgstr "" +msgstr "कार्यक्षमता के सन्दर्भ में संभावित मुद्दे" #: js/messages.php:209 msgid "Issue" -msgstr "" +msgstr "मसला" #: js/messages.php:210 -#, fuzzy #| msgid "Documentation" msgid "Recommendation" -msgstr "डोक्युमेंटेशन" +msgstr "अनुशंसायें" #: js/messages.php:211 -#, fuzzy #| msgid "Details…" msgid "Rule details" -msgstr "विवरण…" +msgstr "नियमों का विवरण" #: js/messages.php:212 -#, fuzzy #| msgid "Authentication" msgid "Justification" -msgstr "प्रमाणीकरण" +msgstr "औचित्यकरण" #: js/messages.php:213 msgid "Used variable / formula" -msgstr "" +msgstr "प्रयुक्त चर (variable) / सूत्र (formula)" #: js/messages.php:214 msgid "Test" -msgstr "" +msgstr "जाँच" #: js/messages.php:219 pmd_general.php:437 pmd_general.php:474 #: pmd_general.php:594 pmd_general.php:642 pmd_general.php:718 @@ -1649,11 +1643,11 @@ msgstr "लोड हो रहा है" #: js/messages.php:223 msgid "Processing Request" -msgstr "याचिका प्रसंस्करण" +msgstr "अनुरोध क्रियान्वित हो रहा है" #: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" -msgstr "याचिका प्रसंस्करणमें त्रुटि" +msgstr "अनुरोध क्रियान्वन में दिक्कत" #: js/messages.php:225 #, php-format @@ -1672,11 +1666,11 @@ msgstr "कोइ डाटाबेस नहीं चुना गया ह #: js/messages.php:228 msgid "Dropping Column" -msgstr "काँलम गिराना" +msgstr "कॉलम को हटाया जाना" #: js/messages.php:229 msgid "Adding Primary Key" -msgstr "प्राथमिक कुंजी जोड़" +msgstr "प्राथमिक कुञ्जी जोड़ना" #: js/messages.php:230 pmd_general.php:435 pmd_general.php:592 #: pmd_general.php:640 pmd_general.php:716 pmd_general.php:770 @@ -1686,45 +1680,42 @@ msgstr "ठीक है" #: js/messages.php:231 msgid "Click to dismiss this notification" -msgstr "" +msgstr "इस सूचना को खारिज़ करने के लिए क्लिक करें" #: js/messages.php:234 msgid "Renaming Databases" -msgstr "डेटाबेस का नाम बदल कर ____ रखें" +msgstr "डॅटाबेसों का पुनर्नामकारण" #: js/messages.php:235 msgid "Reload Database" -msgstr "डेटाबेस पुनः लोड" +msgstr "डॅटाबेस पुनः लोड करें" #: js/messages.php:236 msgid "Copying Database" -msgstr "डेटाबेस को ______ में कॉपी करें" +msgstr "डॅटाबेस प्रतिलिपिकरण" #: js/messages.php:237 msgid "Changing Charset" -msgstr "वर्ण सेट बदलें" +msgstr "वर्ण समूह बदलाव" #: js/messages.php:238 msgid "Table must have at least one column" -msgstr "टेबल में कम से कम एक काँलम होना आवश्यक है" +msgstr "टेबल में कम से कम एक कॉलम होना आवश्यक है" #: js/messages.php:243 -#, fuzzy #| msgid "Use Tables" msgid "Insert Table" -msgstr "टेबल का उपयोग करो" +msgstr "टेबल डालें" #: js/messages.php:244 -#, fuzzy #| msgid "Add index" msgid "Hide indexes" -msgstr "अनुक्रमणिका जोड़" +msgstr "अनुक्रमणिकायें छिपाएँ" #: js/messages.php:245 -#, fuzzy #| msgid "Show grid" msgid "Show indexes" -msgstr "ग्रिड दिखाओ" +msgstr "अनुक्रमणिकायें दिखाएँ" #: js/messages.php:246 libraries/mult_submits.inc.php:327 #, fuzzy @@ -1746,35 +1737,32 @@ msgstr "अक्षम" #: js/messages.php:251 msgid "Searching" -msgstr "खोजें" +msgstr "ख़ोज" #: js/messages.php:252 -#, fuzzy #| msgid "Hide search criteria" msgid "Hide search results" -msgstr "खोज मापदंड छिपाना" +msgstr "खोज परिणाम छिपाएँ" #: js/messages.php:253 -#, fuzzy #| msgid "Show search criteria" msgid "Show search results" -msgstr "खोज मापदंड दिखाना" +msgstr "खोज परिणाम दिखाएँ" #: js/messages.php:254 -#, fuzzy #| msgid "Browse" msgid "Browsing" -msgstr "ब्राउज़" +msgstr "ब्राउज़िंग" #: js/messages.php:255 -#, fuzzy #| msgid "Delete" msgid "Deleting" -msgstr "मिटाएँ" +msgstr "मिटाना" #: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" +"एक संगृहीत फंक्शन की परिभाषा (definition) में RETURN कथन होना आवश्यक है!" #: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" @@ -1797,45 +1785,45 @@ msgid "Enter each value in a separate field" msgstr "हर एक मान अलग क्षेत्र में दर्ज करें" #: js/messages.php:265 -#, fuzzy, php-format +#, php-format #| msgid "Add a new User" msgid "Add %d value(s)" -msgstr "नयी वलुए जोडें" +msgstr "%d मान जोड़ें" #: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" +"सूचना: यदि फ़ाईल में एक से अधिक टेबलें हैं तो वे एक में ही संगठित की जाएँगी" #: js/messages.php:271 msgid "Hide query box" -msgstr "क्वरी बॉक्स छुपा" +msgstr "क्वॅरी बॉक्स छिपाएँ" #: js/messages.php:272 msgid "Show query box" -msgstr "क्वेरी बॉक्स दिखाएँ" +msgstr "क्वॅरी बॉक्स दिखाएँ" #: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" -msgstr "कोई चयनित रो नहीं" +msgstr "कोई पंक्ति चयनित नहीं" #: js/messages.php:275 libraries/DisplayResults.class.php:5067 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2070 #: querywindow.php:85 msgid "Change" -msgstr "बदलिये" +msgstr "बदलें" #: js/messages.php:276 -#, fuzzy #| msgid "Maximum execution time" msgid "Query execution time" -msgstr "अधिकतम निष्पादन समय" +msgstr "क्वॅरी क्रियान्वन में लगा समय" #: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." -msgstr "%d वैध रो संख्या नहीं है" +msgstr "%d एक वैध पंक्ति संख्या नहीं है" #: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1462 @@ -1844,33 +1832,32 @@ msgstr "%d वैध रो संख्या नहीं है" #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246 #: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519 msgid "Save" -msgstr "बचाना" +msgstr "सुरक्षित करें" #: js/messages.php:283 msgid "Hide search criteria" -msgstr "खोज मापदंड छिपाना" +msgstr "ख़ोज मापदंड छिपाएँ" #: js/messages.php:284 msgid "Show search criteria" -msgstr "खोज मापदंड दिखाना" +msgstr "खोज मापदंड दिखाएँ" #: js/messages.php:287 libraries/TableSearch.class.php:210 -#, fuzzy #| msgid "Search" msgid "Zoom Search" -msgstr "ढूंढें" +msgstr "ज़ूम ख़ोज" #: js/messages.php:289 msgid "Each point represents a data row." -msgstr "" +msgstr "प्रत्येक बिन्दु एक डॅटा पंक्ति को बताता है।" #: js/messages.php:291 msgid "Hovering over a point will show its label." -msgstr "" +msgstr "लेबल देखने के लिए कर्सर बिन्दु के ऊपर लेकर जाएँ।" #: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." -msgstr "" +msgstr "और बारीकी से देखने के लिए पुरे क्षेत्र का कोई भाग माउस से सेलेक्ट करें।" #: js/messages.php:295 msgid "Click reset zoom button to come back to original state." @@ -1878,56 +1865,54 @@ msgstr "" #: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." -msgstr "" +msgstr "पंक्ति को देखने और संभावित सम्पादन के लिए डॅटा बिन्दु पर क्लिक करें।" #: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" +"दायीं तरफ नीचे के कोने के साथ पॉइंटर घसीटने पर क्षेत्र के अकार को बदला जा " +"सकता है।" #: js/messages.php:301 -#, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" -msgstr "कोलम जोडें/हटायें" +msgstr "दो कॉलम चुने" #: js/messages.php:302 msgid "Select two different columns" -msgstr "" +msgstr "दो भिन्न कॉलम चुनें" #: js/messages.php:303 -#, fuzzy #| msgid "SQL result" msgid "Query results" -msgstr "SQLपरिणाम" +msgstr "क्वॅरी परिणाम" #: js/messages.php:304 -#, fuzzy #| msgid "Data pointer size" msgid "Data point content" -msgstr "सूचक का आकार डेटा" +msgstr "डॅटा बिन्दु सामग्री" #: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:269 #: tbl_indexes.php:307 msgid "Ignore" -msgstr "ध्यान न देना" +msgstr "उपेक्षा करें" #: js/messages.php:308 libraries/DisplayResults.class.php:3316 msgid "Copy" -msgstr "अनुकृति" +msgstr "प्रतिलिपि करें" #: js/messages.php:323 -#, fuzzy #| msgid "Add column" msgid "Add columns" -msgstr "नया काँलम जोडें" +msgstr "नए कॉलम जोडें" #: js/messages.php:326 msgid "Select referenced key" -msgstr "संदर्भित कुंजी का चयन करें." +msgstr "संदर्भ कुंजी का चयन करें" #: js/messages.php:327 msgid "Select Foreign Key" -msgstr "विदेश कुंजी का चयन करें." +msgstr "परदेशी कुंजी का चयन करें" #: js/messages.php:328 msgid "Please select the primary key or a unique key" @@ -1935,17 +1920,19 @@ msgstr "कृपया प्राथमिक कुंजी या एक #: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" -msgstr "प्रदर्शित करने के लिए काँलम चयन करें." +msgstr "प्रदर्शित करने के लिए काँलम चुनें" #: js/messages.php:330 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" +"आपने प्रदर्शन में बदलावों को सुरक्षित नहीं किया है। ये बदलाव खो जायेंगे यदि " +"आपने सुरक्षित नहीं किया। क्या आप ज़ारी रखना चाहेंगे?" #: js/messages.php:333 msgid "Add an option for column " -msgstr "काँलम के लिए एक विकल्प जोड़ें " +msgstr "कॉलम के लिए एक विकल्प जोड़ें " #: js/messages.php:334 #, php-format @@ -1954,27 +1941,28 @@ msgstr "" #: js/messages.php:337 msgid "Press escape to cancel editing" -msgstr "" +msgstr "सम्पादन को रद्द करने के लिए एस्केप दबाएँ" #: js/messages.php:338 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" +"आपने कुछ डॅटा को सम्पादित किया है पर सुरक्षित नहीं किया है। क्या आप उन्हें " +"बिना सुरक्षित किये आगे बढ़ना चाहेंगे?" #: js/messages.php:339 msgid "Drag to reorder" -msgstr "" +msgstr "पुनः व्यवस्थित करने के लिए घसीटें" #: js/messages.php:340 -#, fuzzy #| msgid "Click to select" msgid "Click to sort" -msgstr "चयन करने के लिए क्लिक करें." +msgstr "क्रमानुसार करने के लिए क्लिक करें" #: js/messages.php:341 msgid "Click to mark/unmark" -msgstr "" +msgstr "चिन्हित / अचिन्हित करने के लिए क्लिक करें" #: js/messages.php:342 msgid "Double-click to copy column name" @@ -1982,13 +1970,16 @@ msgstr "" #: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" -msgstr "" +msgstr "कॉलम को दिखने / छुपाने के लिए
ड्रॉप-डाउन तीर पर क्लिक करें" #: js/messages.php:345 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" +"इस टेबल में कोई भी विशिष्ट (unique) कॉलम नहीं है। इस बात कि सम्भावना है कि " +"ग्रिड सम्पादन, टिक-बॉक्स, सम्पादन, प्रतिलिपि एवं मिटाने के लिंक से जुडी " +"सुविधाएँ काम न करें।" #: js/messages.php:350 msgid "You can also edit most values
by double-clicking directly on them." @@ -1999,10 +1990,9 @@ msgid "You can also edit most values
by clicking directly on them." msgstr "" #: js/messages.php:358 -#, fuzzy #| msgid "Go to view" msgid "Go to link" -msgstr "दृश्य पर जायें" +msgstr "लिंक पर जाएँ" #: js/messages.php:359 #, fuzzy @@ -2022,15 +2012,15 @@ msgstr "अद्यतन रोयाँ" #: js/messages.php:364 msgid "Generate password" -msgstr "पासव्रड उत्पन्न करें" +msgstr "नया पासवर्ड उत्पन्न करें" #: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" -msgstr "उत्पन्न" +msgstr "उत्पन्न करें" #: js/messages.php:366 msgid "Change Password" -msgstr "पासवर्ड बदलिये" +msgstr "पासवर्ड बदलें" #: js/messages.php:369 msgid "More" @@ -2058,33 +2048,31 @@ msgid "" "A newer version of phpMyAdmin is available and you should consider " "upgrading. The newest version is %s, released on %s." msgstr "" -"phpMyAdmin का एक नया संस्करण उपलब्ध है, यह नया संस्करण %s है,और यह %s को प्रकाशित हुआ" +"phpMyAdmin का नवीन संस्करण उपलब्ध है। नया संस्करण %s है जो कि %s को प्रकाशित " +"हुआ है।" #. l10n: Latest available phpMyAdmin version #: js/messages.php:381 msgid ", latest stable version:" -msgstr ", नवीनतम स्थिर संस्करण:" +msgstr "नवीनतम स्थिर संस्करण:" #: js/messages.php:382 -#, fuzzy #| msgid "Jump to database" msgid "up to date" -msgstr "डेटाबेस को कूद" +msgstr "अद्यतन" #. l10n: Display text for calendar close link #: js/messages.php:401 msgid "Done" -msgstr "किया" +msgstr "हो गया" #: js/messages.php:405 -#, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "पिछला" #: js/messages.php:410 -#, fuzzy #| msgid "Next" msgctxt "Next month" msgid "Next" @@ -2214,7 +2202,7 @@ msgstr "सोमवार" #: js/messages.php:465 msgid "Tuesday" -msgstr "मन्गलवार" +msgstr "मंगलवार" #: js/messages.php:466 msgid "Wednesday" @@ -2248,7 +2236,7 @@ msgstr "सोमवार" #. l10n: Short week day name #: js/messages.php:480 libraries/Util.class.php:1696 msgid "Tue" -msgstr "मन्गलवार" +msgstr "मंगलवार" #. l10n: Short week day name #: js/messages.php:482 libraries/Util.class.php:1698 @@ -2273,55 +2261,54 @@ msgstr "शनिवार" #. l10n: Minimal week day name #: js/messages.php:495 msgid "Su" -msgstr "रविवार" +msgstr "रवि" #. l10n: Minimal week day name #: js/messages.php:497 msgid "Mo" -msgstr "सोमवार" +msgstr "सोम" #. l10n: Minimal week day name #: js/messages.php:499 msgid "Tu" -msgstr "मन्गलवार" +msgstr "मंगल" #. l10n: Minimal week day name #: js/messages.php:501 msgid "We" -msgstr "बुधवार" +msgstr "बुध" #. l10n: Minimal week day name #: js/messages.php:503 msgid "Th" -msgstr "गुरुवार" +msgstr "गुरु" #. l10n: Minimal week day name #: js/messages.php:505 msgid "Fr" -msgstr "शुक्रवार" +msgstr "शुक्र" #. l10n: Minimal week day name #: js/messages.php:507 msgid "Sa" -msgstr "शनिवार" +msgstr "शनि" #. l10n: Column header for week of the year in calendar #: js/messages.php:511 msgid "Wk" -msgstr "हफ्ता" +msgstr "सप्ताह" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". #: js/messages.php:514 msgid "calendar-month-year" -msgstr "" +msgstr "कैलेण्डर-माह-वर्ष" #. l10n: Year suffix for calendar, "none" is empty. #: js/messages.php:516 -#, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" -msgstr "कोई नहीं" +msgstr "कुछ नहीं" #: js/messages.php:525 msgid "Hour" @@ -2333,7 +2320,7 @@ msgstr "मिनट" #: js/messages.php:527 msgid "Second" -msgstr "सेकंड" +msgstr "सेकण्ड" #: libraries/Advisor.class.php:77 #, php-format @@ -2393,11 +2380,11 @@ msgstr "प्रति मिनट" #: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 #: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" -msgstr "प्रति घंटे" +msgstr "प्रति घंटा" #: libraries/Advisor.class.php:459 msgid "per day" -msgstr "" +msgstr "प्रतिदिन" #: libraries/Config.class.php:1063 #, php-format From 70846f1da0e5b770fddb7482cb62e4a0af0799fd Mon Sep 17 00:00:00 2001 From: Andrey Prokopenko Date: Sun, 20 Jan 2013 19:51:32 +0100 Subject: [PATCH 37/85] Translated using Weblate (Ukrainian) Currently translated at 60.0% (1561 of 2602) --- po/uk.po | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/po/uk.po b/po/uk.po index 2a3e245d9e..ee911b36d8 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-01-18 14:17+0100\n" -"PO-Revision-Date: 2013-01-20 19:39+0200\n" +"PO-Revision-Date: 2013-01-20 19:51+0200\n" "Last-Translator: Andrey Prokopenko \n" "Language-Team: Ukrainian " "\n" @@ -6074,7 +6074,7 @@ msgstr "Пропускати заблоковані таблиці" #: libraries/config/messages.inc.php:488 msgid "Requires SQL Validator to be enabled" -msgstr "" +msgstr "Має бути увімкнений SQL валідатор" #: libraries/config/messages.inc.php:490 #: libraries/display_change_password.lib.php:61 @@ -6093,10 +6093,12 @@ msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" +"[strong]УВАГА:[/strong] має бути встановлено розширення PHP SOAP або PEAR " +"SOAP" #: libraries/config/messages.inc.php:492 msgid "Enable SQL Validator" -msgstr "" +msgstr "Увімкнути SQL валідатор" #: libraries/config/messages.inc.php:493 msgid "" @@ -6107,7 +6109,7 @@ msgstr "" #: libraries/config/messages.inc.php:494 tbl_tracking.php:555 #: tbl_tracking.php:617 msgid "Username" -msgstr "" +msgstr "Ім'я користувача" #: libraries/config/messages.inc.php:495 msgid "A warning is displayed on the main page if Suhosin is detected" From 393e8cdc0a398d3c66138fc7c150277744c5f258 Mon Sep 17 00:00:00 2001 From: Dieter Adriaenssens Date: Mon, 21 Jan 2013 01:00:45 +0100 Subject: [PATCH 38/85] Update po files --- po/af.po | 68 ++++++++--------- po/ar.po | 68 ++++++++--------- po/az.po | 68 ++++++++--------- po/be.po | 68 ++++++++--------- po/be@latin.po | 68 ++++++++--------- po/bg.po | 70 +++++++++-------- po/bn.po | 68 ++++++++--------- po/br.po | 61 +++++++-------- po/bs.po | 68 ++++++++--------- po/ca.po | 70 +++++++++-------- po/ckb.po | 61 +++++++-------- po/cs.po | 73 +++++++++--------- po/cy.po | 68 ++++++++--------- po/da.po | 72 +++++++++--------- po/de.po | 72 +++++++++--------- po/el.po | 73 +++++++++--------- po/en_GB.po | 72 +++++++++--------- po/es.po | 77 ++++++++++--------- po/et.po | 70 +++++++++-------- po/eu.po | 68 ++++++++--------- po/fa.po | 68 ++++++++--------- po/fi.po | 75 +++++++++---------- po/fr.po | 77 ++++++++++--------- po/gl.po | 70 +++++++++-------- po/he.po | 68 ++++++++--------- po/hi.po | 83 +++++++++----------- po/hr.po | 74 +++++++++--------- po/hu.po | 70 +++++++++-------- po/hy.po | 61 +++++++-------- po/id.po | 70 +++++++++-------- po/it.po | 70 +++++++++-------- po/ja.po | 70 +++++++++-------- po/ka.po | 68 ++++++++--------- po/kk.po | 61 +++++++-------- po/ko.po | 77 +++++++++---------- po/lt.po | 70 +++++++++-------- po/lv.po | 68 ++++++++--------- po/mk.po | 68 ++++++++--------- po/ml.po | 61 +++++++-------- po/mn.po | 68 ++++++++--------- po/ms.po | 68 ++++++++--------- po/nb.po | 68 ++++++++--------- po/nl.po | 83 ++++++++++---------- po/pa.po | 61 +++++++-------- po/phpmyadmin.pot | 61 +++++++-------- po/pl.po | 70 +++++++++-------- po/pt.po | 68 ++++++++--------- po/pt_BR.po | 72 +++++++++--------- po/ro.po | 147 +++++++++++++++--------------------- po/ru.po | 81 ++++++++++---------- po/si.po | 187 +++++++++++++++------------------------------- po/sk.po | 64 +++++++--------- po/sl.po | 72 +++++++++--------- po/sq.po | 68 ++++++++--------- po/sr.po | 68 ++++++++--------- po/sr@latin.po | 64 +++++++--------- po/sv.po | 70 +++++++++-------- po/ta.po | 70 +++++++++-------- po/te.po | 67 ++++++++--------- po/th.po | 64 +++++++--------- po/tk.po | 61 +++++++-------- po/tr.po | 77 ++++++++++--------- po/tt.po | 68 ++++++++--------- po/ug.po | 68 ++++++++--------- po/uk.po | 181 +++++++++++--------------------------------- po/ur.po | 68 ++++++++--------- po/uz.po | 68 ++++++++--------- po/uz@latin.po | 68 ++++++++--------- po/zh_CN.po | 70 +++++++++-------- po/zh_TW.po | 74 +++++++++--------- 70 files changed, 2301 insertions(+), 2855 deletions(-) diff --git a/po/af.po b/po/af.po index f3863f3ac5..648c74db0c 100644 --- a/po/af.po +++ b/po/af.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2012-05-17 15:17+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: afrikaans \n" @@ -547,7 +547,7 @@ msgstr "Export" msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:140 tbl_gis_visualization.php:173 +#: gis_data_editor.php:140 tbl_gis_visualization.php:152 msgid "Use OpenStreetMaps as Base Layer" msgstr "" @@ -746,7 +746,7 @@ msgid "Database server" msgstr "databasisse" #: index.php:230 libraries/Menu.class.php:150 -#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655 #: libraries/config/messages.inc.php:506 msgid "Server" msgstr "" @@ -1808,7 +1808,7 @@ msgstr "" #: libraries/schema/User_Schema.class.php:375 #: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246 -#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519 +#: tbl_indexes.php:334 tbl_relation.php:519 msgid "Save" msgstr "Stoor" @@ -3925,22 +3925,22 @@ msgstr "" msgid "Check Privileges" msgstr "Geen Regte" -#: libraries/common.inc.php:577 +#: libraries/common.inc.php:579 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:579 +#: libraries/common.inc.php:581 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:586 +#: libraries/common.inc.php:588 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:593 +#: libraries/common.inc.php:595 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3952,38 +3952,38 @@ msgstr "" "Die $cfg['PmaAbsoluteUri'] veranderlike MOET gestel wees in jou " "konfigurasie leer!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "" @@ -4425,7 +4425,7 @@ msgid "Character set of the file" msgstr "Karakterstel van die leer:" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Formaat" @@ -10040,7 +10040,7 @@ msgid "Error in ZIP archive:" msgstr "" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11551,6 +11551,7 @@ msgid "Global value" msgstr "" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "" @@ -11972,44 +11973,30 @@ msgstr "Tabel %s is verwyder" msgid "View dump (schema) of table" msgstr "Sien die storting (skema) van die tabel" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Voeg By/Verwyder Veld Kolomme" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 #, fuzzy msgid "Spatial column" msgstr "totaal" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:178 -#, fuzzy -#| msgid "Save as file" -msgid "Save to file" -msgstr "Stoor as leer (file)" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 #, fuzzy #| msgid "User name" msgid "File name" @@ -13394,6 +13381,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Save as file" +#~ msgid "Save to file" +#~ msgstr "Stoor as leer (file)" + #, fuzzy #~ msgid "Total count" #~ msgstr "totaal" diff --git a/po/ar.po b/po/ar.po index 9fd79e2b49..59ed915388 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2013-01-10 13:39+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Arabic \n" "Language-Team: Azerbaijani $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3995,38 +3995,38 @@ msgstr "" "$cfg['PmaAbsoluteUri'] direktivi PMA konfiqurasiya faylınızda " "QURULMAMIŞDIR!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "" @@ -4476,7 +4476,7 @@ msgid "Character set of the file" msgstr "Faylın Charset-i:" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Format" @@ -10231,7 +10231,7 @@ msgid "Error in ZIP archive:" msgstr "" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11754,6 +11754,7 @@ msgid "Global value" msgstr "Qlobal deyer" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "" @@ -12180,45 +12181,31 @@ msgstr "%s cedveli leğv edildi" msgid "View dump (schema) of table" msgstr "Cedvelin sxemini göster" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Sahe Sütunlarını Elave Et/Sil" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Cemi" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:178 -#, fuzzy -#| msgid "Save as file" -msgid "Save to file" -msgstr "Fayl olaraq qeyd et" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 #, fuzzy #| msgid "User name" msgid "File name" @@ -13636,6 +13623,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Save as file" +#~ msgid "Save to file" +#~ msgstr "Fayl olaraq qeyd et" + #, fuzzy #~| msgid "Total" #~ msgid "Total count" diff --git a/po/be.po b/po/be.po index cbc14c5dd9..3f13167670 100644 --- a/po/be.po +++ b/po/be.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2012-12-13 13:06+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Belarusian $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -4085,40 +4085,40 @@ msgstr "" "Дырэктыва $cfg['PmaAbsoluteUri'] ПАВІННА быць вызначаная ў " "вашым канфігурацыйным файле!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Некарэктны індэкс сэрвэра: \"%s\"" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Няправільнае імя хосту для сэрвэра %1$s. Калі ласка, праверце канфігурыцыю." -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "У канфігурацыі вызначаны некарэктны мэтад аўтэнтыфікацыі:" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Вам трэба абнавіць %s да вэрсіі %s ці пазьнейшай." -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "" @@ -4570,7 +4570,7 @@ msgid "Character set of the file" msgstr "Кадыроўка файла:" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Фармат" @@ -10548,7 +10548,7 @@ msgid "Error in ZIP archive:" msgstr "Памылка ў ZIP-архіве:" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -12217,6 +12217,7 @@ msgid "Global value" msgstr "Глябальнае значэньне" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "" @@ -12650,45 +12651,31 @@ msgstr "Табліца %1$s створаная." msgid "View dump (schema) of table" msgstr "Праглядзець дамп (схему) табліцы" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Дадаць/выдаліць калёнку крытэру" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Колькасьць файлаў логу" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:178 -#, fuzzy -#| msgid "Save as file" -msgid "Save to file" -msgstr "Захаваць як файл" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 #, fuzzy #| msgid "Table name" msgid "File name" @@ -14164,6 +14151,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "максымум адначасовых злучэньняў" +#, fuzzy +#~| msgid "Save as file" +#~ msgid "Save to file" +#~ msgstr "Захаваць як файл" + #, fuzzy #~| msgid "Log file count" #~ msgid "Total count" diff --git a/po/be@latin.po b/po/be@latin.po index 14c0aea49e..e927f0ad3c 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2012-12-13 13:06+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Belarusian (latin) $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -4099,41 +4099,41 @@ msgstr "" "Dyrektyva $cfg['PmaAbsoluteUri'] PAVINNA być vyznačanaja ŭ vašym " "kanfihuracyjnym fajle!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Niekarektny indeks servera: \"%s\"" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Niapravilnaje imia chostu dla servera %1$s. Kali łaska, praviercie " "kanfihurycyju." -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "U kanfihuracyi vyznačany niekarektny metad aŭtentyfikacyi:" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Vam treba abnavić %s da versii %s ci paźniejšaj." -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "" @@ -4582,7 +4582,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Farmat" @@ -10546,7 +10546,7 @@ msgid "Error in ZIP archive:" msgstr "Pamyłka ŭ ZIP-archivie:" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -12213,6 +12213,7 @@ msgid "Global value" msgstr "Hlabalnaje značeńnie" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "" @@ -12638,45 +12639,31 @@ msgstr "Tablica %1$s stvoranaja." msgid "View dump (schema) of table" msgstr "Prahladzieć damp (schiemu) tablicy" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Dadać/vydalić kalonku kryteru" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Kolkaść fajłaŭ łogu" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:178 -#, fuzzy -#| msgid "Save as file" -msgid "Save to file" -msgstr "Zachavać jak fajł" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 #, fuzzy #| msgid "Table name" msgid "File name" @@ -14162,6 +14149,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "maksymum adnačasovych złučeńniaŭ" +#, fuzzy +#~| msgid "Save as file" +#~ msgid "Save to file" +#~ msgstr "Zachavać jak fajł" + #, fuzzy #~| msgid "Log file count" #~ msgid "Total count" diff --git a/po/bg.po b/po/bg.po index 89aee59b6e..0b178a1b52 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2012-11-05 10:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Bulgarian \n" "Language-Team: Bengali \n" "Language-Team: Breton $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3838,38 +3838,38 @@ msgstr "" "RET eo d'an arventenn $cfg['PmaAbsoluteUri'] bezañ resisaet er " "restr kefluniañ!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "Meneger servijer faziek : %s" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Anv ostiz direizh evit ar servijer %1$s. Gwiriit ar c'hefluniadur." -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "Termenet ez eus bet c'hefluniadur un hentenn dilesa direizh." -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Ret e vefe deoc'h ober gant ar stumm %s %s pe unan nevesoc'h c'hoazh." -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "" @@ -4319,7 +4319,7 @@ msgid "Character set of the file" msgstr "Strobad arouezennoù ar restr" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Furmad" @@ -9790,7 +9790,7 @@ msgid "Error in ZIP archive:" msgstr "" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11268,6 +11268,7 @@ msgid "Global value" msgstr "" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "" @@ -11682,39 +11683,27 @@ msgstr "" msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 msgid "Label column" msgstr "" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 msgid "Spatial column" msgstr "" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:178 -msgid "Save to file" -msgstr "" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 msgid "File name" msgstr "" diff --git a/po/bs.po b/po/bs.po index 3426a6855e..21ac5b4d80 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2013-01-10 13:39+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Bosnian $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3993,38 +3993,38 @@ msgstr "" "$cfg['PmaAbsoluteUri'] direktiva MORA biti podješena u " "konfiguracionoj datoteci!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "" @@ -4471,7 +4471,7 @@ msgid "Character set of the file" msgstr "Karakter set datoteke:" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Format" @@ -10238,7 +10238,7 @@ msgid "Error in ZIP archive:" msgstr "" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11761,6 +11761,7 @@ msgid "Global value" msgstr "Globalna vrednost" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "" @@ -12185,45 +12186,31 @@ msgstr "Tabela %s je odbačena" msgid "View dump (schema) of table" msgstr "Prikaži sadržaj (shemu) tabele" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Dodaj/obriši kolonu" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Ukupno" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:178 -#, fuzzy -#| msgid "Save as file" -msgid "Save to file" -msgstr "Sačuvaj kao datoteku" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 #, fuzzy #| msgid "User name" msgid "File name" @@ -13616,6 +13603,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Save as file" +#~ msgid "Save to file" +#~ msgstr "Sačuvaj kao datoteku" + #, fuzzy #~| msgid "Total" #~ msgid "Total count" diff --git a/po/ca.po b/po/ca.po index ba874c2bbf..4512f35bb6 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2013-01-10 13:40+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Catalan $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3830,39 +3830,39 @@ msgstr "" "La directiva $cfg['PmaAbsoluteUri'] HA d'estar establerta a " "l'arxiu de configuració!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "Index de servidor invàlid: %s" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nom de host invàlid pel servidor %1$s. Si us plau, reviseu la configuració." -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "Mètode d'identificació incorrecte establert a la configuració:" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Es necessari actualitzar a %s %s o posterior." -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "intent de sobreescriure la variable GLOBALS" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "possible aprofitament" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "detectat teclat numéric" @@ -4309,7 +4309,7 @@ msgid "Character set of the file" msgstr "Joc de caràcters de l'arxiu" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Format" @@ -10189,7 +10189,7 @@ msgid "Error in ZIP archive:" msgstr "Error en arxiu ZIP:" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11841,6 +11841,7 @@ msgid "Global value" msgstr "Valor global" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "Descarrega" @@ -12303,39 +12304,27 @@ msgstr "S'ha creat la taula %1$s." msgid "View dump (schema) of table" msgstr "Veure un bolcat (esquema) de la taula" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "Mostra visualització GIS" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "Ample" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "Alt" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 msgid "Label column" msgstr "Etiqueta de columna" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "-- cap --" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 msgid "Spatial column" msgstr "Columna espacial" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "Redibuixa" -#: tbl_gis_visualization.php:178 -msgid "Save to file" -msgstr "Desa a un arxiu" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 msgid "File name" msgstr "Nom de l'arxiu" @@ -13925,6 +13914,15 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "{concurrent_insert} està establert a 0" +#~ msgid "Width" +#~ msgstr "Ample" + +#~ msgid "Height" +#~ msgstr "Alt" + +#~ msgid "Save to file" +#~ msgstr "Desa a un arxiu" + #~ msgid "Total count" #~ msgstr "Quantitat total" diff --git a/po/ckb.po b/po/ckb.po index 06449a25b6..0f75ea7c2d 100644 --- a/po/ckb.po +++ b/po/ckb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2012-12-24 08:51+0200\n" "Last-Translator: karwan hidayat \n" "Language-Team: Kurdish Sorani \n" "Language-Team: Czech \n" @@ -536,7 +536,7 @@ msgstr "Chybný typ exportu" msgid "Value for the column \"%s\"" msgstr "Hodnota pro sloupec „%s“" -#: gis_data_editor.php:140 tbl_gis_visualization.php:173 +#: gis_data_editor.php:140 tbl_gis_visualization.php:152 msgid "Use OpenStreetMaps as Base Layer" msgstr "Použít OpenStreetMap jako základní vrstvu" @@ -733,7 +733,7 @@ msgid "Database server" msgstr "Databázový server" #: index.php:230 libraries/Menu.class.php:150 -#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655 #: libraries/config/messages.inc.php:506 msgid "Server" msgstr "Server" @@ -1741,7 +1741,7 @@ msgstr "%d není platné číslo řádku." #: libraries/schema/User_Schema.class.php:375 #: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246 -#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519 +#: tbl_indexes.php:334 tbl_relation.php:519 msgid "Save" msgstr "Uložit" @@ -3782,11 +3782,11 @@ msgstr "Zkontrolovat oprávnění pro databázi „%s“." msgid "Check Privileges" msgstr "Zkontrolovat oprávnění" -#: libraries/common.inc.php:577 +#: libraries/common.inc.php:579 msgid "Failed to read configuration file" msgstr "Nepodařilo se načíst konfigurační soubor" -#: libraries/common.inc.php:579 +#: libraries/common.inc.php:581 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3794,12 +3794,12 @@ msgstr "" "Obvykle to je způsobenou chybou v tomto souboru, prosím opravte jakékoliv " "chyby vypsané níže." -#: libraries/common.inc.php:586 +#: libraries/common.inc.php:588 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Nepodařilo se nahrát výchozí nastavení ze souboru: %1$s" -#: libraries/common.inc.php:593 +#: libraries/common.inc.php:595 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3807,38 +3807,38 @@ msgstr "" "V konfiguračním souboru musí být nastaven parametr [code]$cfg" "['PmaAbsoluteUri'][/code]!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "Chybné číslo serveru: %s" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Chybné jméno serveru pro server %1$s. Prosím zkontrolujte nastavení." -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "V nastavení máte špatnou přihlašovací metodu:" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Měli byste aktualizovat %s na verzi %s nebo vyšší." -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "Chyba: neplatný token" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "Pokus o přepsání GLOBALS" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "možný pokus o exploit" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "detekován číselný klíč" @@ -4280,7 +4280,7 @@ msgid "Character set of the file" msgstr "Znaková sada souboru" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Formát" @@ -9960,7 +9960,9 @@ msgid "Error in ZIP archive:" msgstr "Chyba v ZIP archívu:" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +#, fuzzy +#| msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Chyba: Navigace je přístupná jen přes ajax" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11572,6 +11574,7 @@ msgid "Global value" msgstr "Globální hodnota" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "Stáhnout" @@ -11975,7 +11978,6 @@ msgid "Pie" msgstr "Koláčový" #: tbl_chart.php:148 -#| msgid "Time" msgctxt "Chart type" msgid "Timeline" msgstr "Časový" @@ -12027,39 +12029,27 @@ msgstr "Byla vytvořena tabulka %1$s." msgid "View dump (schema) of table" msgstr "Export tabulky" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "Zobrazit GIS data" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "Šířka" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "Výška" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 msgid "Label column" msgstr "Název sloupce" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "-- Žádný --" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 msgid "Spatial column" msgstr "Prostorový sloupec" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "Znovu vykreslit" -#: tbl_gis_visualization.php:178 -msgid "Save to file" -msgstr "Uložit do souboru" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 msgid "File name" msgstr "Jméno souboru" @@ -13569,6 +13559,15 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert je nastaveno na 0" +#~ msgid "Width" +#~ msgstr "Šířka" + +#~ msgid "Height" +#~ msgstr "Výška" + +#~ msgid "Save to file" +#~ msgstr "Uložit do souboru" + #~ msgid "Total count" #~ msgstr "Celkový počet" diff --git a/po/cy.po b/po/cy.po index 1ce805b285..7ea27a648a 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2012-11-05 10:06+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Welsh \n" @@ -545,7 +545,7 @@ msgstr "Allforio" msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:140 tbl_gis_visualization.php:173 +#: gis_data_editor.php:140 tbl_gis_visualization.php:152 msgid "Use OpenStreetMaps as Base Layer" msgstr "" @@ -758,7 +758,7 @@ msgid "Database server" msgstr "Cronfeydd Data" #: index.php:230 libraries/Menu.class.php:150 -#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655 #: libraries/config/messages.inc.php:506 msgid "Server" msgstr "Gweinydd" @@ -1876,7 +1876,7 @@ msgstr "Dydy %d ddim yn rhif rhes dilys." #: libraries/schema/User_Schema.class.php:375 #: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246 -#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519 +#: tbl_indexes.php:334 tbl_relation.php:519 msgid "Save" msgstr "Cadw" @@ -3958,62 +3958,62 @@ msgstr "" msgid "Check Privileges" msgstr "Gwirio Breintiau" -#: libraries/common.inc.php:577 +#: libraries/common.inc.php:579 #, fuzzy #| msgid "Failed to write file to disk." msgid "Failed to read configuration file" msgstr "Methu ag ysgrifennu i'r ddisg." -#: libraries/common.inc.php:579 +#: libraries/common.inc.php:581 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:586 +#: libraries/common.inc.php:588 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:593 +#: libraries/common.inc.php:595 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "Indecs gweinydd annilys: %s" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Enw gwesteiwr annilys ar gyfer gweinydd %1$s. Adolygwch eich ffurfwedd." -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Dylech uwchraddio i %s %s neu'n well." -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "" @@ -4462,7 +4462,7 @@ msgid "Character set of the file" msgstr "Set nodau y ffeil" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Fformat" @@ -10113,7 +10113,7 @@ msgid "Error in ZIP archive:" msgstr "" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11633,6 +11633,7 @@ msgid "Global value" msgstr "" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "" @@ -12058,47 +12059,33 @@ msgstr "" msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 #, fuzzy #| msgid "Add/Delete columns" msgid "Label column" msgstr "Ychwanegu/Dileu colofnau" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "-dim-" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Cyfrif ffeiliau log" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:178 -#, fuzzy -#| msgid "Save as file" -msgid "Save to file" -msgstr "Cadw fel ffeil" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 #, fuzzy #| msgid "Page name" msgid "File name" @@ -13567,6 +13554,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Save as file" +#~ msgid "Save to file" +#~ msgstr "Cadw fel ffeil" + #, fuzzy #~| msgid "Log file count" #~ msgid "Total count" diff --git a/po/da.po b/po/da.po index 36692ee3b1..eb40d292c2 100644 --- a/po/da.po +++ b/po/da.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2013-01-10 13:40+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Danish \n" "Language-Team: German \n" "Language-Team: Greek \n" @@ -533,7 +533,7 @@ msgstr "Μη έγκυρος τύπος εξαγωγής" msgid "Value for the column \"%s\"" msgstr "Τιμή για τη στήλη «%s»" -#: gis_data_editor.php:140 tbl_gis_visualization.php:173 +#: gis_data_editor.php:140 tbl_gis_visualization.php:152 msgid "Use OpenStreetMaps as Base Layer" msgstr "Χρήση του OpenStreetMaps ως Βασικό Επίπεδο" @@ -735,7 +735,7 @@ msgid "Database server" msgstr "Διακομιστής βάσης δεδομένων" #: index.php:230 libraries/Menu.class.php:150 -#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655 #: libraries/config/messages.inc.php:506 msgid "Server" msgstr "Διακομιστής" @@ -1755,7 +1755,7 @@ msgstr "Ο αριθμός %d δεν είναι έγκυρος αριθμός γ #: libraries/schema/User_Schema.class.php:375 #: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246 -#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519 +#: tbl_indexes.php:334 tbl_relation.php:519 msgid "Save" msgstr "Αποθήκευση" @@ -3829,11 +3829,11 @@ msgstr "Έλεγχος δικαιωμάτων για τη βάση «%s»." msgid "Check Privileges" msgstr "Έλεγχος Δικαιωμάτων" -#: libraries/common.inc.php:577 +#: libraries/common.inc.php:579 msgid "Failed to read configuration file" msgstr "Αδύνατη η ανάγνωση του αρχείου ρυθμίσεων" -#: libraries/common.inc.php:579 +#: libraries/common.inc.php:581 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3841,12 +3841,12 @@ msgstr "" "Αυτό σημαίνει, συνήθως, ότι υπάρχει συντακτικό λάθος, για αυτό ελέγξτε τα " "σφάλματα που εμφανίζονται παρακάτω." -#: libraries/common.inc.php:586 +#: libraries/common.inc.php:588 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Αδύνατη η φόρτωση της προεπιλεγμένης ρύθμισης από: «%1$s»" -#: libraries/common.inc.php:593 +#: libraries/common.inc.php:595 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3854,40 +3854,40 @@ msgstr "" "Η πδηγία [code]$cfg['PmaAbsoluteUri'][/code] ΠΡΕΠΕΙ να οριστεί στο αρχείο " "ρυθμίσεων!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "Μη έγκυρο ευρετήριο διακομιστή: %s" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Μη έγκυρο όνομα διακομιστή για τον διακομιστή %1$s. Ξαναδείτε τις ρυθμίσεις " "σας." -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "Ορίστηκε εσφαλμένη μέθοδος πιστοποίησης στη ρύθμιση:" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Πρέπει να αναβαθμίσετε σε %s %s ή νεότερη." -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "Σφάλμα: Το πειστήριο δεν ταιριάζει" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "προσπάθεια επανεγγραφής GLOBALS" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "δυνατή αξιοποίηση" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "ανιχνεύτηκε αριθμητικό κλειδί" @@ -4336,7 +4336,7 @@ msgid "Character set of the file" msgstr "Σύνολο χαρακτήρων αρχείου" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Μορφοποίηση" @@ -10124,7 +10124,9 @@ msgid "Error in ZIP archive:" msgstr "Σφάλμα στο συμπιεσμένο αρχείο ZIP:" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +#, fuzzy +#| msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Κρίσιμο σφάλμα: Η πλοήγηση μπορεί να προσπελαστεί μέσω ajax" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11812,6 +11814,7 @@ msgid "Global value" msgstr "Προεπιλεγμένη τιμή" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "Λήψη" @@ -12224,7 +12227,6 @@ msgid "Pie" msgstr "Πίτα" #: tbl_chart.php:148 -#| msgid "Time" msgctxt "Chart type" msgid "Timeline" msgstr "Χρονολόγιο" @@ -12276,39 +12278,27 @@ msgstr "Ο πίνακας %1$s έχει δημιουργηθεί." msgid "View dump (schema) of table" msgstr "Εμφάνιση σκαριφήματος (σχήματος) του πίνακα" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "Εμφάνιση Οπτικοποίησης GIS" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "Πλάτος" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "Ύψος" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 msgid "Label column" msgstr "Στήλη ετικέτας" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "-- Τίποτα --" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 msgid "Spatial column" msgstr "Χωρική στήλη" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "Επανασχεδίαση" -#: tbl_gis_visualization.php:178 -msgid "Save to file" -msgstr "Αποθήκευση σε αρχείο" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 msgid "File name" msgstr "Ονομασία αρχείου" @@ -13899,6 +13889,15 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Το concurrent_insert έχει οριστεί στο 0" +#~ msgid "Width" +#~ msgstr "Πλάτος" + +#~ msgid "Height" +#~ msgstr "Ύψος" + +#~ msgid "Save to file" +#~ msgstr "Αποθήκευση σε αρχείο" + #~ msgid "Total count" #~ msgstr "Συνολικό πλήθος" diff --git a/po/en_GB.po b/po/en_GB.po index 2a131946d3..fa2d9ca964 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2013-01-14 10:50+0200\n" "Last-Translator: Robert Readman \n" "Language-Team: English (United Kingdom) \n" -"Language-Team: Spanish " -"\n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -538,7 +538,7 @@ msgstr "Tipo de exportación inválido" msgid "Value for the column \"%s\"" msgstr "Valor para la columna \"%s\"" -#: gis_data_editor.php:140 tbl_gis_visualization.php:173 +#: gis_data_editor.php:140 tbl_gis_visualization.php:152 msgid "Use OpenStreetMaps as Base Layer" msgstr "Utilizar OpenStreetMaps como capa base" @@ -740,7 +740,7 @@ msgid "Database server" msgstr "Servidor de base de datos" #: index.php:230 libraries/Menu.class.php:150 -#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655 #: libraries/config/messages.inc.php:506 msgid "Server" msgstr "Servidor" @@ -1762,7 +1762,7 @@ msgstr "%d no es un número de fila válido." #: libraries/schema/User_Schema.class.php:375 #: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246 -#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519 +#: tbl_indexes.php:334 tbl_relation.php:519 msgid "Save" msgstr "Guardar" @@ -3851,11 +3851,11 @@ msgstr "Comprobar los privilegios para la base de datos "%s"." msgid "Check Privileges" msgstr "Comprobar los privilegios" -#: libraries/common.inc.php:577 +#: libraries/common.inc.php:579 msgid "Failed to read configuration file" msgstr "No se pudo leer el archivo de configuración" -#: libraries/common.inc.php:579 +#: libraries/common.inc.php:581 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3863,12 +3863,12 @@ msgstr "" "Esto generalmente significa que tiene un error de sintáxis, revisa los " "errores que se muestran a continuación." -#: libraries/common.inc.php:586 +#: libraries/common.inc.php:588 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "No se pudo cargar la configuración predeterminada desde: %1$s" -#: libraries/common.inc.php:593 +#: libraries/common.inc.php:595 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3876,40 +3876,40 @@ msgstr "" "¡DEBE tener definido [code]$cfg['PmaAbsoluteUri'][/code] en su archivo de " "configuración!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "Índice de servidor inválido: %s" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "El nombre del host no es válido para el servidor %1$s. Revise su " "configuración." -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "Método de autenticación no válido definido en la configuración:" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Usted debería actualizar su %s a la versión %s o más reciente." -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "Error: no coincide un «token»" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "intento de sobre-escritura de la variable GLOBALS" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "posible aprovechamiento" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "telado numérico detectado" @@ -4360,7 +4360,7 @@ msgid "Character set of the file" msgstr "Conjunto de caracteres del archivo" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Formato" @@ -10171,7 +10171,9 @@ msgid "Error in ZIP archive:" msgstr "Error en el archivo ZIP:" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +#, fuzzy +#| msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Error fatal: sólo se puede acceder a la navegación mediante AJAX" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11853,6 +11855,7 @@ msgid "Global value" msgstr "Valor global" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "Descargar" @@ -12263,7 +12266,6 @@ msgid "Pie" msgstr "Torta" #: tbl_chart.php:148 -#| msgid "Time" msgctxt "Chart type" msgid "Timeline" msgstr "Línea temporal" @@ -12315,39 +12317,27 @@ msgstr "La Tabla %1$s se creó." msgid "View dump (schema) of table" msgstr "Mostrar volcado (esquema) de la tabla" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "Mostrar visualización GIS" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "Anchura" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "Altura" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 msgid "Label column" msgstr "Etiqueta de columna" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "-- ninguno --" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 msgid "Spatial column" msgstr "Columna espacial" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "Redibujar" -#: tbl_gis_visualization.php:178 -msgid "Save to file" -msgstr "Guardar a un archivo" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 msgid "File name" msgstr "Nombre del archivo" @@ -13923,6 +13913,15 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "«concurrent_insert» está definido como 0" +#~ msgid "Width" +#~ msgstr "Anchura" + +#~ msgid "Height" +#~ msgstr "Altura" + +#~ msgid "Save to file" +#~ msgstr "Guardar a un archivo" + #~ msgid "Total count" #~ msgstr "Cantidad total" diff --git a/po/et.po b/po/et.po index 9f3fbffdc2..418c9188c6 100644 --- a/po/et.po +++ b/po/et.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2012-11-21 15:53+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Estonian \n" "Language-Team: Basque $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3958,38 +3958,38 @@ msgstr "" "$cfg['PmaAbsoluteUri'] direktibak zure konfigurazio fitxategian " "zehaztuta behar du egon!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s %s bertsiora edo handiago batera eguneratu beharko zenuke." -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "" @@ -4438,7 +4438,7 @@ msgid "Character set of the file" msgstr "Fitxategiaren karaktereen kodeketa:" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Formatoa" @@ -10207,7 +10207,7 @@ msgid "Error in ZIP archive:" msgstr "" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11732,6 +11732,7 @@ msgid "Global value" msgstr "Balio orokorra" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "" @@ -12158,45 +12159,31 @@ msgstr "%s taula ezabatu egin da" msgid "View dump (schema) of table" msgstr "Ikusi taularen iraulketa (eskema)" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Gehitu/ezabatu irizpide-zutabea" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Gutira" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:178 -#, fuzzy -#| msgid "Save as file" -msgid "Save to file" -msgstr "Bidali" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 #, fuzzy #| msgid "User name" msgid "File name" @@ -13598,6 +13585,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Save as file" +#~ msgid "Save to file" +#~ msgstr "Bidali" + #~ msgid "Total count" #~ msgstr "Gutira" diff --git a/po/fa.po b/po/fa.po index a630478f08..b2d39d38c5 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2013-01-10 13:19+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Persian \n" "Language-Team: Finnish \n" -"Language-Team: French \n" +"Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -536,7 +537,7 @@ msgstr "Type d'exportation invalide" msgid "Value for the column \"%s\"" msgstr "Valeur pour la colonne «%s»" -#: gis_data_editor.php:140 tbl_gis_visualization.php:173 +#: gis_data_editor.php:140 tbl_gis_visualization.php:152 msgid "Use OpenStreetMaps as Base Layer" msgstr "Utiliser OpenStreetMaps comme couche de base" @@ -737,7 +738,7 @@ msgid "Database server" msgstr "Serveur de base de données" #: index.php:230 libraries/Menu.class.php:150 -#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655 #: libraries/config/messages.inc.php:506 msgid "Server" msgstr "Serveur" @@ -1750,7 +1751,7 @@ msgstr "%d n'est pas un numéro de ligne valable." #: libraries/schema/User_Schema.class.php:375 #: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246 -#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519 +#: tbl_indexes.php:334 tbl_relation.php:519 msgid "Save" msgstr "Sauvegarder" @@ -3830,11 +3831,11 @@ msgstr "Vérifier les privilèges pour la base de données "%s"." msgid "Check Privileges" msgstr "Vérifier les privilèges" -#: libraries/common.inc.php:577 +#: libraries/common.inc.php:579 msgid "Failed to read configuration file" msgstr "Impossible de lire le fichier de configuration" -#: libraries/common.inc.php:579 +#: libraries/common.inc.php:581 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3842,13 +3843,13 @@ msgstr "" "Ceci indique habituellement qu'il y a une erreur de syntaxe, veuillez " "vérifier si une erreur s'affiche plus bas." -#: libraries/common.inc.php:586 +#: libraries/common.inc.php:588 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Chargement de la configuration par défaut impossible depuis %1$s" # OK -#: libraries/common.inc.php:593 +#: libraries/common.inc.php:595 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3856,41 +3857,41 @@ msgstr "" "Le paramètre [code]$cfg['PmaAbsoluteUri'][/code] DOIT être renseigné dans " "votre fichier de configuration !" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "Indice de serveur invalide: %s" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nom d'hôte invalide pour le serveur %1$s. Veuillez vérifier votre " "configuration." -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "" "Le fichier de configuration contient un type d'authentification invalide : " -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Vous devriez utiliser %s en version %s ou plus récente." -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "Erreur: disparité du jeton" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "Tentative d'écrasement de GLOBALS" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "vulnérabilité possible" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "Clé numérique détectée" @@ -4338,7 +4339,7 @@ msgid "Character set of the file" msgstr "Jeu de caractères du fichier" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Format" @@ -10109,7 +10110,9 @@ msgid "Error in ZIP archive:" msgstr "Erreur rencontrée dans l'archive ZIP : " #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +#, fuzzy +#| msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Erreur fatale : la navigation requiert ajax" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11764,6 +11767,7 @@ msgid "Global value" msgstr "Valeur globale" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "Télécharger" @@ -12167,7 +12171,6 @@ msgid "Pie" msgstr "Tarte" #: tbl_chart.php:148 -#| msgid "Time" msgctxt "Chart type" msgid "Timeline" msgstr "Moment" @@ -12219,39 +12222,27 @@ msgstr "La table %1$s a été créée." msgid "View dump (schema) of table" msgstr "Afficher le schéma de la table" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "Visualiser en GIS" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "Largeur" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "Hauteur" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 msgid "Label column" msgstr "Colonne pour étiquette" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "-- Aucun --" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 msgid "Spatial column" msgstr "Colonne pour donnée spatiale" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "Dessiner à nouveau" -#: tbl_gis_visualization.php:178 -msgid "Save to file" -msgstr "Sauvegarder dans un fichier" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 msgid "File name" msgstr "Nom du fichier" @@ -12281,7 +12272,6 @@ msgid "" msgstr "(«PRIMARY» doit et ne peut être que le nom d'une clé primaire!)" #: tbl_indexes.php:227 -#| msgid "Comment" msgid "Comment:" msgstr "Commentaire : " @@ -13808,6 +13798,15 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Le paramètre concurrent_insert a une valeur de 0" +#~ msgid "Width" +#~ msgstr "Largeur" + +#~ msgid "Height" +#~ msgstr "Hauteur" + +#~ msgid "Save to file" +#~ msgstr "Sauvegarder dans un fichier" + #~ msgid "Total count" #~ msgstr "Nombre total" diff --git a/po/gl.po b/po/gl.po index 9b17e1617e..8e6ab49830 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2013-01-10 13:43+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Galician \n" "Language-Team: Hebrew \n" "Language-Team: Hindi \n" @@ -539,7 +539,7 @@ msgstr "निर्यात प्रकार" msgid "Value for the column \"%s\"" msgstr "\"%s\" काँलम के लिए मान " -#: gis_data_editor.php:140 tbl_gis_visualization.php:173 +#: gis_data_editor.php:140 tbl_gis_visualization.php:152 msgid "Use OpenStreetMaps as Base Layer" msgstr "" @@ -746,7 +746,7 @@ msgid "Database server" msgstr "यूसर के लिए डेटाबेस" #: index.php:230 libraries/Menu.class.php:150 -#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655 #: libraries/config/messages.inc.php:506 msgid "Server" msgstr "सर्वर" @@ -938,9 +938,7 @@ msgstr "प्राथमिक-कुंजी/अनुक्रमणिक #: js/messages.php:37 msgid "This operation could take a long time. Proceed anyway?" -msgstr "" -"इस प्रक्रिया में लम्बा वक्त भी लग सकता है। क्या आप चाहते हैं ये प्रक्रिया की " -"जाये ?" +msgstr "इस प्रक्रिया में लम्बा वक्त भी लग सकता है। क्या आप चाहते हैं ये प्रक्रिया की जाये ?" #: js/messages.php:40 msgid "Missing value in the form!" @@ -951,12 +949,10 @@ msgid "This is not a number!" msgstr "यह 'आंकिक' या नम्बर रूप में नहीं है।" #: js/messages.php:42 -#| msgid "Add index" msgid "Add Index" msgstr "अनुक्रमणिका जोड़ें" #: js/messages.php:43 -#| msgid "Edit mode" msgid "Edit Index" msgstr "अनुक्रमणिका सम्पादित करें" @@ -1032,7 +1028,6 @@ msgid "Live conn./process chart" msgstr "लाईव कनेक्शन / प्रोसेस चार्ट" #: js/messages.php:64 -#| msgid "Show query chart" msgid "Live query chart" msgstr "जीवन्त (live) क्वॅरी चार्ट" @@ -1065,12 +1060,10 @@ msgid "." msgstr "." #: js/messages.php:76 -#| msgid "Connections" msgid "Connections / Processes" msgstr "कनेक्शन / प्रक्रियाएँ" #: js/messages.php:79 -#| msgid "Could not save configuration" msgid "Local monitor configuration incompatible" msgstr "स्थानीय जाँच व्यवस्था असंगत" @@ -1842,7 +1835,7 @@ msgstr "%d वैध रो संख्या नहीं है" #: libraries/schema/User_Schema.class.php:375 #: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246 -#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519 +#: tbl_indexes.php:334 tbl_relation.php:519 msgid "Save" msgstr "बचाना" @@ -3908,24 +3901,24 @@ msgstr "डाटाबेस के प्रिविलेज चेक क msgid "Check Privileges" msgstr "प्रिविलेज चेक करें" -#: libraries/common.inc.php:577 +#: libraries/common.inc.php:579 #, fuzzy #| msgid "Could not save configuration" msgid "Failed to read configuration file" msgstr "विन्यास सहेज नहीं सकते" -#: libraries/common.inc.php:579 +#: libraries/common.inc.php:581 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:586 +#: libraries/common.inc.php:588 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "%1$s से मूलभूत विन्यास लोड नहीं की जा सकी |" -#: libraries/common.inc.php:593 +#: libraries/common.inc.php:595 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3936,38 +3929,38 @@ msgid "" msgstr "" "$cfg['PmaAbsoluteUri'] निर्देश आपकी विन्यास फाइल मैं सेट होना आवश्यक है" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "अवैध सर्वर सूचकांक: %s" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "%1$s सर्वर के लिए होस्टनाम अवैध कृपया अपना विन्यास की समीक्षा करें" -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "विन्यास में अवैध प्रमाणीकरण विधि स्थापित" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "आपको %s %s या अधिक में नवीनीकृत करना चाहिए" -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "" @@ -4407,7 +4400,7 @@ msgid "Character set of the file" msgstr "फ़ाइल का चरित्र सेट" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "प्रारूप" @@ -10102,7 +10095,7 @@ msgid "Error in ZIP archive:" msgstr "ज़िप संग्रह में त्रुटि" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11629,6 +11622,7 @@ msgid "Global value" msgstr "वैश्विक मूल्य" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "डाउनलोड" @@ -12060,49 +12054,35 @@ msgstr "%1$s टेबल बना दिया गया है" msgid "View dump (schema) of table" msgstr "टेबल डंप दृश्य" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 #, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" msgstr "सर्वर चयन प्रदशित करें" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "चौड़ाई " - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "ऊँचाई" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 #, fuzzy #| msgid "Textarea columns" msgid "Label column" msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "- कोई नहीं -" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "कुल" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "फिर से बनाएं" -#: tbl_gis_visualization.php:178 -#, fuzzy -#| msgid "Save as file" -msgid "Save to file" -msgstr "फाईल मे सेव करें" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 #, fuzzy #| msgid "Table name" msgid "File name" @@ -13587,6 +13567,17 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "अधिकतम वर्तमान कनेक्शन" +#~ msgid "Width" +#~ msgstr "चौड़ाई " + +#~ msgid "Height" +#~ msgstr "ऊँचाई" + +#, fuzzy +#~| msgid "Save as file" +#~ msgid "Save to file" +#~ msgstr "फाईल मे सेव करें" + #~ msgid "Total count" #~ msgstr "कुल गिनती" diff --git a/po/hr.po b/po/hr.po index 4558ae2d16..c740a9d7e4 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2013-01-10 13:42+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Croatian $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -4078,41 +4078,41 @@ msgstr "" "Direktiva $cfg['PmaAbsoluteUri'] MORA BITI postavljena u vašoj " "konfiguracijskoj datoteci!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Neispravan indeks poslužitelja: \"%s\"" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Neispravan naziv za poslužitelj %1$s. Molimo, pregledajte svoju " "konfiguraciju." -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "Neispravan komplet načina provjere vjerodostojnosti u konfiguraciji:" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Trebali biste nadograditi na %s %s ili kasniju." -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "" @@ -4564,7 +4564,7 @@ msgid "Character set of the file" msgstr "Tablica znakova za datoteku:" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Oblikovanje" @@ -10533,7 +10533,7 @@ msgid "Error in ZIP archive:" msgstr "Pogreška u ZIP arhivi:" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -12195,6 +12195,7 @@ msgid "Global value" msgstr "Opća vrijednost" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "Preuzmi" @@ -12628,45 +12629,31 @@ msgstr "Tablica %1$s je izrađena." msgid "View dump (schema) of table" msgstr "Prikaži ispis (shemu) tablice" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "Širina" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "Visina" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Dodaj/Izbriši stupce polja" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Najveći broj datoteka zapisnika" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:178 -#, fuzzy -#| msgid "Save as file" -msgid "Save to file" -msgstr "Spremi kao datoteku" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 #, fuzzy #| msgid "Table name" msgid "File name" @@ -14144,6 +14131,17 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "najv. uzastopnih veza" +#~ msgid "Width" +#~ msgstr "Širina" + +#~ msgid "Height" +#~ msgstr "Visina" + +#, fuzzy +#~| msgid "Save as file" +#~ msgid "Save to file" +#~ msgstr "Spremi kao datoteku" + #, fuzzy #~| msgid "Log file count" #~ msgid "Total count" diff --git a/po/hu.po b/po/hu.po index cdeb6bc79a..9d0af62292 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2012-11-21 15:58+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Hungarian \n" "Language-Team: none\n" @@ -529,7 +529,7 @@ msgstr "" msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:140 tbl_gis_visualization.php:173 +#: gis_data_editor.php:140 tbl_gis_visualization.php:152 msgid "Use OpenStreetMaps as Base Layer" msgstr "" @@ -713,7 +713,7 @@ msgid "Database server" msgstr "" #: index.php:230 libraries/Menu.class.php:150 -#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655 #: libraries/config/messages.inc.php:506 msgid "Server" msgstr "" @@ -1671,7 +1671,7 @@ msgstr "" #: libraries/schema/User_Schema.class.php:375 #: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246 -#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519 +#: tbl_indexes.php:334 tbl_relation.php:519 msgid "Save" msgstr "" @@ -3633,59 +3633,59 @@ msgstr "" msgid "Check Privileges" msgstr "" -#: libraries/common.inc.php:577 +#: libraries/common.inc.php:579 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:579 +#: libraries/common.inc.php:581 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:586 +#: libraries/common.inc.php:588 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:593 +#: libraries/common.inc.php:595 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "" @@ -4108,7 +4108,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "" @@ -9431,7 +9431,7 @@ msgid "Error in ZIP archive:" msgstr "" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -10878,6 +10878,7 @@ msgid "Global value" msgstr "" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "" @@ -11277,39 +11278,27 @@ msgstr "" msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 msgid "Label column" msgstr "" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 msgid "Spatial column" msgstr "" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:178 -msgid "Save to file" -msgstr "" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 msgid "File name" msgstr "" diff --git a/po/id.po b/po/id.po index 0597a93bef..67df470552 100644 --- a/po/id.po +++ b/po/id.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2012-11-05 10:15+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Indonesian $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3829,39 +3829,39 @@ msgstr "" "Directif $cfg['PmaAbsoluteUri'] WAJIB diset dalam berkas " "konfigurasi!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "Indeks server tidak sah: %s" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Hostname tidak sah untuk server %1$s. Harap lihat kembali konfigurasi Anda." -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "Metode autentikasi dalam konfigurasi tidak sah:" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Anda harus memperbarui ke %s %s atau lebih baru." -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "memungkinkan mengeksploitasi" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "tombol angka terdeteksi" @@ -4303,7 +4303,7 @@ msgid "Character set of the file" msgstr "Set karakter berkas" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Format" @@ -9945,7 +9945,7 @@ msgid "Error in ZIP archive:" msgstr "Galat pada arsip ZIP:" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11455,6 +11455,7 @@ msgid "Global value" msgstr "Nilai global" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "Unduh" @@ -11874,39 +11875,27 @@ msgstr "Tabel %1$s telah dibuat." msgid "View dump (schema) of table" msgstr "Tampilkan Dump (Skema) dari tabel" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "Tampilkan Visualisasi GIS" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "Lebar" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "Tinggi" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 msgid "Label column" msgstr "Kolom label" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "-- Tidak ada --" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 msgid "Spatial column" msgstr "Kolom spasial" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "Gambar ulang" -#: tbl_gis_visualization.php:178 -msgid "Save to file" -msgstr "Simpan dalam berkas" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 msgid "File name" msgstr "Nama berkas" @@ -13378,6 +13367,15 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Koneksi konkuren maks." +#~ msgid "Width" +#~ msgstr "Lebar" + +#~ msgid "Height" +#~ msgstr "Tinggi" + +#~ msgid "Save to file" +#~ msgstr "Simpan dalam berkas" + #~ msgid "Total count" #~ msgstr "Jumlah" diff --git a/po/it.po b/po/it.po index 7b5d336db2..2e351b613b 100644 --- a/po/it.po +++ b/po/it.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2013-01-08 20:53+0200\n" "Last-Translator: Rouslan Placella \n" "Language-Team: Italian \n" "Language-Team: Japanese 必ず設定ファイルに設定しなければ" "なりません!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "サーバのインデックスが不正です: %s" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "サーバ %1$s のホスト名が不正です。設定を確認してください。" -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "設定ファイルに無効な認証方法が指定されています:" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s を %s 以降にアップグレードしてください。" -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS 変数が書き換えられている可能性があります" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "なんらかの攻撃をされている可能性があります" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "グローバル変数から数値キーが検出されました" @@ -4301,7 +4301,7 @@ msgid "Character set of the file" msgstr "ファイルの文字セット" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "フォーマット" @@ -10092,7 +10092,7 @@ msgid "Error in ZIP archive:" msgstr "ZIP アーカイブにエラーがあります:" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11706,6 +11706,7 @@ msgid "Global value" msgstr "グローバル値" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "ダウンロード" @@ -12164,39 +12165,27 @@ msgstr "テーブル %1$s を作成しました。" msgid "View dump (schema) of table" msgstr "テーブルのダンプ (スキーマ) 表示" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "視覚化した空間情報" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "幅" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "高さ" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 msgid "Label column" msgstr "ラベルカラム" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "-- なし --" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 msgid "Spatial column" msgstr "空間情報カラム" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "再描画" -#: tbl_gis_visualization.php:178 -msgid "Save to file" -msgstr "ファイルに保存" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 msgid "File name" msgstr "ファイル名" @@ -13775,6 +13764,15 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert は 0 に設定されています。" +#~ msgid "Width" +#~ msgstr "幅" + +#~ msgid "Height" +#~ msgstr "高さ" + +#~ msgid "Save to file" +#~ msgstr "ファイルに保存" + #~ msgid "Total count" #~ msgstr "数量" diff --git a/po/ka.po b/po/ka.po index 81c3c6d602..47d784dbb1 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2012-12-13 13:04+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Georgian \n" "Language-Team: none\n" @@ -537,7 +537,7 @@ msgstr "Экспорт типі қате" msgid "Value for the column \"%s\"" msgstr "\"%s\" баған мәні" -#: gis_data_editor.php:140 tbl_gis_visualization.php:173 +#: gis_data_editor.php:140 tbl_gis_visualization.php:152 msgid "Use OpenStreetMaps as Base Layer" msgstr "OpenStreetMaps негізгі қабат ретінде қолданыңыз" @@ -732,7 +732,7 @@ msgid "Database server" msgstr "" #: index.php:230 libraries/Menu.class.php:150 -#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655 #: libraries/config/messages.inc.php:506 msgid "Server" msgstr "" @@ -1695,7 +1695,7 @@ msgstr "" #: libraries/schema/User_Schema.class.php:375 #: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246 -#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519 +#: tbl_indexes.php:334 tbl_relation.php:519 msgid "Save" msgstr "Сақтау" @@ -3666,59 +3666,59 @@ msgstr "" msgid "Check Privileges" msgstr "" -#: libraries/common.inc.php:577 +#: libraries/common.inc.php:579 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:579 +#: libraries/common.inc.php:581 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:586 +#: libraries/common.inc.php:588 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:593 +#: libraries/common.inc.php:595 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "" @@ -4143,7 +4143,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "" @@ -9477,7 +9477,7 @@ msgid "Error in ZIP archive:" msgstr "" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -10924,6 +10924,7 @@ msgid "Global value" msgstr "" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "" @@ -11327,39 +11328,27 @@ msgstr "" msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 msgid "Label column" msgstr "" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 msgid "Spatial column" msgstr "" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:178 -msgid "Save to file" -msgstr "" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 msgid "File name" msgstr "" diff --git a/po/ko.po b/po/ko.po index 1e9996b22f..d788357cb8 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,10 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2013-01-18 10:56+0200\n" "Last-Translator: Seonghwan Bang \n" -"Language-Team: Korean \n" +"Language-Team: Korean \n" "Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -531,7 +532,7 @@ msgstr "잘못된 내보내기 타입" msgid "Value for the column \"%s\"" msgstr "\"%s\"행의 값" -#: gis_data_editor.php:140 tbl_gis_visualization.php:173 +#: gis_data_editor.php:140 tbl_gis_visualization.php:152 msgid "Use OpenStreetMaps as Base Layer" msgstr "기본 레이어로 OpenStreetMaps를 사용" @@ -625,7 +626,9 @@ msgstr "" msgid "" "You probably tried to upload a file that is too large. Please refer to " "%sdocumentation%s for a workaround for this limit." -msgstr "너무 큰 파일을 업로드하려고 시도했습니다. 제한을 해결하기 위해서는 %s문서%s를 참조하여 주십시오." +msgstr "" +"너무 큰 파일을 업로드하려고 시도했습니다. 제한을 해결하기 위해서는 %s문서%s" +"를 참조하여 주십시오." #: import.php:232 import.php:497 msgid "Showing bookmark" @@ -733,7 +736,7 @@ msgid "Database server" msgstr "데이터베이스 서버" #: index.php:230 libraries/Menu.class.php:150 -#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655 #: libraries/config/messages.inc.php:506 msgid "Server" msgstr "서버" @@ -1723,7 +1726,7 @@ msgstr "%d는 올바른 행번호가 아닙니다." #: libraries/schema/User_Schema.class.php:375 #: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246 -#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519 +#: tbl_indexes.php:334 tbl_relation.php:519 msgid "Save" msgstr "저장" @@ -3751,11 +3754,11 @@ msgstr "데이터베이스 "%s" 에 대한 사용권한 검사." msgid "Check Privileges" msgstr "사용권한 검사" -#: libraries/common.inc.php:577 +#: libraries/common.inc.php:579 msgid "Failed to read configuration file" msgstr "설정 파일을 읽는데 실패했습니다." -#: libraries/common.inc.php:579 +#: libraries/common.inc.php:581 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3763,12 +3766,12 @@ msgstr "" "일반적으로 이것은 문법 오류가 있음을 의미합니다. 다음의 모든 오류를 확인하십" "시오." -#: libraries/common.inc.php:586 +#: libraries/common.inc.php:588 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "기본 설정을 가져올 수 없습니다: %1$s" -#: libraries/common.inc.php:593 +#: libraries/common.inc.php:595 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3779,38 +3782,38 @@ msgid "" msgstr "" "환경설정 파일에 $cfg['PmaAbsoluteUri'] 변수가 정의되어야 합니다!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "잘못된 서버 인덱스: %s" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "서버 %1$s의 호스트 이름이 잘못되었습니다. 설정을 확인하십시오" -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "설정 파일에 잘못된 인증 방식 설정되어 있습니다.: " -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s를 %s 이상으로 업그레이드 하십시오." -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "어떤 공격을 받고있을 가능성이 있습니다." -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "전역 변수에서 숫자로 된 키가 발견 되었습니다." @@ -4240,7 +4243,7 @@ msgid "Character set of the file" msgstr "파일 문자셋" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "형식" @@ -9830,7 +9833,7 @@ msgid "Error in ZIP archive:" msgstr "" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11341,6 +11344,7 @@ msgid "Global value" msgstr "" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "다운로드" @@ -11769,43 +11773,31 @@ msgstr "테이블 %s 을 제거했습니다." msgid "View dump (schema) of table" msgstr "테이블의 덤프(스키마) 데이터 보기" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "너비" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "높이" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 #, fuzzy #| msgid "Add/Delete columns" msgid "Label column" msgstr "컬럼 추가/삭제" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "-없음-" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "전체 사용량" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "다시그리기" -#: tbl_gis_visualization.php:178 -msgid "Save to file" -msgstr "파일로 저장" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 msgid "File name" msgstr "파일명" @@ -13176,6 +13168,15 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert가 0으로 설정되었습니다." +#~ msgid "Width" +#~ msgstr "너비" + +#~ msgid "Height" +#~ msgstr "높이" + +#~ msgid "Save to file" +#~ msgstr "파일로 저장" + #~ msgid "Total count" #~ msgstr "전체 갯수" diff --git a/po/lt.po b/po/lt.po index 3f6c63bab9..05d6445974 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2012-12-13 12:59+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Lithuanian $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3851,38 +3851,38 @@ msgid "" msgstr "" "BŪTINA nustatymų faile įrašyti $cfg['PmaAbsoluteUri'] reikšmę!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "Blogas serverio indeksas: %s" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Blogas serverio %1$s hostname. Prašome peržiūrėti nustatymus." -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "Blogai nustatytas identifikavimo metodas nustatymuose:" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Rekomenduojame atnaujint %s iki %s ar vėlesnės versijos." -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "galimas pažeidžiamumas" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "" @@ -4323,7 +4323,7 @@ msgid "Character set of the file" msgstr "Failo simbolių koduotė" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Formatas" @@ -10101,7 +10101,7 @@ msgid "Error in ZIP archive:" msgstr "Klaida ZIP archyve:" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11608,6 +11608,7 @@ msgid "Global value" msgstr "Globali reikšmė" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "Parsisiųsti" @@ -12083,39 +12084,27 @@ msgstr "Sukurta %1$s lentelė." msgid "View dump (schema) of table" msgstr "Peržiūrėti lentelės struktūros atvaizdį" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "Rodyti GIS vizualizaciją" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "Plotis" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "Aukštis" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 msgid "Label column" msgstr "Etiketės stulpelis" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "-- Tuščia --" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 msgid "Spatial column" msgstr "" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "Perpiešti" -#: tbl_gis_visualization.php:178 -msgid "Save to file" -msgstr "Įrašyti į failą" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 msgid "File name" msgstr "Failo pavadinimas" @@ -13581,6 +13570,15 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "MyISAM concurrent įterpimai" +#~ msgid "Width" +#~ msgstr "Plotis" + +#~ msgid "Height" +#~ msgstr "Aukštis" + +#~ msgid "Save to file" +#~ msgstr "Įrašyti į failą" + #~ msgid "Total count" #~ msgstr "Iš viso" diff --git a/po/lv.po b/po/lv.po index e913b73275..d6bc380740 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2013-01-10 13:39+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Latvian $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3907,38 +3907,38 @@ msgstr "" "$cfg['PmaAbsoluteUri'] direktīvai ir JĀBŪT nodefinētai Jūsu " "konfigurācijas failā!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Jums ir jāuzliek %s %s vai jaunāks." -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "" @@ -4386,7 +4386,7 @@ msgid "Character set of the file" msgstr "Tabulas kodējums:" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Formats" @@ -10187,7 +10187,7 @@ msgid "Error in ZIP archive:" msgstr "" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11715,6 +11715,7 @@ msgid "Global value" msgstr "Globālā vērtība" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "" @@ -12141,45 +12142,31 @@ msgstr "Tabula %s tika izdzēsta" msgid "View dump (schema) of table" msgstr "Apskatīt tabulas dampu (shēmu)" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Pievienot/Dzēst laukus (kolonnas)" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Kopā" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:178 -#, fuzzy -#| msgid "Save as file" -msgid "Save to file" -msgstr "Saglabāt kā failu" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 #, fuzzy #| msgid "User name" msgid "File name" @@ -13581,6 +13568,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Save as file" +#~ msgid "Save to file" +#~ msgstr "Saglabāt kā failu" + #~ msgid "Total count" #~ msgstr "Kopējais skaits" diff --git a/po/mk.po b/po/mk.po index aca17414c7..801c4e3bf2 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2013-01-10 13:39+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Macedonian $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -4028,39 +4028,39 @@ msgstr "" "$cfg['PmaAbsoluteUri'] директивата МОРА да биде подесена во " "конфигурациската податотека!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" "Би требало да го надоградите вашиот %s сервер на верзија %s или понова." -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "" @@ -4511,7 +4511,7 @@ msgid "Character set of the file" msgstr "Кодна страна на податотеката:" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Формат" @@ -10363,7 +10363,7 @@ msgid "Error in ZIP archive:" msgstr "" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11891,6 +11891,7 @@ msgid "Global value" msgstr "Глобална вредност" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "" @@ -12317,45 +12318,31 @@ msgstr "Табелата %s е избришана" msgid "View dump (schema) of table" msgstr "Прикажи содржина (шема) на табелите" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Додади/избриши колона" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Вкупно" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:178 -#, fuzzy -#| msgid "Save as file" -msgid "Save to file" -msgstr "Сочувај како податотека" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 #, fuzzy #| msgid "User name" msgid "File name" @@ -13786,6 +13773,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Save as file" +#~ msgid "Save to file" +#~ msgstr "Сочувај како податотека" + #, fuzzy #~| msgid "Total" #~ msgid "Total count" diff --git a/po/ml.po b/po/ml.po index 032bc168d1..c095d7732a 100644 --- a/po/ml.po +++ b/po/ml.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2011-09-27 08:42+0200\n" "Last-Translator: \n" "Language-Team: Malayalam \n" @@ -528,7 +528,7 @@ msgstr "" msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:140 tbl_gis_visualization.php:173 +#: gis_data_editor.php:140 tbl_gis_visualization.php:152 msgid "Use OpenStreetMaps as Base Layer" msgstr "" @@ -712,7 +712,7 @@ msgid "Database server" msgstr "" #: index.php:230 libraries/Menu.class.php:150 -#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655 #: libraries/config/messages.inc.php:506 msgid "Server" msgstr "" @@ -1674,7 +1674,7 @@ msgstr "" #: libraries/schema/User_Schema.class.php:375 #: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246 -#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519 +#: tbl_indexes.php:334 tbl_relation.php:519 msgid "Save" msgstr "" @@ -3639,59 +3639,59 @@ msgstr "" msgid "Check Privileges" msgstr "" -#: libraries/common.inc.php:577 +#: libraries/common.inc.php:579 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:579 +#: libraries/common.inc.php:581 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:586 +#: libraries/common.inc.php:588 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:593 +#: libraries/common.inc.php:595 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "" @@ -4116,7 +4116,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "" @@ -9451,7 +9451,7 @@ msgid "Error in ZIP archive:" msgstr "" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -10899,6 +10899,7 @@ msgid "Global value" msgstr "" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "" @@ -11300,39 +11301,27 @@ msgstr "" msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 msgid "Label column" msgstr "" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 msgid "Spatial column" msgstr "" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:178 -msgid "Save to file" -msgstr "" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 msgid "File name" msgstr "" diff --git a/po/mn.po b/po/mn.po index b344150340..80530cafb4 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2012-12-13 13:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Mongolian $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -4041,39 +4041,39 @@ msgid "" msgstr "" "$cfg['PmaAbsoluteUri'] -ыг тохиргооны файлд тохируулах хэрэгтэй!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Сервэрийн буруу индекс нь: \"%s\"" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "%1$s сервэрийн хост буруу. Өөрийн тохиргоогоо нягтална уу." -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "Тохиргоонд сонгогдсон буруу зөвшөөрлийн арга:" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Та хувилбар %s -г %s -ээр сайжруулах хэрэгтэй эсвэл дараа." -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "" @@ -4522,7 +4522,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Тогтнол" @@ -10343,7 +10343,7 @@ msgid "Error in ZIP archive:" msgstr "ZIP архивт байгаа алдаа:" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11919,6 +11919,7 @@ msgid "Global value" msgstr "Глобал утга" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "" @@ -12342,45 +12343,31 @@ msgstr "" msgid "View dump (schema) of table" msgstr "Хүснэгтийн схем харах" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Багана нэмэх/устгах" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Нийт" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:178 -#, fuzzy -#| msgid "Save as file" -msgid "Save to file" -msgstr "Илгээх" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 #, fuzzy #| msgid "Table name" msgid "File name" @@ -13849,6 +13836,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "ХИ. давхацсан холболтууд" +#, fuzzy +#~| msgid "Save as file" +#~ msgid "Save to file" +#~ msgstr "Илгээх" + #, fuzzy #~| msgid "Total" #~ msgid "Total count" diff --git a/po/ms.po b/po/ms.po index bb1e5449ed..326d09ddd1 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2013-01-10 13:43+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Malay \n" @@ -549,7 +549,7 @@ msgstr "Eksport" msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:140 tbl_gis_visualization.php:173 +#: gis_data_editor.php:140 tbl_gis_visualization.php:152 msgid "Use OpenStreetMaps as Base Layer" msgstr "" @@ -748,7 +748,7 @@ msgid "Database server" msgstr "pangkalan data" #: index.php:230 libraries/Menu.class.php:150 -#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655 #: libraries/config/messages.inc.php:506 msgid "Server" msgstr "Pelayan" @@ -1820,7 +1820,7 @@ msgstr "" #: libraries/schema/User_Schema.class.php:375 #: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246 -#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519 +#: tbl_indexes.php:334 tbl_relation.php:519 msgid "Save" msgstr "Simpan" @@ -3942,22 +3942,22 @@ msgstr "" msgid "Check Privileges" msgstr "Tiada Privilej" -#: libraries/common.inc.php:577 +#: libraries/common.inc.php:579 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:579 +#: libraries/common.inc.php:581 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:586 +#: libraries/common.inc.php:588 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:593 +#: libraries/common.inc.php:595 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3968,38 +3968,38 @@ msgid "" msgstr "" "$cfg[PmaAbsoluteUri] MESTI disetkan di dalam fail konfigurasi." -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "" @@ -4444,7 +4444,7 @@ msgid "Character set of the file" msgstr "Fail bagi set Aksara:" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Format" @@ -10085,7 +10085,7 @@ msgid "Error in ZIP archive:" msgstr "" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11599,6 +11599,7 @@ msgid "Global value" msgstr "Nilai Global" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "" @@ -12022,45 +12023,31 @@ msgstr "Jadual %s telah digugurkan" msgid "View dump (schema) of table" msgstr "Lihat longgokan (skema) pangkalan data" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Tambah/Padam Kolum Medan" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Jumlah" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:178 -#, fuzzy -#| msgid "Save as file" -msgid "Save to file" -msgstr "Simpan sebagai fail" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 #, fuzzy #| msgid "User name" msgid "File name" @@ -13444,6 +13431,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Save as file" +#~ msgid "Save to file" +#~ msgstr "Simpan sebagai fail" + #, fuzzy #~| msgid "Total" #~ msgid "Total count" diff --git a/po/nb.po b/po/nb.po index 379eefb4cd..e953c827ea 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2013-01-10 13:44+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Norwegian Bokmål \n" "Language-Team: Dutch \n" @@ -533,7 +533,7 @@ msgstr "Ongeldig exporttype" msgid "Value for the column \"%s\"" msgstr "Waarde voor kolom \"%s\"" -#: gis_data_editor.php:140 tbl_gis_visualization.php:173 +#: gis_data_editor.php:140 tbl_gis_visualization.php:152 msgid "Use OpenStreetMaps as Base Layer" msgstr "Gebruik OpenStreetMaps als basislayer" @@ -739,7 +739,7 @@ msgid "Database server" msgstr "Databankserver" #: index.php:230 libraries/Menu.class.php:150 -#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655 #: libraries/config/messages.inc.php:506 msgid "Server" msgstr "Server" @@ -1757,7 +1757,7 @@ msgstr "%d is geen geldig rijnummer." #: libraries/schema/User_Schema.class.php:375 #: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246 -#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519 +#: tbl_indexes.php:334 tbl_relation.php:519 msgid "Save" msgstr "Opslaan" @@ -3419,8 +3419,7 @@ msgid "" "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" msgstr "" "Een tijdstip, van 1970-01-01 00:00:01 UTC tot 2038-01-09 03:14:07 UTC, wordt " -"opgeslaan als aantal seconden sinds het beginmoment (1970-01-01 00:00:00 " -"UTC)" +"opgeslaan als aantal seconden sinds het beginmoment (1970-01-01 00:00:00 UTC)" #: libraries/Types.class.php:326 libraries/Types.class.php:728 #, php-format @@ -3831,11 +3830,11 @@ msgstr "Controleer rechten op databank "%s"." msgid "Check Privileges" msgstr "Controleer rechten" -#: libraries/common.inc.php:577 +#: libraries/common.inc.php:579 msgid "Failed to read configuration file" msgstr "Lezen van het configuratiebestand is niet gelukt" -#: libraries/common.inc.php:579 +#: libraries/common.inc.php:581 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3844,12 +3843,12 @@ msgstr "" "hieronder te bekijken." # 'kon niet vanuit "%1$s" geladen worden' is juister. -#: libraries/common.inc.php:586 +#: libraries/common.inc.php:588 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Standaard configuratiebestand kon niet geladen worden vanuit: %1$s" -#: libraries/common.inc.php:593 +#: libraries/common.inc.php:595 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3857,38 +3856,38 @@ msgstr "" "De [code]$cfg['PmaAbsoluteUri'][/code] richtlijn MOET ingesteld zijn in het " "configuratiebestand!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "Ongeldige serverindex: %s" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Ongeldige machinenaam voor server %1$s. Controleer uw configuratie." -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "Ongeldige authenticatiemethode opgegeven in configuratie:" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "U moet upgraden naar %s %s of hoger." -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "Fout: token niet hetzelfde" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "poging om GLOBALS te overschrijven" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "mogelijk misbruik" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "numerieke toets gedetecteerd" @@ -4338,7 +4337,7 @@ msgid "Character set of the file" msgstr "Karakterset voor het bestand" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Opmaak" @@ -7489,7 +7488,8 @@ msgstr "Ongeldige klassenaam \"%1$s\", \"Node\" zal gebruikt worden" #: libraries/navigation/NodeFactory.class.php:65 #, php-format msgid "Could not include class \"%1$s\", file \"%2$s\" not found" -msgstr "Klasse \"%1$s\" kon niet ingevoegd worden, bestand \"%2$s' niet gevonden" +msgstr "" +"Klasse \"%1$s\" kon niet ingevoegd worden, bestand \"%2$s' niet gevonden" #: libraries/navigation/Nodes/Node_Column_Container.class.php:26 #: libraries/sql_query_form.lib.php:271 @@ -8328,8 +8328,8 @@ msgstr "" "de tijdstip zal worden toegevoegd (Standaard: 0). De tweede optie kan worden " "gebruikt om een alternatieve opmaak te specificeren. Als derde optie kan " "worden opgegeven of de lokale tijd, of de UTC-variant moet worden gebruikt " -"(gebruik \"local\" of \"utc\"). Afhankelijk hiervan verschilt de opmaakcode - " -"voor \"local\", zie de documentatie van de PHP-functie strftime() en voor " +"(gebruik \"local\" of \"utc\"). Afhankelijk hiervan verschilt de opmaakcode " +"- voor \"local\", zie de documentatie van de PHP-functie strftime() en voor " "\"utc\" de functie gmdate()." #: libraries/plugins/transformations/abstract/DownloadTransformationsPlugin.class.php:31 @@ -10116,7 +10116,9 @@ msgid "Error in ZIP archive:" msgstr "Fout in het ZIP-archief:" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +#, fuzzy +#| msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Fatale fout: de navigatie is alleen toegankelijk via AJAX" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11785,6 +11787,7 @@ msgid "Global value" msgstr "Globale waarde" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "Download" @@ -12196,7 +12199,6 @@ msgid "Pie" msgstr "Taart" #: tbl_chart.php:148 -#| msgid "Time" msgctxt "Chart type" msgid "Timeline" msgstr "Tijdlijn" @@ -12248,39 +12250,27 @@ msgstr "Tabel %1$s is aangemaakt." msgid "View dump (schema) of table" msgstr "Een dump (schema) van tabel bekijken" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "GIS-visualisatie tonen" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "Breedte" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "Hoogte" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 msgid "Label column" msgstr "Kolom naam geven" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "-- Geen --" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 msgid "Spatial column" msgstr "Plaatshoudende kolom" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "Hertekenen" -#: tbl_gis_visualization.php:178 -msgid "Save to file" -msgstr "Opslaan naar bestand" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 msgid "File name" msgstr "Bestandsnaam" @@ -13849,6 +13839,15 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert is ingesteld op 0" +#~ msgid "Width" +#~ msgstr "Breedte" + +#~ msgid "Height" +#~ msgstr "Hoogte" + +#~ msgid "Save to file" +#~ msgstr "Opslaan naar bestand" + #~ msgid "Total count" #~ msgstr "Totaal aantal" diff --git a/po/pa.po b/po/pa.po index b1b1cf88fe..50fd329875 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2012-09-01 12:11+0200\n" "Last-Translator: gurjit dhillon \n" "Language-Team: Punjabi \n" "Language-Team: LANGUAGE \n" @@ -528,7 +528,7 @@ msgstr "" msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:140 tbl_gis_visualization.php:173 +#: gis_data_editor.php:140 tbl_gis_visualization.php:152 msgid "Use OpenStreetMaps as Base Layer" msgstr "" @@ -712,7 +712,7 @@ msgid "Database server" msgstr "" #: index.php:230 libraries/Menu.class.php:150 -#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655 #: libraries/config/messages.inc.php:506 msgid "Server" msgstr "" @@ -1670,7 +1670,7 @@ msgstr "" #: libraries/schema/User_Schema.class.php:375 #: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246 -#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519 +#: tbl_indexes.php:334 tbl_relation.php:519 msgid "Save" msgstr "" @@ -3632,59 +3632,59 @@ msgstr "" msgid "Check Privileges" msgstr "" -#: libraries/common.inc.php:577 +#: libraries/common.inc.php:579 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:579 +#: libraries/common.inc.php:581 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:586 +#: libraries/common.inc.php:588 #, possible-php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:593 +#: libraries/common.inc.php:595 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, possible-php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, possible-php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, possible-php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "" @@ -4107,7 +4107,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "" @@ -9431,7 +9431,7 @@ msgid "Error in ZIP archive:" msgstr "" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -10878,6 +10878,7 @@ msgid "Global value" msgstr "" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "" @@ -11277,39 +11278,27 @@ msgstr "" msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 msgid "Label column" msgstr "" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 msgid "Spatial column" msgstr "" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:178 -msgid "Save to file" -msgstr "" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 msgid "File name" msgstr "" diff --git a/po/pl.po b/po/pl.po index 36e759a33b..9fdfdef0d8 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2013-01-10 13:42+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Polish \n" "Language-Team: Portuguese $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3812,40 +3812,40 @@ msgstr "" "A directiva $cfg['PmaAbsoluteUri'] TEM que ser definida no " "ficheiro de configuração!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "Índice de servidor inválido: \"%s\"" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nome de serivdor inválido para o servidor %1$s. Verifique as suas " "configurações." -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "Método de autenticação definido nas configurações inválido:" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "deve actualizar para %s %s ou mais recente." -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "possível 'exploit'" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "Tecla numérica detectada" @@ -4295,7 +4295,7 @@ msgid "Character set of the file" msgstr "Configurar o Mapa de Caracteres do ficheiro" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Formato" @@ -10112,7 +10112,7 @@ msgid "Error in ZIP archive:" msgstr "" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11637,6 +11637,7 @@ msgid "Global value" msgstr "Valor Global" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "" @@ -12063,45 +12064,31 @@ msgstr "A tabela %s foi eliminada" msgid "View dump (schema) of table" msgstr "Ver o esquema da tabela" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Adicionar/Remover Campos" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Total" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:178 -#, fuzzy -#| msgid "Save as file" -msgid "Save to file" -msgstr "envia" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 #, fuzzy #| msgid "User name" msgid "File name" @@ -13566,6 +13553,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert está definida com o valor 0" +#, fuzzy +#~| msgid "Save as file" +#~ msgid "Save to file" +#~ msgstr "envia" + #~ msgid "Total count" #~ msgstr "Contagem total" diff --git a/po/pt_BR.po b/po/pt_BR.po index efbfd1353c..f37fb0e6ea 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2013-01-10 13:39+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Portuguese (Brazil) \n" -"Language-Team: Romanian " -"\n" +"Language-Team: Romanian \n" "Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,9 +37,9 @@ msgid "" "parent window, or your browser's security settings are configured to block " "cross-window updates." msgstr "" -"Fereastra de navigare nu a putut fi actualizată. Poate aţi închis " -"fereastra-părinte sau setările de securitate ale sistemului sunt configurate " -"să blocheze actualizările dintre ferestre." +"Fereastra de navigare nu a putut fi actualizată. Poate aţi închis fereastra-" +"părinte sau setările de securitate ale sistemului sunt configurate să " +"blocheze actualizările dintre ferestre." #: browse_foreigners.php:166 libraries/Menu.class.php:263 #: libraries/Menu.class.php:352 libraries/Util.class.php:3276 @@ -538,7 +538,7 @@ msgstr "Modul de export este invalid" msgid "Value for the column \"%s\"" msgstr "Valoare pentru coloana \"%s\"" -#: gis_data_editor.php:140 tbl_gis_visualization.php:173 +#: gis_data_editor.php:140 tbl_gis_visualization.php:152 msgid "Use OpenStreetMaps as Base Layer" msgstr "" @@ -752,7 +752,7 @@ msgid "Database server" msgstr "Bază de date pentru utilizatorul" #: index.php:230 libraries/Menu.class.php:150 -#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655 #: libraries/config/messages.inc.php:506 msgid "Server" msgstr "Server" @@ -1839,7 +1839,7 @@ msgstr "%d nu este un număr valid de rînduri." #: libraries/schema/User_Schema.class.php:375 #: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246 -#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519 +#: tbl_indexes.php:334 tbl_relation.php:519 msgid "Save" msgstr "Salveaza" @@ -3946,25 +3946,25 @@ msgstr "Verifică privilegiile pentru baza de date "%s"." msgid "Check Privileges" msgstr "Verifică privilegiile" -#: libraries/common.inc.php:577 +#: libraries/common.inc.php:579 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file" msgstr "Nu s-a putut încărca configurația implicită din: „%1$s”" -#: libraries/common.inc.php:579 +#: libraries/common.inc.php:581 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:586 +#: libraries/common.inc.php:588 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Nu s-a putut încărca configurația implicită din: „%1$s”" -#: libraries/common.inc.php:593 +#: libraries/common.inc.php:595 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3976,41 +3976,41 @@ msgstr "" "Directiva $cfg['PmaAbsoluteUri'] TREBUIE să fie stabilită în " "fișierul de configurare!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Index de server nevalid: „%s”" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Gazdă nevalidă pentru serverul %1$s. Vă rugăm să revizuiți configurația " "dumneavoastră." -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "Metodă de autentificare nevalidă stabilită în configurație:" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Ar trebui sa reactualizati serverul %s %s la o versiune mai noua." -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "cheie numerica detectată" @@ -4470,7 +4470,7 @@ msgid "Character set of the file" msgstr "Setul de caractere al fișierului" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Format" @@ -10601,7 +10601,7 @@ msgid "Error in ZIP archive:" msgstr "Eroare în arhiva ZIP:" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -12148,6 +12148,7 @@ msgid "Global value" msgstr "Valoare globală" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "Descarcă" @@ -12581,45 +12582,31 @@ msgstr "Tabelul %1$s a fost creat." msgid "View dump (schema) of table" msgstr "Vizualizarea schemei tabelului" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "Afișează Vizualizarea GIS" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "Lățime" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "Înălțime" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Adaugă/șterge coloane" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Număr de fișiere-jurnal" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "Redesenează" -#: tbl_gis_visualization.php:178 -#, fuzzy -#| msgid "Save as file" -msgid "Save to file" -msgstr "Trimite" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 #, fuzzy #| msgid "Table name" msgid "File name" @@ -13122,8 +13109,8 @@ msgstr "" #: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -"Documentaţia pentru Percona se găseşte la adresa " -"http://www.percona.com/docs/wiki/" +"Documentaţia pentru Percona se găseşte la adresa http://www.percona.com/docs/" +"wiki/" #: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" @@ -13142,7 +13129,6 @@ msgstr "" "specifică Drizzle" #: libraries/advisory_rules.txt:142 -#| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "Arhitectura MySQL" @@ -13167,12 +13153,10 @@ msgid "Available memory on this host: %s" msgstr "Memoria disponibilă pe acest server este: %s" #: libraries/advisory_rules.txt:153 -#| msgid "Query cache" msgid "Query cache disabled" msgstr "Pastrarea in memoria cache a interogărilor este dezactivată" #: libraries/advisory_rules.txt:156 -#| msgid "The server is not responding" msgid "The query cache is not enabled." msgstr "Pastrarea in memoria cache a interogărilor nu este activată." @@ -13196,12 +13180,10 @@ msgstr "" "query_cache_type este setat cu valoarea 'OFF'" #: libraries/advisory_rules.txt:160 -#| msgid "Query cache" msgid "Query caching method" msgstr "Metoda de păstrare în memoria cache a interogarilor" #: libraries/advisory_rules.txt:163 -#| msgid "Query cache" msgid "Suboptimal caching method." msgstr "Metoda de folosire a memoriei cache sub nivelul optim." @@ -13214,10 +13196,9 @@ msgid "" msgstr "" "Folosiți metoda de păstrare în memoria cache a interogărilor MySQL prin " "creșterea traficului destul de mult pe baza de date. Ar putea merita sa " -"aveți în vedere utilizarea opțiunii memcached în locul păstrare în memoria cache a " -"interogărilor MySQL, mai ales dacă aveți mai multe instanțe." +"aveți în vedere utilizarea opțiunii memcached în locul păstrare în memoria " +"cache a interogărilor MySQL, mai ales dacă aveți mai multe instanțe." #: libraries/advisory_rules.txt:165 #, php-format @@ -13226,12 +13207,11 @@ msgid "" "This rule fires if there is more than 100 queries per second." msgstr "" "Opțiunea de păstrare în memoria cache a interogărilor MySQL este activata și " -"serverul primește %d interogări pe secundă. Această regulă se activează " -"dacă există mai mult de 100 de interogări pe secundă." +"serverul primește %d interogări pe secundă. Această regulă se activează dacă " +"există mai mult de 100 de interogări pe secundă." #: libraries/advisory_rules.txt:167 #, php-format -#| msgid "Query cache" msgid "Query cache efficiency (%%)" msgstr "" "Eficiența metodei de păstrare în memoria cache a interogărilor MySQL (%%)" @@ -13249,7 +13229,6 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format -#| msgid "Sort buffer size" msgid "The current query cache hit rate of %s%% is below 20%%" msgstr "" "Rata curenta de acțiune a metodei de păstrare în memoria cache a " @@ -13284,12 +13263,10 @@ msgstr "" "totală a interogărilor este %s%%. Ar trebui să fie peste 80%%" #: libraries/advisory_rules.txt:181 -#| msgid "Query cache" msgid "Query cache fragmentation" msgstr "Fragmentarea memoriei cache a interogărilor" #: libraries/advisory_rules.txt:184 -#| msgid "The server is not responding" msgid "The query cache is considerably fragmented." msgstr "" "Memoria cache a interogărilor este fragmentată într-o proporție " @@ -13308,15 +13285,15 @@ msgid "" msgstr "" "Fragmentarea severă este probabil (mai degrabă) să necesite creşterea " "valorii parametrului Qcache_lowmem_prunes. Acest lucru ar putea fi cauzat de " -"prea multe stergeri ale memoriei cache a interogărilor din cauza unei " -"valori prea mici a parametrului {query_cache_size}. Pentru o soluţionare " -"imediată, dar de scurtă durata puteti goli (şterge) memoria cache a " -"interogărilor (această acţiune ar putea bloca memoria cache a interogărilor " -"pentru o perioadă lungă de timp). Ajustarea atentă a valorii parametrului " +"prea multe stergeri ale memoriei cache a interogărilor din cauza unei valori " +"prea mici a parametrului {query_cache_size}. Pentru o soluţionare imediată, " +"dar de scurtă durata puteti goli (şterge) memoria cache a interogărilor " +"(această acţiune ar putea bloca memoria cache a interogărilor pentru o " +"perioadă lungă de timp). Ajustarea atentă a valorii parametrului " "{query_cache_min_res_unit}, la o valoare inferioară v-ar putea ajuta de " "asemenea, de ex. puteţi seta valoarea la dimensiunea medie a interogările " -"din memoria cache utilizând formula: (query_cache_size - qcache_free_memory) " -"/ qcache_queries_in_cache" +"din memoria cache utilizând formula: (query_cache_size - " +"qcache_free_memory) / qcache_queries_in_cache" #: libraries/advisory_rules.txt:186 #, php-format @@ -13327,16 +13304,14 @@ msgid "" msgstr "" "Memoria cache este în prezent fragmentată în procent de %s%%, o fragmentare " "în procent de 100%% înseamnă că memoria cache a interogărilor este o alocare " -"alternativă de blocuri libere și utilizate. Această valoare ar trebui să " -"fie sub 20%%." +"alternativă de blocuri libere și utilizate. Această valoare ar trebui să fie " +"sub 20%%." #: libraries/advisory_rules.txt:188 -#| msgid "Query cache" msgid "Query cache low memory prunes" msgstr "Stergeri datorate insuficienţei memoriei cache a interogărilor" #: libraries/advisory_rules.txt:191 -#| msgid "The amount of free memory for query cache." msgid "" "Cached queries are removed due to low query cache memory from the query " "cache." @@ -13366,7 +13341,6 @@ msgstr "" "regulilor este: 0,1%%)" #: libraries/advisory_rules.txt:195 -#| msgid "Query cache" msgid "Query cache max size" msgstr "Mărimea maximă a memoriei cache alocată interogărilor" @@ -13394,7 +13368,6 @@ msgid "Current query cache size: %s" msgstr "Dimensiune curentă a memoriei cache a interogărilor: %s" #: libraries/advisory_rules.txt:202 -#| msgid "Query results" msgid "Query cache min result size" msgstr "Dimensiunea minimă a rezultatelor în memoria cache a interogărilor" @@ -13423,22 +13396,19 @@ msgstr "" "care depășesc dimensiunea de 1 MiB care sunt bune de păstrat în memorie " "(multe citiri, puține scrieri), atunci creșterea valorii parametrului " "{query_cache_limit} va crește eficiența. Întrucât în cazul în care mai multe " -"rezultate ale interogărilor depășesc 1 MiB şi nu sunt foarte bune de " -"păstrat în memorie (de multe ori invalidate de actualizări ale tabelului) " -"creşterea valorii parametrului {query_cache_limit} ar putea reduce " -"eficienţa." +"rezultate ale interogărilor depășesc 1 MiB şi nu sunt foarte bune de păstrat " +"în memorie (de multe ori invalidate de actualizări ale tabelului) creşterea " +"valorii parametrului {query_cache_limit} ar putea reduce eficienţa." #: libraries/advisory_rules.txt:207 msgid "query_cache_limit is set to 1 MiB" msgstr "valoarea parametrului query_cache_limit este setata la 1 MiB" #: libraries/advisory_rules.txt:211 -#| msgid "Allows creating temporary tables." msgid "Percentage of sorts that cause temporary tables" msgstr "Procentul de sortări care provoaca generarea de tabele temporare" #: libraries/advisory_rules.txt:214 libraries/advisory_rules.txt:221 -#| msgid "Allows creating temporary tables." msgid "Too many sorts are causing temporary tables." msgstr "Prea multe sortări cauzează crearea de tabele temporare." @@ -13447,8 +13417,8 @@ msgid "" "Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending " "on your system memory limits" msgstr "" -"Luaţi în considerare creşterea valorilor parametrilor sort_buffer_size " -"şi/sau read_rnd_buffer_size, în funcţie de limitele memoriei sistemului " +"Luaţi în considerare creşterea valorilor parametrilor sort_buffer_size şi/" +"sau read_rnd_buffer_size, în funcţie de limitele memoriei sistemului " "dumneavoastră" #: libraries/advisory_rules.txt:216 @@ -13461,13 +13431,11 @@ msgstr "" "fie mai mică de 10%%." #: libraries/advisory_rules.txt:218 -#| msgid "Allows creating temporary tables." msgid "Rate of sorts that cause temporary tables" msgstr "Rata de sortări care au generat tabele temporare" #: libraries/advisory_rules.txt:223 #, php-format -#| msgid "Sort buffer size" msgid "" "Temporary tables average: %s, this value should be less than 1 per hour." msgstr "" @@ -13475,7 +13443,6 @@ msgstr "" "1 oră." #: libraries/advisory_rules.txt:225 -#| msgid "Start" msgid "Sort rows" msgstr "Sortare (ordonare) rânduri" @@ -14165,7 +14132,6 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:459 -#| msgid "max. concurrent connections" msgid "MyISAM concurrent inserts" msgstr "inserări concurente MyISAM" @@ -14187,6 +14153,17 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert este setat cu 0" +#~ msgid "Width" +#~ msgstr "Lățime" + +#~ msgid "Height" +#~ msgstr "Înălțime" + +#, fuzzy +#~| msgid "Save as file" +#~ msgid "Save to file" +#~ msgstr "Trimite" + #, fuzzy #~| msgid "Log file count" #~ msgid "Total count" diff --git a/po/ru.po b/po/ru.po index 67d3c79957..5a6b46c2e0 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,17 +3,17 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2013-01-20 19:51+0200\n" "Last-Translator: Victor Volkov \n" -"Language-Team: Russian " -"\n" +"Language-Team: Russian \n" "Language: ru\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%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 1.4-dev\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 @@ -537,7 +537,7 @@ msgstr "Ошибочный тип экспорта" msgid "Value for the column \"%s\"" msgstr "Значение для поля \"%s\"" -#: gis_data_editor.php:140 tbl_gis_visualization.php:173 +#: gis_data_editor.php:140 tbl_gis_visualization.php:152 msgid "Use OpenStreetMaps as Base Layer" msgstr "Используйте в качестве основного слоя OpenStreetMaps" @@ -739,7 +739,7 @@ msgid "Database server" msgstr "Сервер баз данных" #: index.php:230 libraries/Menu.class.php:150 -#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655 #: libraries/config/messages.inc.php:506 msgid "Server" msgstr "Сервер" @@ -1754,7 +1754,7 @@ msgstr "Число %d не является правильным номером #: libraries/schema/User_Schema.class.php:375 #: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246 -#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519 +#: tbl_indexes.php:334 tbl_relation.php:519 msgid "Save" msgstr "Сохранить" @@ -3829,11 +3829,11 @@ msgstr "Проверить привилегии для базы данных &qu msgid "Check Privileges" msgstr "Проверить привилегии" -#: libraries/common.inc.php:577 +#: libraries/common.inc.php:579 msgid "Failed to read configuration file" msgstr "Ошибка при чтении конфигурационного файла" -#: libraries/common.inc.php:579 +#: libraries/common.inc.php:581 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3841,12 +3841,12 @@ msgstr "" "Обычно это означает наличие синтаксических ошибок, пожалуйста, проверьте " "выведенные ниже ошибки." -#: libraries/common.inc.php:586 +#: libraries/common.inc.php:588 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Невозможно загрузить изначальную конфигурацию из: %1$s" -#: libraries/common.inc.php:593 +#: libraries/common.inc.php:595 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3854,41 +3854,41 @@ msgstr "" "Директива [code]$cfg['PmaAbsoluteUri'][/code] ДОЛЖНА быть установлена в " "конфигурационном файле!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "Неверный индекс сервера: %s" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Для сервера %1$s указано неверное имя хоста. Исправьте настройки заданные в " "конфигурационном файле phpMyAdmin." -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "" "В конфигурационном файле phpMyAdmin установлен неверный метод аутентификации:" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Необходимо обновить %s до версии %s или выше." -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "Ошибка: Несоответствие Тоукена" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "попытка перезаписи GLOBALS" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "возможная уязвимость" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "определена числовая клавиша" @@ -4336,7 +4336,7 @@ msgid "Character set of the file" msgstr "Кодировка файла" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Формат" @@ -10088,7 +10088,9 @@ msgid "Error in ZIP archive:" msgstr "Ошибка в ZIP-архиве:" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +#, fuzzy +#| msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" "Неисправимая ошибка: Панель навигации может быть доступна только с помощью " "ajax" @@ -11755,6 +11757,7 @@ msgid "Global value" msgstr "Глобальное значение" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "Скачать" @@ -12169,7 +12172,6 @@ msgid "Pie" msgstr "Круговая" #: tbl_chart.php:148 -#| msgid "Time" msgctxt "Chart type" msgid "Timeline" msgstr "Шкала времени" @@ -12221,39 +12223,27 @@ msgstr "Таблица %1$s была создана." msgid "View dump (schema) of table" msgstr "Отобразить дамп (схему) таблицы" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "Визуализация GIS данных" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "Ширина" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "Высота" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 msgid "Label column" msgstr "Название столбца" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "-- Пусто --" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 msgid "Spatial column" msgstr "Пространственный столбец" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "Пересоздать" -#: tbl_gis_visualization.php:178 -msgid "Save to file" -msgstr "Сохранить в файл" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 msgid "File name" msgstr "Имя файла" @@ -13821,6 +13811,15 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert установлен в 0" +#~ msgid "Width" +#~ msgstr "Ширина" + +#~ msgid "Height" +#~ msgstr "Высота" + +#~ msgid "Save to file" +#~ msgstr "Сохранить в файл" + #~ msgid "Total count" #~ msgstr "Общее количество" diff --git a/po/si.po b/po/si.po index 5502017e37..dbdca9353a 100644 --- a/po/si.po +++ b/po/si.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2013-01-20 17:30+0200\n" "Last-Translator: Madhura Jayaratne \n" -"Language-Team: Sinhala " -"\n" +"Language-Team: Sinhala \n" "Language: si\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -532,7 +532,7 @@ msgstr "වැරදි අපනයන වර්ගයකි" msgid "Value for the column \"%s\"" msgstr "\"%s\" තීරය සඳහා අගයන්" -#: gis_data_editor.php:140 tbl_gis_visualization.php:173 +#: gis_data_editor.php:140 tbl_gis_visualization.php:152 msgid "Use OpenStreetMaps as Base Layer" msgstr "මූලික ස්ථරය ලෙස OpenStreetMaps භාවිතා කරන්න" @@ -727,7 +727,7 @@ msgid "Database server" msgstr "දත්තගබඩා සේවාදායකය" #: index.php:230 libraries/Menu.class.php:150 -#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655 #: libraries/config/messages.inc.php:506 msgid "Server" msgstr "සේවාදායකය" @@ -1721,7 +1721,7 @@ msgstr "%d වලංගු පේළි අංකයක් නොවේ." #: libraries/schema/User_Schema.class.php:375 #: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246 -#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519 +#: tbl_indexes.php:334 tbl_relation.php:519 msgid "Save" msgstr "සුරකින්න" @@ -3745,61 +3745,61 @@ msgstr ""%s" දත්තගබඩාව සඳහා වරප්‍ msgid "Check Privileges" msgstr "වරප්‍රසාද පරීක්ෂා කරන්න" -#: libraries/common.inc.php:577 +#: libraries/common.inc.php:579 msgid "Failed to read configuration file" msgstr "වින්‍යාස ගොනුව කියවීමට අසමත් විය" -#: libraries/common.inc.php:579 +#: libraries/common.inc.php:581 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "මෙහි සාමාන්‍ය අරුත වාක්‍ය වින්‍යාස දෝෂයකි, කරුණාකර පහත දැක්වෙන දෝෂ පරීක්ෂා කර බලන්න." -#: libraries/common.inc.php:586 +#: libraries/common.inc.php:588 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "%1$s වෙතින් පෙරනිමි සිටුවම් පූරණය කර ගත නොහැකි විය" -#: libraries/common.inc.php:593 +#: libraries/common.inc.php:595 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" "[code]$cfg['PmaAbsoluteUri'][/code] සඳහා අගය ඔබගේ වින්‍යාස ගොනුවේ අඩංගු විය යුතුමය!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "අවලංගු සේවාදායක සුචිය: %s" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "%1$s සේවාදායකය සඳහා වැරදි දායක නාමයක්. ඔබ ඔබගේ වින්‍යාසයන් පරීකෂා කර බැලිය යුතුය." -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "වින්‍යසයන්හි වලංගු නැති සත්‍යාපන ක්‍රමයක් සිටුවා ඇත:" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "ඔබ %s %s හෝ ඉන්පසු අනුවාදයක් වෙත යාවත්කාලීන කල යුතුය." -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "දෝෂය: ටෝකන නොගැලපීම" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS අගයන් උඩින් ලිවීමේ උත්සාහය" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "විය හැකි අයුතු ප්‍රයෝජන ගැනීමක්" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "සංඛ්‍යාත්මක යතුරක් අනාවරණය වුණි" @@ -4240,7 +4240,7 @@ msgid "Character set of the file" msgstr "ගොනුවේ අක්ෂර කට්ටලය" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "ආකෘතිය" @@ -5186,15 +5186,11 @@ msgid "Missing phpMyAdmin configuration storage tables" msgstr "phpMyAdmin වින්‍යාස ගබඩාවේ අඩු වගු" #: libraries/config/messages.inc.php:334 -#| msgid "" -#| "Disable the default warning that is displayed if mcrypt is missing for " -#| "cookie authentication" msgid "" "Disable the default warning that is displayed if a difference between the " "MySQL library and server is detected" msgstr "" -"MySQL පුස්තකාලය සහ සේවාදායකය අතර වෙනසක් හඳුනාගත් විට පෙන්වන අනතුරු ඇඟවීම " -"අක්‍රීය කරන්න" +"MySQL පුස්තකාලය සහ සේවාදායකය අතර වෙනසක් හඳුනාගත් විට පෙන්වන අනතුරු ඇඟවීම අක්‍රීය කරන්න" #: libraries/config/messages.inc.php:335 msgid "Server/library difference warning" @@ -5349,30 +5345,24 @@ msgid "Authentication type" msgstr "සත්‍යාපන වර්ගය" #: libraries/config/messages.inc.php:374 -#| msgid "" -#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/" -#| "a] support, suggested: [kbd]pma_bookmark[/kbd]" msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" msgstr "" -"[a@http://wiki.phpmyadmin.net/pma/bookmark]පොත්සලකුණු[/a] විශේෂාංගය අනවශ්‍ය " -"නම් හිස්ව තබන්න. යෝජිත: [kbd]pma__bookmark[/kbd]" +"[a@http://wiki.phpmyadmin.net/pma/bookmark]පොත්සලකුණු[/a] විශේෂාංගය අනවශ්‍ය නම් හිස්ව " +"තබන්න. යෝජිත: [kbd]pma__bookmark[/kbd]" #: libraries/config/messages.inc.php:375 msgid "Bookmark table" msgstr "පොත්සලකුණු ගොනුව" #: libraries/config/messages.inc.php:376 -#| msgid "" -#| "Leave blank for no column comments/mime types, suggested: [kbd]" -#| "pma_column_info[/kbd]" msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]" msgstr "" -"තීර විස්තර/mime වර්ග විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න. යෝජිත: " -"[kbd]pma__column_info[/kbd]" +"තීර විස්තර/mime වර්ග විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න. යෝජිත: [kbd]pma__column_info[/" +"kbd]" #: libraries/config/messages.inc.php:377 msgid "Column information table" @@ -5431,15 +5421,11 @@ msgid "Count tables" msgstr "වගු ගණන් කරන්න" #: libraries/config/messages.inc.php:389 -#| msgid "" -#| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" -#| "kbd]" msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"සැලසුම්කරණය විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: " -"[kbd]pma__designer_coords[/kbd]" +"සැලසුම්කරණය විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma__designer_coords[/kbd]" #: libraries/config/messages.inc.php:390 msgid "Designer table" @@ -5472,15 +5458,12 @@ msgid "Hide databases" msgstr "දත්තගබඩා සඟවන්න" #: libraries/config/messages.inc.php:397 -#| msgid "" -#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" -#| "[/kbd]" msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" msgstr "" -"SQL විමසුම් ඉතිහාසය රඳවා ගැනීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: " -"[kbd]pma__history[/kbd]" +"SQL විමසුම් ඉතිහාසය රඳවා ගැනීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]" +"pma__history[/kbd]" #: libraries/config/messages.inc.php:398 msgid "SQL query history table" @@ -5538,13 +5521,11 @@ msgid "Password for config auth" msgstr "config සත්‍යාපනය සඳහා මුරපදය" #: libraries/config/messages.inc.php:410 -#| msgid "" -#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]" msgstr "" -"ක්‍රමානුරූපය PDF ලෙස අපනයනය කිරීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: " -"[kbd]pma__pdf_pages[/kbd]" +"ක්‍රමානුරූපය PDF ලෙස අපනයනය කිරීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]" +"pma__pdf_pages[/kbd]" #: libraries/config/messages.inc.php:411 msgid "PDF schema: pages table" @@ -5573,30 +5554,24 @@ msgid "Server port" msgstr "සර්වරයේ පොර්ට්" #: libraries/config/messages.inc.php:416 -#| msgid "" -#| "Leave blank for no \"persistent\" recently used tables across sessions, " -#| "suggested: [kbd]pma_recent[/kbd]" msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]" msgstr "" -"සැසි අතර \"කල් පවත්නා\" ලෙස මෑතදී භාවිතා කල වගු මතක තබාගැනීමේ විශේෂාංගය " -"අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma__recent[/kbd]" +"සැසි අතර \"කල් පවත්නා\" ලෙස මෑතදී භාවිතා කල වගු මතක තබාගැනීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව " +"තබන්න, යෝජිත: [kbd]pma__recent[/kbd]" #: libraries/config/messages.inc.php:417 msgid "Recently used table" msgstr "මෑතදී භාවිතා වූ වගුව" #: libraries/config/messages.inc.php:418 -#| msgid "" -#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -#| "links[/a] support, suggested: [kbd]pma_relation[/kbd]" msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" -"[a@http://wiki.phpmyadmin.net/pma/relation]වගු අතර සම්බන්ධතා දැක්වෙන " -"සබැඳි[/a] විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma__relation[/kbd]" +"[a@http://wiki.phpmyadmin.net/pma/relation]වගු අතර සම්බන්ධතා දැක්වෙන සබැඳි[/a] " +"විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma__relation[/kbd]" #: libraries/config/messages.inc.php:419 msgid "Relation table" @@ -5643,45 +5618,36 @@ msgid "Use SSL" msgstr "SSL භාවිතා කරන්න" #: libraries/config/messages.inc.php:429 -#| msgid "" -#| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/" -#| "kbd]" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]" msgstr "" -"ක්‍රමානුරූපය PDF ලෙස අපනයනය කිරීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: " -"[kbd]pma__table_coords[/kbd]" +"ක්‍රමානුරූපය PDF ලෙස අපනයනය කිරීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]" +"pma__table_coords[/kbd]" #: libraries/config/messages.inc.php:430 msgid "PDF schema: table coordinates" msgstr "PDF ක්‍රමානුරූපය: වගු ඛණ්ඩාංක" #: libraries/config/messages.inc.php:431 -#| msgid "" -#| "Table to describe the display columns, leave blank for no support; " -#| "suggested: [kbd]pma_table_info[/kbd]" msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]" msgstr "" -"දර්ෂිත තීර පිලිබඳ දත්ත අඩංගු වගුව. විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න; යෝජිත: " -"[kbd]pma__table_info[/kbd]" +"දර්ෂිත තීර පිලිබඳ දත්ත අඩංගු වගුව. විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න; යෝජිත: [kbd]" +"pma__table_info[/kbd]" #: libraries/config/messages.inc.php:432 msgid "Display columns table" msgstr "පෙන්විය යුතු තීර පිළිබඳ දත්ත ඇතුලත් වගුව" #: libraries/config/messages.inc.php:433 -#| msgid "" -#| "Leave blank for no \"persistent\" tables'UI preferences across sessions, " -#| "suggested: [kbd]pma_table_uiprefs[/kbd]" msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]" msgstr "" -"සැසි අතර \"කල් පවත්නා\" ලෙස වගු අතුරු මුහුණත සම්බන්ධ අභිරුචි තබාගැනීමේ " -"විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma__table_uiprefs[/kbd]" +"සැසි අතර \"කල් පවත්නා\" ලෙස වගු අතුරු මුහුණත සම්බන්ධ අභිරුචි තබාගැනීමේ විශේෂාංගය අනවශ්‍ය නම් " +"හිස්ව තබන්න, යෝජිත: [kbd]pma__table_uiprefs[/kbd]" #: libraries/config/messages.inc.php:434 msgid "UI preferences table" @@ -5730,15 +5696,11 @@ msgid "Statements to track" msgstr "අවධානය සක්‍රීය කල යුතු ප්‍රකාශ" #: libraries/config/messages.inc.php:443 -#| msgid "" -#| "Leave blank for no SQL query tracking support, suggested: [kbd]" -#| "pma_tracking[/kbd]" msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]" msgstr "" -"SQL විමසුම් අවධානය විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: " -"[kbd]pma__tracking[/kbd]" +"SQL විමසුම් අවධානය විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma__tracking[/kbd]" #: libraries/config/messages.inc.php:444 msgid "SQL query tracking table" @@ -5755,15 +5717,12 @@ msgid "Automatically create versions" msgstr "ස්වයංක්‍රියව අනුවාද සාදන්න" #: libraries/config/messages.inc.php:447 -#| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: [kbd]" -#| "pma_userconfig[/kbd]" msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]" msgstr "" -"භාවිතා කරන්නාගේ අභිරුචි දත්තගබඩාවේ ගබඩා කිරීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව " -"තබන්න; යෝජිත: [kbd]pma__userconfig[/kbd]" +"භාවිතා කරන්නාගේ අභිරුචි දත්තගබඩාවේ ගබඩා කිරීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න; යෝජිත: " +"[kbd]pma__userconfig[/kbd]" #: libraries/config/messages.inc.php:448 msgid "User preferences storage table" @@ -7237,18 +7196,15 @@ msgstr[0] "" msgstr[1] "" #: libraries/navigation/NavigationTree.class.php:1027 -#| msgid "Filter databases by name" msgid "filter databases by name" msgstr "දත්තගබඩා නමින් පෙරහන්න" #: libraries/navigation/NavigationTree.class.php:1028 #: libraries/navigation/NavigationTree.class.php:1054 -#| msgid "Clear series" msgid "Clear Fast Filter" msgstr "පෙරහන ප්‍රත්‍යාරම්භ කරන්න" #: libraries/navigation/NavigationTree.class.php:1053 -#| msgid "Filter tables by name" msgid "filter items by name" msgstr "අයිතම නමින් පෙරහන්න" @@ -7269,13 +7225,11 @@ msgid "Columns" msgstr "තීර" #: libraries/navigation/Nodes/Node_Column_Container.class.php:38 -#| msgid "New" msgctxt "Create new column" msgid "New" msgstr "නව තීරයක්" #: libraries/navigation/Nodes/Node_Event_Container.class.php:36 -#| msgid "New" msgctxt "Create new event" msgid "New" msgstr "නව සිද්ධියක්" @@ -7287,13 +7241,11 @@ msgid "Functions" msgstr "ශ්‍රිත" #: libraries/navigation/Nodes/Node_Function_Container.class.php:36 -#| msgid "New" msgctxt "Create new function" msgid "New" msgstr "නව ශ්‍රිතයක්" #: libraries/navigation/Nodes/Node_Index_Container.class.php:38 -#| msgid "New" msgctxt "Create new index" msgid "New" msgstr "නව සුචියක්" @@ -7306,19 +7258,16 @@ msgstr "ක්‍රියාපටිපාටි" #: libraries/navigation/Nodes/Node_Procedure_Container.class.php:36 #: libraries/rte/rte_footer.lib.php:29 -#| msgid "New" msgctxt "Create new procedure" msgid "New" msgstr "නව ක්‍රියාපටිපාටියක්" #: libraries/navigation/Nodes/Node_Table_Container.class.php:40 -#| msgid "New" msgctxt "Create new table" msgid "New" msgstr "නව වගුවක්" #: libraries/navigation/Nodes/Node_Trigger_Container.class.php:36 -#| msgid "New" msgctxt "Create new trigger" msgid "New" msgstr "නව ප්‍රේරකයක්" @@ -7329,7 +7278,6 @@ msgid "Views" msgstr "දසුන්" #: libraries/navigation/Nodes/Node_View_Container.class.php:36 -#| msgid "New" msgctxt "Create new view" msgid "New" msgstr "නව දසුනක්" @@ -7840,7 +7788,6 @@ msgstr "" "නාමයන් ආරක්ෂා කරයි)" #: libraries/plugins/export/ExportSql.class.php:295 -#| msgid "Object creation options" msgid "Data creation options" msgstr "දත්ත සෑදීමේ විකල්ප" @@ -9233,7 +9180,6 @@ msgid "User has been added." msgstr "භාවිතා කරන්නා එක් කරන ලදි." #: libraries/server_privileges.lib.php:1625 -#| msgid "New" msgctxt "Create new user" msgid "New" msgstr "නව භාවිතා කරන්නෙක්" @@ -9802,7 +9748,7 @@ msgid "Error in ZIP archive:" msgstr "ZIP ආරක්ෂණයේ දෝෂයක් ඇත:" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11305,6 +11251,7 @@ msgid "Global value" msgstr "ගෝලීය අගය" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "බාගත කරන්න" @@ -11602,7 +11549,6 @@ msgid "Using bookmark \"%s\" as default browse query." msgstr "\"%s\" පොත් සලකුණ පිරික්සීම සඳහා වූ පෙරනිමි SQL විමසුම ලෙස යොදා ගනිමින්." #: sql.php:381 -#| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "පොත් සලකුණ නොසාදන ලදි" @@ -11632,7 +11578,6 @@ msgid "Label" msgstr "ලේබලය" #: tbl_chart.php:43 -#| msgid "No data found" msgid "No data to display" msgstr "පෙන්වීම සඳහා දත්ත නොමැත" @@ -11667,7 +11612,6 @@ msgid "Pie" msgstr "වට" #: tbl_chart.php:148 -#| msgid "Time" msgctxt "Chart type" msgid "Timeline" msgstr "කාලරාමු" @@ -11719,39 +11663,27 @@ msgstr "%1$s වගුව සාදන ලදි." msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "ජ්‍යාමිතික දත්ත නිරූපණය" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "පළල" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "උස" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 msgid "Label column" msgstr "ලේබල තීරුව" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "- කිසිවක් නොමැත -" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 msgid "Spatial column" msgstr "ජ්‍යාමිතික තීරුව" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "නැවත අඳින්න" -#: tbl_gis_visualization.php:178 -msgid "Save to file" -msgstr "ගොනුවකට සුරකින්න" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 msgid "File name" msgstr "ගොනුවේ නම" @@ -11781,7 +11713,6 @@ msgid "" msgstr "(\"PRIMARY\" නාමය ප්‍රාථමික මූලය සඳහා පමණක් භාවිතා කල යුතුය!)" #: tbl_indexes.php:227 -#| msgid "Comment" msgid "Comment:" msgstr "ටීකාව:" @@ -12133,7 +12064,6 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:96 -#| msgid "log_slow_queries is set to 'OFF'" msgid "slow_query_log is set to 'OFF'" msgstr "slow_query_log, 'OFF'(අක්‍රීය) වෙත පිහිටුවා ඇත" @@ -12331,7 +12261,6 @@ msgid "Query cache fragmentation" msgstr "විමසුම් කෑෂ් ඛණ්ඩනීකරණය" #: libraries/advisory_rules.txt:184 -#| msgid "The query cache is not enabled." msgid "The query cache is considerably fragmented." msgstr "විමසුම් කෑෂය භාගීකරණයට ලක්වී ඇත." @@ -12362,12 +12291,10 @@ msgid "Query cache low memory prunes" msgstr "භාවිතා කරන ලද විමසුම් කෑෂ්" #: libraries/advisory_rules.txt:191 -#| 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 "" -"අඩු විමසුම් කෑෂ් ධාරිතාව හේතුවෙන් කෑෂ්ගත කරන ලද විමසුම් කෑෂයෙන් ඉවත් කෙරෙයි." +msgstr "අඩු විමසුම් කෑෂ් ධාරිතාව හේතුවෙන් කෑෂ්ගත කරන ලද විමසුම් කෑෂයෙන් ඉවත් කෙරෙයි." #: libraries/advisory_rules.txt:192 msgid "" @@ -12430,12 +12357,10 @@ msgid "query_cache_limit is set to 1 MiB" msgstr "" #: libraries/advisory_rules.txt:211 -#| msgid "Allows creating temporary tables." msgid "Percentage of sorts that cause temporary tables" msgstr "තාවකාලික වගු සැදීමට සිදුවූ අනුපිළිවෙල සැකසීම් ප්‍රතිශතයක් ලෙස" #: libraries/advisory_rules.txt:214 libraries/advisory_rules.txt:221 -#| msgid "Allows creating temporary tables." msgid "Too many sorts are causing temporary tables." msgstr "තාවකාලික වගු සැදීමට සිදුවූ අනුපිළිවෙල සැකසීම් ඉතා විශාල ගණනකි." @@ -12453,7 +12378,6 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:218 -#| msgid "Allows creating temporary tables." msgid "Rate of sorts that cause temporary tables" msgstr "තාවකාලික වගු සැදීමට සිදුවූ අනුපිළිවෙල සැකසීම් ගණන" @@ -13166,6 +13090,15 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert ශුන්‍යයට සිටුවා ඇත" +#~ msgid "Width" +#~ msgstr "පළල" + +#~ msgid "Height" +#~ msgstr "උස" + +#~ msgid "Save to file" +#~ msgstr "ගොනුවකට සුරකින්න" + #~ msgid "Total count" #~ msgstr "මුළු එකතුව" diff --git a/po/sk.po b/po/sk.po index 0110eebba1..2f1badd466 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2013-01-09 16:20+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Slovak \n" "Language-Team: Slovenian \n" "Language-Team: Albanian $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3776,38 +3776,38 @@ msgstr "" "Direktiva $cfg['PmaAbsoluteUri'] DUHET të përcaktohet tek file " "i konfigurimit!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Duhet të instaloni %s %s ose superior." -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "" @@ -4255,7 +4255,7 @@ msgid "Character set of the file" msgstr "Familja gërmave të file:" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Formati" @@ -10034,7 +10034,7 @@ msgid "Error in ZIP archive:" msgstr "" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11562,6 +11562,7 @@ msgid "Global value" msgstr "Vlerë Globale" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "" @@ -11986,45 +11987,31 @@ msgstr "Tabela %s u eleminua" msgid "View dump (schema) of table" msgstr "Shfaq dump (skema) e tabelës" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Shto/Fshi kollonat e fushës" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Gjithsej" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:178 -#, fuzzy -#| msgid "Save as file" -msgid "Save to file" -msgstr "Ruaje me emër…" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 #, fuzzy #| msgid "User name" msgid "File name" @@ -13431,6 +13418,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Save as file" +#~ msgid "Save to file" +#~ msgstr "Ruaje me emër…" + #~ msgid "Total count" #~ msgstr "Gjithsej" diff --git a/po/sr.po b/po/sr.po index 06303404db..80057ed2af 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2013-01-10 13:37+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Serbian $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -4063,39 +4063,39 @@ msgstr "" "$cfg['PmaAbsoluteUri'] директива МОРА бити подешена у " "конфигурационој датотеци!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Неисправан индекс сервера: \"%s\"" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Неисправан назив сервера %1$s. Молимо проверите своју конфигурацију." -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "Неисправан метод аутентикације је задат у конфигурацији:" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Требало би да унапредите ваш %s сервер на верзију %s или новију." -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "" @@ -4547,7 +4547,7 @@ msgid "Character set of the file" msgstr "Карактер сет датотеке:" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Формат" @@ -10452,7 +10452,7 @@ msgid "Error in ZIP archive:" msgstr "Грешка у ZIP архиви:" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -12099,6 +12099,7 @@ msgid "Global value" msgstr "Глобална вредност" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "" @@ -12528,45 +12529,31 @@ msgstr "Табела %s је одбачена" msgid "View dump (schema) of table" msgstr "Прикажи садржај (схему) табеле" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Додај/обриши колону" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Укупно" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:178 -#, fuzzy -#| msgid "Save as file" -msgid "Save to file" -msgstr "Сачувај као датотеку" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 #, fuzzy #| msgid "Table name" msgid "File name" @@ -14038,6 +14025,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "макс. истовремених веза" +#, fuzzy +#~| msgid "Save as file" +#~ msgid "Save to file" +#~ msgstr "Сачувај као датотеку" + #, fuzzy #~| msgid "Total" #~ msgid "Total count" diff --git a/po/sr@latin.po b/po/sr@latin.po index 57d14feb60..0ef01d50ef 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2013-01-10 13:37+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Serbian (latin) $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3797,38 +3797,38 @@ msgstr "" "$cfg['PmaAbsoluteUri'] direktiva MORA biti podešena u " "konfiguracionoj datoteci!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "Neispravan indeks servera: %s" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Neispravan naziv servera %1$s. Molimo proverite svoju konfiguraciju." -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "Neispravan metod autentikacije je zadat u konfiguraciji:" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Trebalo bi da unapredite vaš %s server na verziju %s ili noviju." -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "moguća zloupotreba" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "otkriven numerički ključ" @@ -4276,7 +4276,7 @@ msgid "Character set of the file" msgstr "Karakter set datoteke" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Format" @@ -9843,7 +9843,7 @@ msgid "Error in ZIP archive:" msgstr "Greška u ZIP arhivi:" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11411,6 +11411,7 @@ msgid "Global value" msgstr "Globalna vrednost" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "" @@ -11816,39 +11817,27 @@ msgstr "Tabela %1$s je kreirana." msgid "View dump (schema) of table" msgstr "Prikaži sadržaj (shemu) tabele" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 msgid "Label column" msgstr "Označi kolonu" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 msgid "Spatial column" msgstr "Prostorna kolona" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:178 -msgid "Save to file" -msgstr "Sačuvaj u datoteku" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 msgid "File name" msgstr "Naziv datoteke" @@ -13224,6 +13213,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert je postavljeno na 0" +#~ msgid "Save to file" +#~ msgstr "Sačuvaj u datoteku" + #~ msgid "Total count" #~ msgstr "Ukupan broj" diff --git a/po/sv.po b/po/sv.po index b9a22e3459..84e6b28b92 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2013-01-15 00:03+0200\n" "Last-Translator: ProUser \n" "Language-Team: Swedish \n" "Language-Team: Tamil \n" @@ -538,7 +538,7 @@ msgstr "சுட்டு வகை" msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:140 tbl_gis_visualization.php:173 +#: gis_data_editor.php:140 tbl_gis_visualization.php:152 msgid "Use OpenStreetMaps as Base Layer" msgstr "" @@ -731,7 +731,7 @@ msgid "Database server" msgstr "தரவுத்தளங்கள்" #: index.php:230 libraries/Menu.class.php:150 -#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655 #: libraries/config/messages.inc.php:506 msgid "Server" msgstr "சேவையன்" @@ -1735,7 +1735,7 @@ msgstr "" #: libraries/schema/User_Schema.class.php:375 #: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246 -#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519 +#: tbl_indexes.php:334 tbl_relation.php:519 msgid "Save" msgstr "சேமி" @@ -3747,59 +3747,59 @@ msgstr "" msgid "Check Privileges" msgstr "" -#: libraries/common.inc.php:577 +#: libraries/common.inc.php:579 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:579 +#: libraries/common.inc.php:581 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:586 +#: libraries/common.inc.php:588 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:593 +#: libraries/common.inc.php:595 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "" @@ -4226,7 +4226,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "" @@ -9630,7 +9630,7 @@ msgid "Error in ZIP archive:" msgstr "" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11091,6 +11091,7 @@ msgid "Global value" msgstr "முழுதளாவிய மதிப்பு" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "பதிவிறக்கம்" @@ -11504,43 +11505,31 @@ msgstr "அட்டவணை %1$s உருவாக்கபட்டது." msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "அகலம்" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "உயரம்" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "கள நிரல்களை சேர்க்க/ நீக்குக" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "-- எதுவுமில்லை --" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Spatial column" msgstr "கள நிரல்களை சேர்க்க/ நீக்குக" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:178 -msgid "Save to file" -msgstr "கோப்பை சேமி" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 msgid "File name" msgstr "கோப்பின் பெயர்" @@ -12917,6 +12906,15 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "Width" +#~ msgstr "அகலம்" + +#~ msgid "Height" +#~ msgstr "உயரம்" + +#~ msgid "Save to file" +#~ msgstr "கோப்பை சேமி" + #~ msgid "Total count" #~ msgstr "மொத்தம் எண்ணல்" diff --git a/po/te.po b/po/te.po index 4b5bddfc6a..4815c7b264 100644 --- a/po/te.po +++ b/po/te.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2012-11-06 12:16+0200\n" "Last-Translator: వీవెన్ \n" "Language-Team: Telugu \n" "Language-Team: Thai \n" @@ -525,7 +525,7 @@ msgstr "ประเภทที่ส่งออกไม่ถูกต้อ msgid "Value for the column \"%s\"" msgstr "ค่าสำหรับคอลัมน์ \"%s\"" -#: gis_data_editor.php:140 tbl_gis_visualization.php:173 +#: gis_data_editor.php:140 tbl_gis_visualization.php:152 msgid "Use OpenStreetMaps as Base Layer" msgstr "ใช้ OpenStreetMaps เป็นชั้นพื้นฐาน" @@ -717,7 +717,7 @@ msgid "Database server" msgstr "เซิร์ฟเวอร์ฐานข้อมูล" #: index.php:230 libraries/Menu.class.php:150 -#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655 #: libraries/config/messages.inc.php:506 msgid "Server" msgstr "เซิร์ฟเวอร์" @@ -1707,7 +1707,7 @@ msgstr "%d ไม่ใช่หมายเลขแถวที่ถูก #: libraries/schema/User_Schema.class.php:375 #: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246 -#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519 +#: tbl_indexes.php:334 tbl_relation.php:519 msgid "Save" msgstr "บันทึก" @@ -3763,22 +3763,22 @@ msgstr "ตรวจสอบสิทธิสำหรับฐานข้อ msgid "Check Privileges" msgstr "ตรวจสอบสิทธิ" -#: libraries/common.inc.php:577 +#: libraries/common.inc.php:579 msgid "Failed to read configuration file" msgstr "ไม่สามารถอ่านแฟ้มการตั้งค่าได้" -#: libraries/common.inc.php:579 +#: libraries/common.inc.php:581 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:586 +#: libraries/common.inc.php:588 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:593 +#: libraries/common.inc.php:595 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3789,38 +3789,38 @@ msgid "" msgstr "" "ต้องกำหนดค่า $cfg['PmaAbsoluteUri'] ในไฟล์คอนฟิกูเรชั่นเสียก่อน" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "ลำดับเซิฟเวอร์ไม่ถูกต้อง: %s" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Hostname ไม่ถูกต้องสำหรับเซิฟเวอร์ %1$s กรุณาตรวจสอบการตั้งค่าของคุณ" -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "ใช้ประโยชน์ได้" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "ตรวจพบคีย์ตัวเลข" @@ -4267,7 +4267,7 @@ msgid "Character set of the file" msgstr "ชุดอักขระของไฟล์ (character set):" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "รูปแบบ" @@ -9965,7 +9965,7 @@ msgid "Error in ZIP archive:" msgstr "" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11490,6 +11490,7 @@ msgid "Global value" msgstr "ค่าแบบโกลบอล" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "" @@ -11913,43 +11914,31 @@ msgstr "โยนตาราง %s ทิ้งไปเรียบร้อ msgid "View dump (schema) of table" msgstr "ดูโครงสร้างของตาราง" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "รวม" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:178 -msgid "Save to file" -msgstr "บันทึกลงเป็นไฟล์" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 #, fuzzy #| msgid "User name" msgid "File name" @@ -13425,6 +13414,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert ตั้งค่าไว้ที่ 0" +#~ msgid "Save to file" +#~ msgstr "บันทึกลงเป็นไฟล์" + #~ msgid "Total count" #~ msgstr "จำนวนรวม" diff --git a/po/tk.po b/po/tk.po index 2938abd6f1..ede027982c 100644 --- a/po/tk.po +++ b/po/tk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2012-03-23 10:42+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Turkmen \n" @@ -535,7 +535,7 @@ msgstr "" msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:140 tbl_gis_visualization.php:173 +#: gis_data_editor.php:140 tbl_gis_visualization.php:152 msgid "Use OpenStreetMaps as Base Layer" msgstr "" @@ -719,7 +719,7 @@ msgid "Database server" msgstr "" #: index.php:230 libraries/Menu.class.php:150 -#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655 #: libraries/config/messages.inc.php:506 msgid "Server" msgstr "" @@ -1677,7 +1677,7 @@ msgstr "" #: libraries/schema/User_Schema.class.php:375 #: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246 -#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519 +#: tbl_indexes.php:334 tbl_relation.php:519 msgid "Save" msgstr "" @@ -3642,59 +3642,59 @@ msgstr "" msgid "Check Privileges" msgstr "" -#: libraries/common.inc.php:577 +#: libraries/common.inc.php:579 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:579 +#: libraries/common.inc.php:581 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:586 +#: libraries/common.inc.php:588 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:593 +#: libraries/common.inc.php:595 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "" @@ -4117,7 +4117,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "" @@ -9443,7 +9443,7 @@ msgid "Error in ZIP archive:" msgstr "" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -10890,6 +10890,7 @@ msgid "Global value" msgstr "" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "" @@ -11289,39 +11290,27 @@ msgstr "" msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 msgid "Label column" msgstr "" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 msgid "Spatial column" msgstr "" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:178 -msgid "Save to file" -msgstr "" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 msgid "File name" msgstr "" diff --git a/po/tr.po b/po/tr.po index 3d332da49c..0bd4b01dd0 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2013-01-18 19:20+0200\n" "Last-Translator: Burak Yavuz \n" -"Language-Team: Turkish " -"\n" +"Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -533,7 +533,7 @@ msgstr "Geçersiz dışa aktarma türü" msgid "Value for the column \"%s\"" msgstr "\"%s\" sütunu için değer" -#: gis_data_editor.php:140 tbl_gis_visualization.php:173 +#: gis_data_editor.php:140 tbl_gis_visualization.php:152 msgid "Use OpenStreetMaps as Base Layer" msgstr "Taban Katman olarak OpenStreetMaps kullan" @@ -733,7 +733,7 @@ msgid "Database server" msgstr "Veritabanı sunucusu" #: index.php:230 libraries/Menu.class.php:150 -#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655 #: libraries/config/messages.inc.php:506 msgid "Server" msgstr "Sunucu" @@ -1747,7 +1747,7 @@ msgstr "%d geçerli bir satır sayısı değil." #: libraries/schema/User_Schema.class.php:375 #: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246 -#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519 +#: tbl_indexes.php:334 tbl_relation.php:519 msgid "Save" msgstr "Kaydet" @@ -3803,11 +3803,11 @@ msgstr ""%s" veritabanı için yetkileri kontrol et." msgid "Check Privileges" msgstr "Yetkileri kontrol et" -#: libraries/common.inc.php:577 +#: libraries/common.inc.php:579 msgid "Failed to read configuration file" msgstr "Yapılandırma dosyasını okuma başarısız" -#: libraries/common.inc.php:579 +#: libraries/common.inc.php:581 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3815,12 +3815,12 @@ msgstr "" "Bu genellikle bir sözdizimi hatası var anlamına gelir, lütfen aşağıda " "gösterilen her hatayı kontrol edin." -#: libraries/common.inc.php:586 +#: libraries/common.inc.php:588 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Varsayılan yapılandırma bundan yüklenemedi: %1$s" -#: libraries/common.inc.php:593 +#: libraries/common.inc.php:595 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3828,40 +3828,40 @@ msgstr "" "[code]$cfg['PmaAbsoluteUri'][/code] talimatı yapılandırma dosyanız içinde " "AYARLANMAK zorundadır!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "Geçersiz sunucu indeksi: %s" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "%1$s sunucusu için geçersiz anamakine. Lütfen yapılandırma dosyanızı gözden " "geçirin." -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "Yapılandırma içinde geçersiz kimlik doğrulaması yöntemi ayarı:" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s %s veya sonrasına yükseltmelisiniz." -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "Hata: Belirti uyuşmazlığı" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS üzerine yazma girişimi" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "olası kötüye kullanma" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "sayısal tuş algılandı" @@ -4310,7 +4310,7 @@ msgid "Character set of the file" msgstr "Dosyanın karakter grubu" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Biçim" @@ -10046,7 +10046,9 @@ msgid "Error in ZIP archive:" msgstr "ZIP arşivinde hata:" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +#, fuzzy +#| msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Önemli hata: Rehbere sadece ajax aracılığıyla erişilebilir" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11680,6 +11682,7 @@ msgid "Global value" msgstr "Genel değer" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "İndir" @@ -12083,7 +12086,6 @@ msgid "Pie" msgstr "Dilim" #: tbl_chart.php:148 -#| msgid "Time" msgctxt "Chart type" msgid "Timeline" msgstr "Zaman çizelgesi" @@ -12135,39 +12137,27 @@ msgstr "Tablo %1$s oluşturuldu." msgid "View dump (schema) of table" msgstr "Tablonun dökümünü (şemasını) göster" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "GIS görselleştirmesini görüntüle" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "Genişlik" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "Yükseklik" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 msgid "Label column" msgstr "Etiket sütunu" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "-- Yok --" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 msgid "Spatial column" msgstr "Uzaysal sütun" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "Yeniden Çiz" -#: tbl_gis_visualization.php:178 -msgid "Save to file" -msgstr "Dosyaya kaydet" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 msgid "File name" msgstr "Dosya adı" @@ -13694,6 +13684,15 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 0'a ayarlı" +#~ msgid "Width" +#~ msgstr "Genişlik" + +#~ msgid "Height" +#~ msgstr "Yükseklik" + +#~ msgid "Save to file" +#~ msgstr "Dosyaya kaydet" + #~ msgid "Total count" #~ msgstr "Toplam sayı" diff --git a/po/tt.po b/po/tt.po index 944f43653c..b05564bf2e 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2012-09-05 10:32+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Tatar \n" @@ -554,7 +554,7 @@ msgstr "Çığaru ısulı" msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:140 tbl_gis_visualization.php:173 +#: gis_data_editor.php:140 tbl_gis_visualization.php:152 msgid "Use OpenStreetMaps as Base Layer" msgstr "" @@ -757,7 +757,7 @@ msgid "Database server" msgstr "Qullanuçı biremlege" #: index.php:230 libraries/Menu.class.php:150 -#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655 #: libraries/config/messages.inc.php:506 msgid "Server" msgstr "Server" @@ -1866,7 +1866,7 @@ msgstr "%d digäne yazma sanı öçen kileşmi." #: libraries/schema/User_Schema.class.php:375 #: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246 -#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519 +#: tbl_indexes.php:334 tbl_relation.php:519 msgid "Save" msgstr "Saqla" @@ -4001,63 +4001,63 @@ msgstr "\"%s\" biremlege öçen xoquqlar tikşerü." msgid "Check Privileges" msgstr "Xoquqlar tikşerü" -#: libraries/common.inc.php:577 +#: libraries/common.inc.php:579 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file" msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\"" -#: libraries/common.inc.php:579 +#: libraries/common.inc.php:581 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:586 +#: libraries/common.inc.php:588 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\"" -#: libraries/common.inc.php:593 +#: libraries/common.inc.php:595 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Serverdäge \"%s\" digän tezeleş yaraqsız" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "" @@ -4509,7 +4509,7 @@ msgid "Character set of the file" msgstr "Şul biremneñ bilgelämäse:" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Tözeleş" @@ -10336,7 +10336,7 @@ msgid "Error in ZIP archive:" msgstr "ZIP-tuplama eçendä xata:" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11884,6 +11884,7 @@ msgid "Global value" msgstr "Töp bäyä" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "" @@ -12313,45 +12314,31 @@ msgstr "\"%s\" atlı tüşämä beterelde" msgid "View dump (schema) of table" msgstr "Tüşämä eçtälegen (tözeleşen) çığaru" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Add/Delete Field Columns" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Tulayım" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:178 -#, fuzzy -#| msgid "Save as file" -msgid "Save to file" -msgstr "Biremgä saqlıysı" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 #, fuzzy msgid "File name" msgstr "tüşämä adı" @@ -13800,6 +13787,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Save as file" +#~ msgid "Save to file" +#~ msgstr "Biremgä saqlıysı" + #, fuzzy #~| msgid "Total" #~ msgid "Total count" diff --git a/po/ug.po b/po/ug.po index a2b6800a07..c37c148100 100644 --- a/po/ug.po +++ b/po/ug.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2012-11-05 10:16+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uighur $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3919,38 +3919,38 @@ msgid "" "configuration file!" msgstr "$cfg['PmaAbsoluteUri'] نى تەڭشەڭ !تەڭشەك ھۆججىتى ئىچىدىكى" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "ئۈنۈمسىز مۇلازىمىتېر :%s" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "مۇلازىمىتېر %1$s ئۈنۈمسىز. تەڭشەك ھۆجقىتىنى تەشۈرۈڭ." -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "تەڭشەك ھۆجىتى ئىچىدىكى دەلىللەش ئۇسۇلى ئۈنۈمسىز:" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s %s ياكى ئۇنىڭدىنمۇ يۇقىرى نەشىرگە كۆتۈتىڭ." -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "" @@ -4381,7 +4381,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "فورماتلاش" @@ -9958,7 +9958,7 @@ msgid "Error in ZIP archive:" msgstr "" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11456,6 +11456,7 @@ msgid "Global value" msgstr "" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "" @@ -11876,45 +11877,31 @@ msgstr "" msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 #, fuzzy #| msgid "Add/Delete columns" msgid "Label column" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "كۈندىلىك ھۆججەت ئۇمۇمىي سانى" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:178 -#, fuzzy -#| msgid "Save as file" -msgid "Save to file" -msgstr "ھۆججەتنى باشقا ساقلاش" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 #, fuzzy #| msgid "Keyname" msgid "File name" @@ -13345,6 +13332,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Save as file" +#~ msgid "Save to file" +#~ msgstr "ھۆججەتنى باشقا ساقلاش" + #, fuzzy #~| msgid "Log file count" #~ msgid "Total count" diff --git a/po/uk.po b/po/uk.po index 2a3e245d9e..abe9cab30a 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,17 +3,17 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2013-01-20 19:39+0200\n" "Last-Translator: Andrey Prokopenko \n" -"Language-Team: Ukrainian " -"\n" +"Language-Team: Ukrainian \n" "Language: uk\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%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 1.4-dev\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 @@ -296,13 +296,11 @@ msgstr "Ім'я бази даних порожнє!" #: db_operations.php:129 #, php-format -#| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Базу даних %1$s було перейменовано в %2$s" #: db_operations.php:133 #, php-format -#| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Базу даних %1$s було скопійовано до %2$s" @@ -540,7 +538,7 @@ msgstr "Невірний тип експорту" msgid "Value for the column \"%s\"" msgstr "Значення для стовпчика \"%s\"" -#: gis_data_editor.php:140 tbl_gis_visualization.php:173 +#: gis_data_editor.php:140 tbl_gis_visualization.php:152 msgid "Use OpenStreetMaps as Base Layer" msgstr "Використовуйте OpenStreetMaps як базовий пласт" @@ -724,7 +722,6 @@ msgid "Back" msgstr "Назад" #: index.php:114 -#| msgid "General relation features" msgid "General Settings" msgstr "Загальні налаштування" @@ -734,7 +731,6 @@ msgid "Change password" msgstr "Змінити пароль" #: index.php:155 -#| msgid "Server configuration" msgid "Server connection collation" msgstr "Конфігурація сервера" @@ -743,17 +739,15 @@ msgid "Appearance Settings" msgstr "Налаштування вигляду" #: index.php:210 prefs_manage.php:275 -#| msgid "General relation features" msgid "More settings" msgstr "Додаткові налаштування" #: index.php:227 -#| msgid "Databases" msgid "Database server" msgstr "Сервер бази даних" #: index.php:230 libraries/Menu.class.php:150 -#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655 #: libraries/config/messages.inc.php:506 msgid "Server" msgstr "Сервер" @@ -763,7 +757,6 @@ msgid "Software" msgstr "Програмне забезпечення" #: index.php:238 -#| msgid "Server version" msgid "Software version" msgstr "Версія програмного забезпечення" @@ -779,7 +772,6 @@ msgid "User" msgstr "Користувач" #: index.php:251 -#| msgid "Remove database" msgid "Server charset" msgstr "Кодування символів серверу" @@ -788,7 +780,6 @@ msgid "Web server" msgstr "Веб-сервер" #: index.php:276 -#| msgid "Database comment: " msgid "Database client version" msgstr "Версія клієнту бази даних" @@ -821,7 +812,6 @@ msgid "Official Homepage" msgstr "Офіційна сторінка phpMyAdmin" #: index.php:349 -#| msgid "Attributes" msgid "Contribute" msgstr "Атрибути" @@ -830,7 +820,6 @@ msgid "Get support" msgstr "Отримати підтримку" #: index.php:363 -#| msgid "No change" msgid "List of changes" msgstr "Перелік змін" @@ -873,11 +862,10 @@ msgid "" "cookie validity configured in phpMyAdmin, because of this, your login will " "expire sooner than configured in phpMyAdmin." msgstr "" -"Параметр PHP " -"[a@http://php.net/manual/en/session.configuration.php#ini.session.gc-" -"maxlifetime@_blank]session.gc_maxlifetime[/a] менший, ніж термін придатності " -"cookie налаштованого в phpMyAdmin, і через це термін дії вашого логіну " -"закінчується раніше, ніж це налаштовано в phpMyAdmin." +"Параметр PHP [a@http://php.net/manual/en/session.configuration.php#ini." +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] менший, ніж термін " +"придатності cookie налаштованого в phpMyAdmin, і через це термін дії вашого " +"логіну закінчується раніше, ніж це налаштовано в phpMyAdmin." #: index.php:431 msgid "" @@ -929,8 +917,8 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Сервер, що працює з Suhosin. Щодо можливих проблем звертайтеся до %" -"sdocumentation%s." +"Сервер, що працює з Suhosin. Щодо можливих проблем звертайтеся до " +"%sdocumentation%s." #: js/messages.php:27 libraries/import.lib.php:118 sql.php:337 msgid "\"DROP DATABASE\" statements are disabled." @@ -938,7 +926,6 @@ msgstr "Оператори \"DROP DATABASE\" заборонені." #: js/messages.php:30 #, php-format -#| msgid "Do you really want to " msgid "Do you really want to execute \"%s\"?" msgstr "Ви дійсно бажаєте виконати \"%s\"?" @@ -984,13 +971,11 @@ msgstr "Редагувати Індекс" #: js/messages.php:44 tbl_indexes.php:339 tbl_indexes.php:347 #, php-format -#| msgid "Add %d column(s) to index" msgid "Add %s column(s) to index" msgstr "Додати до індексу %s стовпчик(ів)" #. l10n: Default label for the y-Axis of Charts #: js/messages.php:48 tbl_chart.php:217 -#| msgid "Value" msgid "Y Values" msgstr "Значення y" @@ -1371,7 +1356,6 @@ msgstr "Диференціальний" #: js/messages.php:154 #, php-format -#| msgid "Divided by %s:" msgid "Divided by %s" msgstr "Розділено на %s" @@ -1388,7 +1372,6 @@ msgid "From general log" msgstr "Із загального журналу" #: js/messages.php:159 -#| msgid "Loading logs" msgid "Analysing logs" msgstr "Аналіз журналів" @@ -1428,7 +1411,6 @@ msgid "Jump to Log table" msgstr "Перейти до таблиці Log" #: js/messages.php:167 -#| msgid "No databases" msgid "No data found" msgstr "Даних не знайдено" @@ -1461,23 +1443,19 @@ msgid "Profiling results" msgstr "Результати профілювання" #: js/messages.php:176 -#| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Таблиця" #: js/messages.php:177 -#| msgid "Charset" msgid "Chart" msgstr "Графік" #: js/messages.php:178 -#| msgid "Add into comments" msgid "Edit chart" msgstr "Редагувати графік" #: js/messages.php:179 -#| msgid "SQL queries" msgid "Series" msgstr "Серії" @@ -1554,12 +1532,10 @@ msgid "Import" msgstr "Імпорт" #: js/messages.php:200 -#| msgid "Could not import configuration" msgid "Import monitor configuration" msgstr "Імпорт налаштувань монітору" #: js/messages.php:201 -#| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import" msgstr "Будь ласка, оберіть файл, який ви бажаєте імпортувати" @@ -1685,17 +1661,14 @@ msgid "Show indexes" msgstr "Показати індекси" #: js/messages.php:246 libraries/mult_submits.inc.php:327 -#| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Перевірка зовнішніх ключів:" #: js/messages.php:247 libraries/mult_submits.inc.php:331 -#| msgid "Enabled" msgid "(Enabled)" msgstr "(Увімкнено)" #: js/messages.php:248 libraries/mult_submits.inc.php:331 -#| msgid "Disabled" msgid "(Disabled)" msgstr "(Вимкнено)" @@ -1784,7 +1757,7 @@ msgstr "%d неправильний номер рядка." #: libraries/schema/User_Schema.class.php:375 #: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246 -#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519 +#: tbl_indexes.php:334 tbl_relation.php:519 msgid "Save" msgstr "Зберегти" @@ -1813,7 +1786,6 @@ msgid "To zoom in, select a section of the plot with the mouse." msgstr "Щоб збільшити масштаб, виберіть ділянку діаграми за допомогою миші." #: js/messages.php:295 -#| msgid "Click reset zoom link to come back to original state." msgid "Click reset zoom button to come back to original state." msgstr "" "Натисніть кнопку Скидання масштабу, щоб повернутися до початкового стану." @@ -1840,7 +1812,6 @@ msgid "Query results" msgstr "Результати запиту" #: js/messages.php:304 -#| msgid "Table of contents" msgid "Data point content" msgstr "Вміст точки даних" @@ -1955,7 +1926,6 @@ msgid "Go to link" msgstr "Перейти за посиланням" #: js/messages.php:359 -#| msgid "Column names" msgid "Copy column name" msgstr "Копіювати назву стовпчик(ів)" @@ -1965,7 +1935,6 @@ msgstr "" "Клацніть правою кнопкою назву стовпчика, щоб скопіювати його в буфер обміну." #: js/messages.php:361 -#| msgid "Showing rows" msgid "Show data row(s)" msgstr "Показати ряд(и) даних" @@ -1986,17 +1955,14 @@ msgid "More" msgstr "Більше" #: js/messages.php:372 -#| msgid "Show all" msgid "Show Panel" msgstr "Показати панель" #: js/messages.php:373 -#| msgid "Hide indexes" msgid "Hide Panel" msgstr "Приховати панель" #: js/messages.php:376 -#| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "" "Запитану сторінку не знайдено в історії, можливо минув її термін зберігання." @@ -2258,7 +2224,6 @@ msgstr "календар-місяць-рік" #. l10n: Year suffix for calendar, "none" is empty. #: js/messages.php:516 -#| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "немає" @@ -2297,8 +2262,6 @@ msgstr "Не вдалося виконати тест для правила \"%s #: libraries/Advisor.class.php:222 #, php-format -#| msgid "" -#| "Failed formatting string for rule '%s'. PHP threw following error: %s" msgid "Failed formatting string for rule '%s'." msgstr "Не вдалося виконати форматування рядка для правила '%s'." @@ -2312,7 +2275,6 @@ msgstr "" #: libraries/Advisor.class.php:395 #, php-format -#| msgid "Invalid server index: %s" msgid "Invalid rule declaration on line %s" msgstr "Неприпустиме правило декларації в рядку %s" @@ -2464,8 +2426,6 @@ msgstr[2] "Всього: %s співпадань" #: libraries/DbSearch.class.php:330 #, php-format -#| msgid "%s match inside table %s" -#| msgid_plural "%s matches inside table %s" msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s співпадіння у %2$s" @@ -2546,7 +2506,6 @@ msgstr "Вперед" #: libraries/DisplayResults.class.php:863 libraries/Util.class.php:2591 #: libraries/Util.class.php:2594 -#| msgid "End" msgctxt "Last page" msgid "End" msgstr "Кінець" @@ -2556,12 +2515,10 @@ msgid "Start row" msgstr "Початковий рядок" #: libraries/DisplayResults.class.php:908 tbl_chart.php:226 -#| msgid "Number of rows:" msgid "Number of rows" msgstr "Кількість рядків" #: libraries/DisplayResults.class.php:917 -#| msgid "More" msgid "Mode" msgstr "Режим" @@ -2579,7 +2536,6 @@ msgstr "вертикальному" #: libraries/DisplayResults.class.php:933 #, php-format -#| msgid "Execute every" msgid "Headers every %s rows" msgstr "Заголовки кожні %s рядків" @@ -2617,13 +2573,11 @@ msgstr "Параметри" #: libraries/DisplayResults.class.php:1584 #: libraries/DisplayResults.class.php:1690 -#| msgid "Partial Texts" msgid "Partial texts" msgstr "Часткові тексти" #: libraries/DisplayResults.class.php:1585 #: libraries/DisplayResults.class.php:1694 -#| msgid "Full Texts" msgid "Full texts" msgstr "Повні тексти" @@ -2762,7 +2716,6 @@ msgid "Visualize GIS data" msgstr "" #: libraries/DisplayResults.class.php:5348 view_create.php:152 -#| msgid "Create User" msgid "Create view" msgstr "Створити подання" @@ -2838,7 +2791,6 @@ msgstr "З цього моменту Cookies повинні бути дозво #: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:171 -#| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "З цього моменту Javascript має бути увімкнений" @@ -3211,7 +3163,6 @@ msgstr "Вихідна база даних \"%s\" не знайдена!" #: libraries/Table.class.php:736 #, php-format -#| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Цільова база даних \"%s\" не знайдена!" @@ -3230,7 +3181,6 @@ msgstr "Помилка зміни назви таблиці %1$s на %2$s" #: libraries/Table.class.php:1229 #, php-format -#| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Таблицю %1$s було перейменовано в %2$s." @@ -3290,7 +3240,6 @@ msgid "Edit/Insert" msgstr "Вставити" #: libraries/TableSearch.class.php:755 -#| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Виберіть стовпці (принаймні один):" @@ -3320,7 +3269,6 @@ msgid "Browse foreign values" msgstr "" #: libraries/TableSearch.class.php:971 -#| msgid "Hide search criteria" msgid "Additional search criteria" msgstr "Додаткові критерії пошуку" @@ -3343,7 +3291,6 @@ msgid "How to use" msgstr "Як використовувати" #: libraries/TableSearch.class.php:1175 -#| msgid "Reset" msgid "Reset zoom" msgstr "Скидання масштабу" @@ -3457,7 +3404,6 @@ msgstr "" #: libraries/Types.class.php:320 libraries/Types.class.php:722 #, php-format -#| msgid "General relation features" msgid "A date, supported range is %1$s to %2$s" msgstr "Дата, підтримується інтервал від %1$s до %2$s" @@ -3476,7 +3422,6 @@ msgstr "" #: libraries/Types.class.php:326 libraries/Types.class.php:728 #, php-format -#| msgid "Error renaming table %1$s to %2$s" msgid "A time, range is %1$s to %2$s" msgstr "Час, інтервал від %1$s до %2$s" @@ -3849,11 +3794,11 @@ msgstr "Перевірити права для бази даних "%s" msgid "Check Privileges" msgstr "Перевірити права" -#: libraries/common.inc.php:577 +#: libraries/common.inc.php:579 msgid "Failed to read configuration file" msgstr "Не вдалося прочитати файл конфігурації" -#: libraries/common.inc.php:579 +#: libraries/common.inc.php:581 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3861,12 +3806,12 @@ msgstr "" "Як правило, це означає, що в ньому є синтаксичні помилки, будь ласка, " "перевірте будь-які помилки що показано нижче." -#: libraries/common.inc.php:586 +#: libraries/common.inc.php:588 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Неможливо завантажити стандартну функціональність із: %1$s" -#: libraries/common.inc.php:593 +#: libraries/common.inc.php:595 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3878,40 +3823,40 @@ msgstr "" "Змінна $cfg['PmaAbsoluteUri'] ПОВИННА бути встановлена у Вашому " "конфігураційному файлі!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "Не вірний індекс сервера: %s" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Не вірна назва хоста для сервера %1$s. Будь ласка перевірте Вашу " "конфігурацію." -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "Невірний метод аутентифікації встановленний в налаштуваннях:" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Вам необхідно оновити до %s %s або пізнішої." -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "можливе використання" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "виявлено цифровий ключ" @@ -4358,7 +4303,7 @@ msgid "Character set of the file" msgstr "Кодування файлу" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Формат" @@ -5600,7 +5545,6 @@ msgstr "" "вказаного хоста - залиште порожнім" #: libraries/config/messages.inc.php:386 -#| msgid "Any host" msgid "Control host" msgstr "Керування хостом" @@ -5754,7 +5698,6 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:417 -#| msgid "Analyze table" msgid "Recently used table" msgstr "Нещодавно використані таблиці" @@ -5981,7 +5924,6 @@ msgstr "" "відображення" #: libraries/config/messages.inc.php:465 -#| msgid "Default display direction" msgid "Show display direction" msgstr "Показати напрямком відображення" @@ -6010,7 +5952,6 @@ msgid "Whether to show hint or not" msgstr "Чи показувати підказки" #: libraries/config/messages.inc.php:471 -#| msgid "Show grid" msgid "Show hint" msgstr "Відображати підказки" @@ -6019,8 +5960,8 @@ 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]" +"Показує посилання на [a@http://php.net/manual/function.phpinfo.php]phpinfo()" +"[/a]" #: libraries/config/messages.inc.php:473 msgid "Show phpinfo() link" @@ -6045,7 +5986,6 @@ msgstr "" "Визначає, чи має залишатися вікно запиту на екрані після надсилання запиту" #: libraries/config/messages.inc.php:478 libraries/sql_query_form.lib.php:361 -#| msgid "Hide query box" msgid "Retain query box" msgstr "Залишати вікно запиту" @@ -6378,7 +6318,6 @@ msgstr "" #: libraries/display_create_database.lib.php:21 #: libraries/display_create_database.lib.php:39 -#| msgid "Create new database" msgid "Create database" msgstr "Створити базу даних" @@ -6544,7 +6483,6 @@ msgid "Format:" msgstr "Формат:" #: libraries/display_export.lib.php:418 -#| msgid "Transformation options" msgid "Format-specific options:" msgstr "Параметри форматування:" @@ -6632,13 +6570,11 @@ msgstr "Імпортування до поточного сервера" #: libraries/display_import.lib.php:192 #, php-format -#| msgid "No databases" msgid "Importing into the database \"%s\"" msgstr "Імпортування до бази даних \"%s\"" #: libraries/display_import.lib.php:194 #, php-format -#| msgid "No databases" msgid "Importing into the table \"%s\"" msgstr "Імпортування до таблиці \"%s\"" @@ -7150,7 +7086,6 @@ msgid "Copy table with prefix" msgstr "Копіювати таблицю з префіксом" #: libraries/mult_submits.inc.php:280 -#| msgid "Fr" msgid "From" msgstr "Від" @@ -7676,7 +7611,6 @@ msgid "Check referential integrity:" msgstr "Перевір цілісність даних на рівні посилань:" #: libraries/plugin_interface.lib.php:503 -#| msgid "This format has no options" msgid "This format has no options" msgstr "Цей формат не має параметрів" @@ -7793,7 +7727,6 @@ msgstr "Авторизуємося…" #: libraries/plugins/export/ExportCsv.class.php:93 #: libraries/plugins/import/ImportCsv.class.php:82 -#| msgid "Lines terminated by" msgid "Columns separated with:" msgstr "Стовпці розділені з:" @@ -7825,7 +7758,6 @@ msgstr "Рядки розділено" #: libraries/plugins/export/ExportOds.class.php:71 #: libraries/plugins/export/ExportOdt.class.php:132 #: libraries/plugins/export/ExportTexytext.class.php:89 -#| msgid "Replace NULL by" msgid "Replace NULL with:" msgstr "Замінити значення NULL на:" @@ -7843,7 +7775,6 @@ msgstr "" #: libraries/plugins/export/ExportOdt.class.php:123 #: libraries/plugins/export/ExportTexytext.class.php:80 #: libraries/plugins/export/ExportXml.class.php:133 -#| msgid "Database export options" msgid "Data dump options" msgstr "Параметри дампу даних" @@ -7905,13 +7836,11 @@ msgstr "Структура таблиці @TABLE@" #: libraries/plugins/export/ExportLatex.class.php:116 #: libraries/plugins/export/ExportOdt.class.php:97 #: libraries/plugins/export/ExportSql.class.php:213 -#| msgid "Transformation options" msgid "Object creation options" msgstr "Параметри створення об'єкта" #: libraries/plugins/export/ExportLatex.class.php:126 #: libraries/plugins/export/ExportLatex.class.php:171 -#| msgid "Table of contents" msgid "Table caption (continued)" msgstr "Заголовок таблиці (продовження)" @@ -7923,14 +7852,12 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:142 #: libraries/plugins/export/ExportOdt.class.php:108 -#| msgid "Displaying Column Comments" msgid "Display comments" msgstr "Відображення коментарів" #: libraries/plugins/export/ExportLatex.class.php:147 #: libraries/plugins/export/ExportOdt.class.php:113 #: libraries/plugins/export/ExportSql.class.php:120 -#| msgid "Available MIME types" msgid "Display MIME types" msgstr "Відображати Типи MIME" @@ -7983,7 +7910,6 @@ msgid "(Generates a report containing the data of a single table)" msgstr "" #: libraries/plugins/export/ExportPdf.class.php:102 -#| msgid "Import files" msgid "Report title:" msgstr "Заголовок звіту:" @@ -8012,12 +7938,10 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:241 #: libraries/plugins/export/ExportSql.class.php:249 #, php-format -#| msgid "Statements" msgid "Add %s statement" msgstr "Додати оператор %s" #: libraries/plugins/export/ExportSql.class.php:220 -#| msgid "Statements" msgid "Add statements:" msgstr "Додати оператори:" @@ -8114,7 +8038,6 @@ msgid "RELATIONS FOR TABLE" msgstr "" #: libraries/plugins/export/ExportSql.class.php:1566 -#| msgid "Allows reading data." msgid "Error reading data:" msgstr "Помилка читання даних:" @@ -8141,7 +8064,6 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.class.php:127 -#| msgid "Column names" msgid "Column names: " msgstr "Назви стовпців: " @@ -8651,7 +8573,6 @@ msgid "Start" msgstr "Старт" #: libraries/rte/rte_events.lib.php:505 -#| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Кінець" @@ -8863,7 +8784,6 @@ msgid "Trigger name" msgstr "Назва тригера" #: libraries/rte/rte_triggers.lib.php:373 -#| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Час" @@ -9426,7 +9346,6 @@ msgid "Grant" msgstr "Grant" #: libraries/server_privileges.lib.php:1617 -#| msgid "The row has been deleted" msgid "User has been added." msgstr "Користувача було додано." @@ -9456,7 +9375,6 @@ msgid "wildcard" msgstr "шаблон" #: libraries/server_privileges.lib.php:1751 server_privileges.php:168 -#| msgid "No user(s) found." msgid "No user found." msgstr "Користувача не знайдено." @@ -9552,7 +9470,6 @@ msgid "Privileges for %s" msgstr "Привілеї" #: libraries/server_privileges.lib.php:2907 -#| msgid "User overview" msgid "Users overview" msgstr "Огляд користувачів" @@ -9789,7 +9706,6 @@ msgstr "Запропонувати структуру таблиці" #: libraries/structure.lib.php:1541 #: libraries/tbl_columns_definition_form.inc.php:760 -#| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "Необхідно додати принаймні один стовпчик." @@ -9973,7 +9889,6 @@ msgid "Get more editing space" msgstr "" #: libraries/tbl_columns_definition_form.inc.php:429 -#| msgid "None" msgctxt "for default" msgid "None" msgstr "Немає" @@ -10045,7 +9960,7 @@ msgid "Error in ZIP archive:" msgstr "" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -10932,12 +10847,10 @@ msgid "Filters" msgstr "" #: server_status_variables.php:82 server_variables.php:158 -#| msgid "Do not change the password" msgid "Containing the word:" msgstr "Містить слова:" #: server_status_variables.php:89 -#| msgid "Show tables" msgid "Show only alert values" msgstr "Показати тільки оповіщення значень" @@ -10946,7 +10859,6 @@ msgid "Filter by category…" msgstr "" #: server_status_variables.php:114 -#| msgid "Show tables" msgid "Show unformatted values" msgstr "Показати неформатовані значення" @@ -11546,6 +11458,7 @@ msgid "Global value" msgstr "Загальне значення" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "" @@ -11967,45 +11880,31 @@ msgstr "" msgid "View dump (schema) of table" msgstr "Переглянути дамп (схему) таблиці" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 #, fuzzy #| msgid "Add into comments" msgid "Label column" msgstr "Додати коментар" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Разом" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:178 -#, fuzzy -#| msgid "Save as file" -msgid "Save to file" -msgstr "Зберегти як файл" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 #, fuzzy #| msgid "User name" msgid "File name" @@ -13257,7 +13156,6 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:399 -#| msgid "Connections" msgid "Percentage of aborted connections" msgstr "Відсоток перерваних підключень" @@ -13455,6 +13353,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert встановлений у 0" +#, fuzzy +#~| msgid "Save as file" +#~ msgid "Save to file" +#~ msgstr "Зберегти як файл" + #, fuzzy #~| msgid "Total" #~ msgid "Total count" diff --git a/po/ur.po b/po/ur.po index a01a8f8645..a64bf07bbe 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2012-11-05 10:19+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Urdu \n" @@ -549,7 +549,7 @@ msgstr "برآمد قسم" msgid "Value for the column \"%s\"" msgstr "کالم کی قدریں\"%s\"" -#: gis_data_editor.php:140 tbl_gis_visualization.php:173 +#: gis_data_editor.php:140 tbl_gis_visualization.php:152 msgid "Use OpenStreetMaps as Base Layer" msgstr "" @@ -765,7 +765,7 @@ msgid "Database server" msgstr "کوائفیے" #: index.php:230 libraries/Menu.class.php:150 -#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655 #: libraries/config/messages.inc.php:506 msgid "Server" msgstr "سرور" @@ -1851,7 +1851,7 @@ msgstr "" #: libraries/schema/User_Schema.class.php:375 #: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246 -#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519 +#: tbl_indexes.php:334 tbl_relation.php:519 msgid "Save" msgstr "" @@ -3914,24 +3914,24 @@ msgstr "کوائفیہ استحقاق کی پڑتال کریں "%s"." msgid "Check Privileges" msgstr "استحقاق پڑتال کریں" -#: libraries/common.inc.php:577 +#: libraries/common.inc.php:579 #, fuzzy #| msgid "Configuration file" msgid "Failed to read configuration file" msgstr "تشکیلی مسل" -#: libraries/common.inc.php:579 +#: libraries/common.inc.php:581 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:586 +#: libraries/common.inc.php:588 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "طے شدہ تشکیلات کو لوڈ نہیں کرسکا: %1$s" -#: libraries/common.inc.php:593 +#: libraries/common.inc.php:595 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3943,38 +3943,38 @@ msgstr "" "$cfg['PmaAbsoluteUri'] ہدایات آپ کے تشکیل مسل میں لازمی موجود " "ہوں!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "غلط سرور اشاریہ: %s" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "سرور کے لیے ہوسٹ نام غلط ہے %1$s. اپنے تشکیل کا جائزہ لیں۔" -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "غلط توثیقی طریقہ تشکیل میں دیا گیا ہے:" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "آپ اس سے درجہ فزوں کریں %s %s یا بعد۔" -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "" @@ -4416,7 +4416,7 @@ msgid "Character set of the file" msgstr "مسل کے لیے حروف کی سیٹ" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "وضع" @@ -10103,7 +10103,7 @@ msgid "Error in ZIP archive:" msgstr "" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11615,6 +11615,7 @@ msgid "Global value" msgstr "" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "" @@ -12036,47 +12037,33 @@ msgstr "" msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 #, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" msgstr "سرور انتخاب دکھائیں" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "میزان" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:178 -#, fuzzy -#| msgid "Save as file" -msgid "Save to file" -msgstr "بطور مسل محفوظ کریں" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 #, fuzzy #| msgid "Page number:" msgid "File name" @@ -13515,6 +13502,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Save as file" +#~ msgid "Save to file" +#~ msgstr "بطور مسل محفوظ کریں" + #, fuzzy #~| msgid "Total" #~ msgid "Total count" diff --git a/po/uz.po b/po/uz.po index 1fa5eb934a..b092ddead8 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2013-01-17 09:10+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uzbek \n" @@ -539,7 +539,7 @@ msgstr "Жадвалларни экспорт қилиш" msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:140 tbl_gis_visualization.php:173 +#: gis_data_editor.php:140 tbl_gis_visualization.php:152 msgid "Use OpenStreetMaps as Base Layer" msgstr "" @@ -764,7 +764,7 @@ msgid "Database server" msgstr "Фойдаланувчи учун маълумотлар базаси" #: index.php:230 libraries/Menu.class.php:150 -#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655 #: libraries/config/messages.inc.php:506 msgid "Server" msgstr "Сервер" @@ -1927,7 +1927,7 @@ msgstr "%d сони тўғри қатор рақами эмас." #: libraries/schema/User_Schema.class.php:375 #: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246 -#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519 +#: tbl_indexes.php:334 tbl_relation.php:519 msgid "Save" msgstr "Сақлаш" @@ -4097,25 +4097,25 @@ msgstr "\"%s\" маълумотлар базасининг привилегия msgid "Check Privileges" msgstr "Привилегияларни текшириш" -#: libraries/common.inc.php:577 +#: libraries/common.inc.php:579 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Failed to read configuration file" msgstr "Конфигурацияни юклаб ёки сақлаб бўлмади" -#: libraries/common.inc.php:579 +#: libraries/common.inc.php:581 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:586 +#: libraries/common.inc.php:588 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "\"%1$s\" файлидан андоза конфигурацияни юклаб бўлмади." -#: libraries/common.inc.php:593 +#: libraries/common.inc.php:595 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -4127,42 +4127,42 @@ msgstr "" "$cfg[\"PmaAbsoluteUrl\"] директиваси конфигурацион файлда " "созланиши ШАРТ!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Сервер рақами нотўғри: \"%s\"" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "%1$s сервери учун нотўғри хост номи кўрсатилган. phpMyAdmin конфигурацион " "файлида белгиланган созлашларни тўғирланг." -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "" "phpMyAdmin конфигурацион файлида нотўғри аутентификация усули белгиланган:" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "\"%s\" ни \"%s\" версияга ёки каттароқ версияга янгилаш зарур." -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "" @@ -4642,7 +4642,7 @@ msgid "Character set of the file" msgstr "Файл кодировкаси" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Формат" @@ -10868,7 +10868,7 @@ msgid "Error in ZIP archive:" msgstr "Ушбу ZIP архивда хатолик:" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -12578,6 +12578,7 @@ msgid "Global value" msgstr "Глобал қиймат" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "Юклаб олиш" @@ -13111,49 +13112,35 @@ msgstr "%1$s жадвали тузилди." msgid "View dump (schema) of table" msgstr "Жадвал дампини (схемасини) намойиш этиш" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 #, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" msgstr "Сервер танловини кўрсатиш" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 #, fuzzy #| msgid "CHAR textarea columns" msgid "Label column" msgstr "CHAR майдонидаги устунлар сони" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "- йўқ -" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Журнал файллари сони" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:178 -#, fuzzy -#| msgid "Save as file" -msgid "Save to file" -msgstr "Файл каби сақлаш" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 #, fuzzy #| msgid "Table name" msgid "File name" @@ -14653,6 +14640,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Максимал уланишлар сони " +#, fuzzy +#~| msgid "Save as file" +#~ msgid "Save to file" +#~ msgstr "Файл каби сақлаш" + #, fuzzy #~| msgid "Log file count" #~ msgid "Total count" diff --git a/po/uz@latin.po b/po/uz@latin.po index 88a01a1aa3..c735c7792d 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2012-12-13 13:07+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uzbek (latin) $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -4158,43 +4158,43 @@ msgstr "" "$cfg[\"PmaAbsoluteUrl\"] direktivasi konfiguratsion faylda " "sozlanishi SHART!" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Server raqami noto‘g‘ri: \"%s\"" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "%1$s serveri uchun noto‘g‘ri xost nomi ko‘rsatilgan. phpMyAdmin " "konfiguratsion faylida belgilangan sozlashlarni to‘g‘irlang." -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "" "phpMyAdmin konfiguratsion faylida noto‘g‘ri autentifikatsiya usuli " "belgilangan:" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "\"%s\" ni \"%s\" versiyaga yoki kattaroq versiyaga yangilash zarur." -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "" @@ -4675,7 +4675,7 @@ msgid "Character set of the file" msgstr "Fayl kodirovkasi" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "Format" @@ -10943,7 +10943,7 @@ msgid "Error in ZIP archive:" msgstr "Ushbu ZIP arxivda xatolik:" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -12669,6 +12669,7 @@ msgid "Global value" msgstr "Global qiymat" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "Yuklab olish" @@ -13205,49 +13206,35 @@ msgstr "%1$s jadvali tuzildi." msgid "View dump (schema) of table" msgstr "Jadval dampini (sxemasini) namoyish etish" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 #, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" msgstr "Server tanlovini ko‘rsatish" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 #, fuzzy #| msgid "CHAR textarea columns" msgid "Label column" msgstr "CHAR maydonidagi ustunlar soni" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "- yo‘q -" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Jurnal fayllari soni" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:178 -#, fuzzy -#| msgid "Save as file" -msgid "Save to file" -msgstr "Fayl kabi saqlash" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 #, fuzzy #| msgid "Table name" msgid "File name" @@ -14749,6 +14736,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Maksimal ulanishlar soni " +#, fuzzy +#~| msgid "Save as file" +#~ msgid "Save to file" +#~ msgstr "Fayl kabi saqlash" + #, fuzzy #~| msgid "Log file count" #~ msgid "Total count" diff --git a/po/zh_CN.po b/po/zh_CN.po index 2a99154322..56a355a823 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2013-01-10 13:42+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Chinese (China) $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3743,38 +3743,38 @@ msgid "" "configuration file!" msgstr "必须在您的配置文件中设置 $cfg['PmaAbsoluteUri'] !" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "无效的服务器索引: %s" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "无效的主机名 %1$s,请检查配置文件。" -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "配置文件中设置的认证方式无效:" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "您应升级到 %s %s 或更高版本。" -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "企图覆盖 GLOBALS" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "可利用" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "监测到数值型键" @@ -4205,7 +4205,7 @@ msgid "Character set of the file" msgstr "文件字符集" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "格式" @@ -9836,7 +9836,7 @@ msgid "Error in ZIP archive:" msgstr "ZIP 包中有错误:" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11376,6 +11376,7 @@ msgid "Global value" msgstr "全局值" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "下载" @@ -11805,39 +11806,27 @@ msgstr "创建数据表 %1$s 成功。" msgid "View dump (schema) of table" msgstr "查看数据表的转储(大纲)" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 msgid "Display GIS Visualization" msgstr "显示可视化 GIS" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "宽" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "高" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 msgid "Label column" msgstr "名称字段" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 msgid "-- None --" msgstr "-- 无 --" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 msgid "Spatial column" msgstr "空间字段" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "重绘" -#: tbl_gis_visualization.php:178 -msgid "Save to file" -msgstr "保存文件" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 msgid "File name" msgstr "文件名" @@ -13237,6 +13226,15 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 被设为 0" +#~ msgid "Width" +#~ msgstr "宽" + +#~ msgid "Height" +#~ msgstr "高" + +#~ msgid "Save to file" +#~ msgstr "保存文件" + #~ msgid "Total count" #~ msgstr "总计" diff --git a/po/zh_TW.po b/po/zh_TW.po index 210610f798..24e37a379b 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-01-18 14:17+0100\n" +"POT-Creation-Date: 2013-01-21 00:59+0100\n" "PO-Revision-Date: 2013-01-10 13:43+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Chinese (Taiwan) $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3778,38 +3778,38 @@ msgid "" "configuration file!" msgstr "必須在您的設定檔案中設定 $cfg['PmaAbsoluteUri'] !" -#: libraries/common.inc.php:626 +#: libraries/common.inc.php:628 #, php-format msgid "Invalid server index: %s" msgstr "無效的伺服器索引: %s" -#: libraries/common.inc.php:637 +#: libraries/common.inc.php:639 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "伺服器 %1$s 主機名稱錯誤, 請檢查設定檔案." -#: libraries/common.inc.php:846 +#: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" msgstr "設定檔案中設定的認證方式無效:" -#: libraries/common.inc.php:968 +#: libraries/common.inc.php:970 #, php-format msgid "You should upgrade to %s %s or later." msgstr "您應升級到 %s %s 或更高版本。" -#: libraries/common.inc.php:1042 +#: libraries/common.inc.php:1044 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1086 +#: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" msgstr "嘗試覆寫 GLOBALS (全域變數)" -#: libraries/common.inc.php:1093 +#: libraries/common.inc.php:1095 msgid "possible exploit" msgstr "$_REQUEST 數量過多(駭客?)" -#: libraries/common.inc.php:1102 +#: libraries/common.inc.php:1104 msgid "numeric key detected" msgstr "$_GLOBALS 內含非法的數字鍵名" @@ -4240,7 +4240,7 @@ msgid "Character set of the file" msgstr "檔案字集" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 -#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182 +#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167 #: tbl_printview.php:350 msgid "Format" msgstr "格式" @@ -9922,7 +9922,7 @@ msgid "Error in ZIP archive:" msgstr "ZIP 包中有錯誤:" #: navigation.php:23 -msgid "Fatal error: The navigation can only be accessed via ajax" +msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" #: pmd_display_field.php:60 pmd_save_pos.php:81 @@ -11488,6 +11488,7 @@ msgid "Global value" msgstr "全域值" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244 +#: tbl_gis_visualization.php:180 msgid "Download" msgstr "下載" @@ -11941,49 +11942,35 @@ msgstr "建立資料表 %1$s 成功" msgid "View dump (schema) of table" msgstr "查看資料表的轉存(大綱)" -#: tbl_gis_visualization.php:109 +#: tbl_gis_visualization.php:105 #, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" msgstr "顯示伺服器選擇" -#: tbl_gis_visualization.php:126 -msgid "Width" -msgstr "寬" - -#: tbl_gis_visualization.php:130 -msgid "Height" -msgstr "高" - -#: tbl_gis_visualization.php:134 +#: tbl_gis_visualization.php:110 #, fuzzy #| msgid "Textarea columns" msgid "Label column" msgstr "文本框列" -#: tbl_gis_visualization.php:136 +#: tbl_gis_visualization.php:112 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "- 無 -" -#: tbl_gis_visualization.php:150 +#: tbl_gis_visualization.php:126 #, fuzzy #| msgid "Total count" msgid "Spatial column" msgstr "總數量" -#: tbl_gis_visualization.php:176 +#: tbl_gis_visualization.php:141 msgid "Redraw" msgstr "重繪" -#: tbl_gis_visualization.php:178 -#, fuzzy -#| msgid "Save as file" -msgid "Save to file" -msgstr "另存檔案" - -#: tbl_gis_visualization.php:179 +#: tbl_gis_visualization.php:164 #, fuzzy #| msgid "Table name" msgid "File name" @@ -13479,6 +13466,17 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 已被設置為 0" +#~ msgid "Width" +#~ msgstr "寬" + +#~ msgid "Height" +#~ msgstr "高" + +#, fuzzy +#~| msgid "Save as file" +#~ msgid "Save to file" +#~ msgstr "另存檔案" + #~ msgid "Total count" #~ msgstr "總數量" From fb6af7bafa7e5da3baaa9dcd5b69754ece3b6bd7 Mon Sep 17 00:00:00 2001 From: Rouslan Placella Date: Mon, 21 Jan 2013 00:25:11 +0000 Subject: [PATCH 39/85] There are no dialogs for changing/adding columns of a table --- js/functions.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/js/functions.js b/js/functions.js index 7ef3a081af..d76bf26e60 100644 --- a/js/functions.js +++ b/js/functions.js @@ -3864,11 +3864,6 @@ $(function () { $("#sqlqueryresults").html(data.sql_query); $("#result_query .notice").remove(); $("#result_query").prepend(data.message); - if ($("#change_column_dialog").length > 0) { - $("#change_column_dialog").dialog("close").remove(); - } else if ($("#add_columns").length > 0) { - $("#add_columns").dialog("close").remove(); - } /* Reload the field form */ if ($("#fieldsForm").length) { reloadFieldForm(data.message); From b11c4016d976adcaf4b9ff916ae8d6294f166990 Mon Sep 17 00:00:00 2001 From: Rouslan Placella Date: Mon, 21 Jan 2013 00:26:40 +0000 Subject: [PATCH 40/85] Table structure functionality belongs in tbl_structure.js file --- js/functions.js | 55 +-------------------------------------------- js/tbl_structure.js | 53 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+), 54 deletions(-) diff --git a/js/functions.js b/js/functions.js index d76bf26e60..a834ed59df 100644 --- a/js/functions.js +++ b/js/functions.js @@ -3824,57 +3824,4 @@ AJAX.registerOnload('functions.js', function () { $('a.login-link').live('click', function(e) { e.preventDefault(); window.location.reload(true); -}); - -/** - * jQuery coding for 'Change Table' and 'Add Column'. Used on tbl_structure.php * - * Attach Ajax Event handlers for Change Table - */ -$(function () { - /** - *Ajax action for submitting the "Column Change" and "Add Column" form - **/ - $(".append_fields_form.ajax").live('submit', function(event) { - event.preventDefault(); - /** - * @var the_form object referring to the export form - */ - var $form = $(this); - - /* - * First validate the form; if there is a problem, avoid submitting it - * - * checkTableEditForm() needs a pure element and not a jQuery object, - * this is why we pass $form[0] as a parameter (the jQuery object - * is actually an array of DOM elements) - */ - if (checkTableEditForm($form[0], $form.find('input[name=orig_num_fields]').val())) { - // OK, form passed validation step - PMA_prepareForAjaxRequest($form); - //User wants to submit the form - PMA_ajaxShowMessage(); - $.post($form.attr('action'), $form.serialize() + '&do_save_data=1', function(data) { - if ($("#sqlqueryresults").length != 0) { - $("#sqlqueryresults").remove(); - } else if ($(".error").length != 0) { - $(".error").remove(); - } - if (data.success == true) { - $("
").prependTo("#page_content"); - $("#sqlqueryresults").html(data.sql_query); - $("#result_query .notice").remove(); - $("#result_query").prepend(data.message); - /* Reload the field form */ - if ($("#fieldsForm").length) { - reloadFieldForm(data.message); - } else { - PMA_ajaxShowMessage(data.message); - } - PMA_reloadNavigation(); - } else { - PMA_ajaxShowMessage(data.error, false); - } - }); // end $.post() - } - }); // end change table button "do_save_data" -}); +}); \ No newline at end of file diff --git a/js/tbl_structure.js b/js/tbl_structure.js index 3c61b10a0c..3a84915b26 100644 --- a/js/tbl_structure.js +++ b/js/tbl_structure.js @@ -374,6 +374,59 @@ AJAX.registerOnload('tbl_structure.js', function() { }); }); +/** + * jQuery coding for 'Change Table' and 'Add Column'. Used on tbl_structure.php * + * Attach Ajax Event handlers for Change Table + */ +$(function () { + /** + *Ajax action for submitting the "Column Change" and "Add Column" form + **/ + $(".append_fields_form.ajax").live('submit', function(event) { + event.preventDefault(); + /** + * @var the_form object referring to the export form + */ + var $form = $(this); + + /* + * First validate the form; if there is a problem, avoid submitting it + * + * checkTableEditForm() needs a pure element and not a jQuery object, + * this is why we pass $form[0] as a parameter (the jQuery object + * is actually an array of DOM elements) + */ + if (checkTableEditForm($form[0], $form.find('input[name=orig_num_fields]').val())) { + // OK, form passed validation step + PMA_prepareForAjaxRequest($form); + //User wants to submit the form + PMA_ajaxShowMessage(); + $.post($form.attr('action'), $form.serialize() + '&do_save_data=1', function(data) { + if ($("#sqlqueryresults").length != 0) { + $("#sqlqueryresults").remove(); + } else if ($(".error").length != 0) { + $(".error").remove(); + } + if (data.success == true) { + $("
").prependTo("#page_content"); + $("#sqlqueryresults").html(data.sql_query); + $("#result_query .notice").remove(); + $("#result_query").prepend(data.message); + /* Reload the field form */ + if ($("#fieldsForm").length) { + reloadFieldForm(data.message); + } else { + PMA_ajaxShowMessage(data.message); + } + PMA_reloadNavigation(); + } else { + PMA_ajaxShowMessage(data.error, false); + } + }); // end $.post() + } + }); // end change table button "do_save_data" +}); + /** * Reload fields table */ From 26dc7d31410d94a19b0d44c77ea4d537d16ec877 Mon Sep 17 00:00:00 2001 From: Rouslan Placella Date: Mon, 21 Jan 2013 00:29:27 +0000 Subject: [PATCH 41/85] Bind events according to the new AJAX spec: http://wiki.phpmyadmin.net/pma/Page_loader#The_onload_event --- js/tbl_structure.js | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/js/tbl_structure.js b/js/tbl_structure.js index 3a84915b26..91e7a16ee3 100644 --- a/js/tbl_structure.js +++ b/js/tbl_structure.js @@ -375,14 +375,17 @@ AJAX.registerOnload('tbl_structure.js', function() { }); /** - * jQuery coding for 'Change Table' and 'Add Column'. Used on tbl_structure.php * + * jQuery coding for 'Change Table' and 'Add Column'. * Attach Ajax Event handlers for Change Table */ -$(function () { +AJAX.registerTeardown('tbl_structure.js', function() { + $(".append_fields_form.ajax").unbind('submit'); +}); +AJAX.registerOnload('tbl_structure.js', function() { /** *Ajax action for submitting the "Column Change" and "Add Column" form - **/ - $(".append_fields_form.ajax").live('submit', function(event) { + */ + $(".append_fields_form.ajax").bind('submit', function(event) { event.preventDefault(); /** * @var the_form object referring to the export form From 19374e4e80034a460c4542ce92261e3b7d8d07e1 Mon Sep 17 00:00:00 2001 From: Yogendra Singh Shekhawat Date: Sun, 20 Jan 2013 23:05:00 +0100 Subject: [PATCH 42/85] Translated using Weblate (Hindi) Currently translated at 61.9% (1587 of 2562) --- po/hi.po | 441 +++++++++++++++++++++++++++---------------------------- 1 file changed, 216 insertions(+), 225 deletions(-) diff --git a/po/hi.po b/po/hi.po index b39e79a3db..d6eadf1433 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-10-16 14:37+0200\n" -"PO-Revision-Date: 2013-01-20 19:25+0200\n" +"PO-Revision-Date: 2013-01-20 23:05+0200\n" "Last-Translator: Yogendra Singh Shekhawat \n" "Language-Team: Hindi \n" "Language: hi\n" @@ -1257,10 +1257,9 @@ msgid "Query statistics" msgstr "क्वॅरी संबंधी आंकड़े" #: js/messages.php:94 -#, fuzzy #| msgid "Could not save configuration" msgid "Local monitor configuration incompatible" -msgstr "विन्यास सहेज नहीं सकते" +msgstr "स्थानीय जाँच व्यवस्था असंगत" #: js/messages.php:95 msgid "" @@ -1269,106 +1268,102 @@ msgid "" "likely that your current configuration will not work anymore. Please reset " "your configuration to default in the Settings menu." msgstr "" +"आपके ब्राउज़र के स्थानीय भण्डार में स्थित चार्ट व्यवस्था और नयी जांच सम्बन्धी " +"व्यवस्था के बीच तारतम्यता नहीं बैठ पा रही है। हो सकता है कि इस सम्बन्ध में " +"आपका वर्तमान प्रारूप अब काम न कर पाए। कृपया, सेटिंग्स मेन्यू में जाकर " +"इसे पुनः डिफ़ॉल्ट पर रिसेट करें।" #: js/messages.php:97 -#, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" -msgstr "क्वेरी कैश" +msgstr "क्वॅरी कैश की कार्यक्षमता" #: js/messages.php:98 -#, fuzzy #| msgid "Query cache" msgid "Query cache usage" -msgstr "क्वेरी कैश" +msgstr "क्वॅरी कैश प्रयोग" #: js/messages.php:99 -#, fuzzy #| msgid "Query cache" msgid "Query cache used" -msgstr "क्वेरी कैश" +msgstr "काम में ली गई क्वॅरी कैश" #: js/messages.php:101 msgid "System CPU Usage" -msgstr "" +msgstr "मशीन सीपीयू उपयोग" #: js/messages.php:102 msgid "System memory" -msgstr "" +msgstr "सिस्टम मेमोरी" #: js/messages.php:103 msgid "System swap" -msgstr "" +msgstr "सिस्टम स्वॅप" #. l10n: shortcuts for Megabyte #: js/messages.php:104 js/messages.php:127 libraries/common.lib.php:1398 #: server_status.php:1699 msgid "MiB" -msgstr "MB" +msgstr "मेगाबाइट" #. l10n: shortcuts for Kilobyte #: js/messages.php:105 js/messages.php:126 libraries/common.lib.php:1396 #: server_status.php:1699 msgid "KiB" -msgstr "KB" +msgstr "किलोबाइट" #: 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 "गुप्त एकत्र (cached) मॅमरी" #: 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 "कुल स्वॅप" #: js/messages.php:115 msgid "Cached Swap" -msgstr "" +msgstr "एकत्र (cached) स्वॅप" #: js/messages.php:116 msgid "Used Swap" -msgstr "" +msgstr "प्रयुक्त स्वॅप" #: js/messages.php:117 -#, fuzzy #| msgid "Free pages" msgid "Free Swap" -msgstr "मुक्त पृष्ठों" +msgstr "मुक्त स्वॅप" #: js/messages.php:119 msgid "Bytes sent" -msgstr "" +msgstr "बाइट भेजे गए" #: js/messages.php:120 -#, fuzzy #| msgid "Received" msgid "Bytes received" -msgstr "प्राप्त" +msgstr "बाइट प्राप्त हुए" #: js/messages.php:121 server_status.php:1158 msgid "Connections" @@ -1377,72 +1372,68 @@ msgstr "कनेक्शन" #. l10n: shortcuts for Byte #: js/messages.php:125 libraries/common.lib.php:1394 msgid "B" -msgstr "बैट्स" +msgstr "बिट्स" #. l10n: shortcuts for Gigabyte #: js/messages.php:128 libraries/common.lib.php:1400 msgid "GiB" -msgstr "GB" +msgstr "गीगाबाइट" #. l10n: shortcuts for Terabyte #: js/messages.php:129 libraries/common.lib.php:1402 msgid "TiB" -msgstr "TB" +msgstr "टॅराबाइट" #. l10n: shortcuts for Petabyte #: js/messages.php:130 libraries/common.lib.php:1404 msgid "PiB" -msgstr "PB" +msgstr "पॅटाबाइट" #. l10n: shortcuts for Exabyte #: js/messages.php:131 libraries/common.lib.php:1406 msgid "EiB" -msgstr "EB" +msgstr "अॅग्जाबाइट" #: js/messages.php:132 -#, fuzzy, php-format +#, php-format #| msgid "%s table" #| msgid_plural "%s tables" msgid "%d table(s)" -msgstr " %s टेबलें" +msgstr "%d टेबल" #. l10n: Questions is the name of a MySQL Status variable #: js/messages.php:135 -#, fuzzy #| msgid "Versions" msgid "Questions" -msgstr "संस्करण" +msgstr "प्रश्न" #: js/messages.php:136 server_status.php:1113 msgid "Traffic" -msgstr "ट्रैफ़िक" +msgstr "व्यस्तता" #: js/messages.php:137 libraries/server_links.inc.php:73 #: server_status.php:1574 -#, fuzzy #| msgid "General relation features" 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 #| msgid "Snap to grid" msgid "Add chart to grid" -msgstr "ग्रिड पर स्नैप" +msgstr "चार्ट को जाली (grid) पर लगाएँ" #: js/messages.php:142 msgid "Please add at least one variable to the series" -msgstr "" +msgstr "कृपया, श्रृंखला में कम से कम एक चर (variable) ज़रूर जोड़ें" #: js/messages.php:143 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:573 libraries/export/sql.php:1093 @@ -1450,39 +1441,43 @@ msgstr "" #: server_privileges.php:2052 server_status.php:1281 server_status.php:1716 #: tbl_zoom_select.php:158 tbl_zoom_select.php:285 msgid "None" -msgstr "कोई नहीं" +msgstr "कुछ नहीं" #: js/messages.php:144 msgid "Resume monitor" -msgstr "" +msgstr "देखभाल व्यवस्था को पुनः शुरू करें" #: js/messages.php:145 msgid "Pause monitor" -msgstr "" +msgstr "देखभाल व्यवस्था को एक बार यथास्थिति (pause) रोकें" #: js/messages.php:147 msgid "general_log and slow_query_log are enabled." 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 "" +"धीमी क्वॅरी पञ्जिका (slow_query_log) तथा सामान्य पञ्जिका (general_log) को " +"निष्क्रिय किया गया।" #: js/messages.php:151 msgid "log_output is not set to TABLE." -msgstr "" +msgstr "टेबल पर पंजिका परिणाम (log_output) सेट नहीं है।" #: js/messages.php:152 msgid "log_output is set to TABLE." -msgstr "" +msgstr "टेबल पंजिका परिणाम (log_output) के साथ सेट है" #: js/messages.php:153 #, php-format @@ -1491,108 +1486,110 @@ msgid "" "than %d seconds. It is advisable to set this long_query_time 0-2 seconds, " "depending on your system." msgstr "" +"यद्यपि धीमी_क्वॅरी_पंजिका (slow_query_log) समर्थ है, परन्तु सर्वर उन्हीं " +"क्वॅरीज को पंजिका में सूचीबद्ध करता है जो %d सेकण्ड्स से ज्यादा समय लेती " +"हैं। अतः आपको सलाह दी जाती है कि सिस्टम के अनुरूप अधिक_क्वॅरी_समय " +"(long_query_time) को 0-2 सेकण्ड्स पर सेट कर लें।" #: 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 "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" +"सर्वर के दुबारा चालू होने पर अग्रवर्णित व्यवस्थाएं समूचे तंत्र में एक साथ " +"लागू होंगी और पुनः डिफ़ॉल्ट पर सेट हो जाएँगी" #. l10n: %s is FILE or TABLE #: js/messages.php:157 -#, fuzzy, php-format +#, php-format #| msgid "Save output to a file" msgid "Set log_output to %s" -msgstr "उत्पादन को फाईल मे सेव करें" +msgstr "पंजिका परिणाम (log_output) को %s पर सेट करें" #. 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 #, php-format msgid "Set long_query_time to %ds" -msgstr "" +msgstr "अधिक_समय_क्वॅरी (long_query_time) को %ds पर सेट करें" #: js/messages.php:164 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" +"आप इन चरों (variables) को बदलने की स्थिति में नहीं है। कृपया मूल (root) " +"प्रयोक्ता के बतौर लोग इन करें या अपने डॅटाबेस प्रबंधक से संपर्क करें।" #: js/messages.php:165 -#, fuzzy #| msgid "General relation features" msgid "Change settings" -msgstr "सेटिंग्स प्रबंधक" +msgstr "सेटिंग्स बदलें" #: js/messages.php:166 -#, fuzzy #| msgid "General relation features" msgid "Current settings" -msgstr "अधिक सेटिंग्स" +msgstr "वर्तमान सेटिंग्स" #: js/messages.php:168 server_status.php:1664 -#, fuzzy #| msgid "Default title" msgid "Chart Title" -msgstr "डिफ़ॉल्ट शीर्षक" +msgstr "चार्ट शीर्षक" #. l10n: As in differential values #: js/messages.php:170 -#, fuzzy #| msgid "Difference" msgid "Differential" -msgstr "अंतर" +msgstr "अवकलित" #: js/messages.php:171 #, php-format msgid "Divided by %s" -msgstr "" +msgstr "%s से विभाजित" #: js/messages.php:172 msgid "Unit" -msgstr "" +msgstr "इकाई" #: js/messages.php:174 msgid "From slow log" -msgstr "" +msgstr "धीमी पंजिका (slow log) से" #: js/messages.php:175 msgid "From general log" -msgstr "" +msgstr "सामान्य पंजिका (general_log) से" #: js/messages.php:176 -#, fuzzy #| msgid "Loading" msgid "Analysing logs" -msgstr "लोड हो रहा है" +msgstr "पंजिका (log) छान-बीन ज़ारी" #: js/messages.php:177 msgid "Analysing & loading logs. This may take a while." -msgstr "" +msgstr "पंजिका की छान-बीन और लोडिंग हो रही है। इसमें थोड़ा वक्त लग सकता है।" #: js/messages.php:178 -#, fuzzy #| msgid "Read requests" msgid "Cancel request" -msgstr "पढने का अनुरोध" +msgstr "अनुरोध रद्द करें" #: js/messages.php:179 msgid "" @@ -1600,6 +1597,9 @@ msgid "" "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" +"इस कॉलम में उन्हीं क्वॅरीज को एकत्रित किया गया है जो एक जैसी हैं। तथापि इनको " +"एकत्र करने का मापदण्ड इनका SQL पाठ्य ही है अतः क्वॅरीज के अन्य गुणधर्म जैसे " +"शुरुआत का समय आदि भिन्न मान लिए हो सकते हैं।" #: js/messages.php:180 msgid "" @@ -1607,38 +1607,39 @@ msgid "" "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" +"चूँकि INSERT क्वॅरीज के एकत्रीकरण (grouping) का को चुना गया है, सो एक ही " +"टेबल में की गयी INSERT क्वॅरीज को भी एकत्रित (group) किया गया है। टेबल में " +"डाले (insert) गए डॅटा से इसका कोई सम्बन्ध नहीं है।" #: js/messages.php:181 msgid "Log data loaded. Queries executed in this time span:" -msgstr "" +msgstr "पंजिका जानकारी लोड हो चुकी है। क्वॅरीज क्रियान्वन में लगा समय:" #: js/messages.php:183 -#, fuzzy #| msgid "Jump to database" msgid "Jump to Log table" -msgstr "डेटाबेस को कूद" +msgstr "सीधे पंजिका टेबल (log table) पर जाएँ" #: js/messages.php:184 -#, fuzzy #| msgid "No databases" msgid "No data found" -msgstr "कोइ डाटाबेस नहिं" +msgstr "कोई डॅटा नहीं पाया गया" #: js/messages.php:185 msgid "Log analysed, but no data found in this time span." msgstr "" +"पंजिका (log) की छान-बीन की गयी, परन्तु इस समय अन्तराल विशेष में कोई डॅटा " +"नहीं पाया गया।" #: js/messages.php:187 -#, fuzzy #| msgid "Analyze" msgid "Analyzing..." -msgstr "विश्लेषण" +msgstr "छान-बीन हो रही है…" #: js/messages.php:188 -#, fuzzy #| msgid "Explain SQL" msgid "Explain output" -msgstr "SQL की व्याख्या " +msgstr "परिणाम को समझाएँ" #: js/messages.php:190 js/messages.php:497 libraries/rte/rte_list.lib.php:62 #: server_status.php:1254 sql.php:897 @@ -1646,67 +1647,61 @@ msgid "Time" msgstr "समय" #: js/messages.php:191 -#, fuzzy #| msgid "Total" msgid "Total time:" -msgstr "कुल" +msgstr "कुल समय:" #: js/messages.php:192 -#, fuzzy #| msgid "Profiling" msgid "Profiling results" -msgstr "रूपरेखा" +msgstr "परिणाम का रूपरेखा बन रही है" #: js/messages.php:193 -#, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" -msgstr "टेबल " +msgstr "टेबल" #: js/messages.php:194 -#, fuzzy #| msgid "Charset" msgid "Chart" -msgstr "कोई" +msgstr "चार्ट" #: js/messages.php:195 -#, fuzzy #| msgid "Add index" msgid "Edit chart" -msgstr "अनुक्रमणिका जोड़" +msgstr "चार्ट सम्पादित करें" #: js/messages.php:196 -#, fuzzy #| msgid "SQL queries" msgid "Series" -msgstr "SQL क्वरी" +msgstr "श्रृंखला" #. l10n: A collection of available filters #: js/messages.php:199 -#, fuzzy #| msgid "Tables display options" msgid "Log table filter options" -msgstr "टेबल प्रदर्शन विकल्प" +msgstr "पंजिका (log) टेबल फ़िल्टर विकल्प" #. l10n: Filter as in "Start Filtering" #: js/messages.php:201 msgid "Filter" -msgstr "" +msgstr "फ़िल्टर" #: js/messages.php:202 msgid "Filter queries by word/regexp:" -msgstr "" +msgstr "क्वॅरीज को शब्द / रेग्युलर एक्सप्रेशन के जरिये फ़िल्टर करें:" #: js/messages.php:203 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" +"WHERE कथन में चर (variable) डॅटा को बिना शामिल किये, क्वॅरीज को एकत्र " +"(group) करें" #: js/messages.php:204 -#, fuzzy #| msgid "Number of inserted rows" msgid "Sum of grouped rows:" -msgstr "डाली गयी पक्न्तियों" +msgstr "एकत्र (group) पंक्तियों का योग:" #: js/messages.php:205 #, fuzzy @@ -1715,14 +1710,13 @@ msgid "Total:" msgstr "कुल" #: js/messages.php:207 -#, fuzzy #| msgid "Loading" msgid "Loading logs" -msgstr "लोड हो रहा है" +msgstr "पंजिका (log) को लोड किया जा रह है" #: js/messages.php:208 msgid "Monitor refresh failed" -msgstr "" +msgstr "देख-रेख तंत्र असफल रहा" #: js/messages.php:209 msgid "" @@ -1730,89 +1724,89 @@ msgid "" "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" +"आपके नवीन चार्ट डॅटा के अनुरोध को सर्वर ने अमान्य करार दिया है। शायद आपके " +"सेशन की अवधि समाप्त हो गयी हो। समाधान के लिए पेज रीलोड करें और अपने परिचय " +"सम्बन्धी जानकारी फिर से डालकर देखें।" #: js/messages.php:210 -#, fuzzy #| msgid "Reload" msgid "Reload page" -msgstr "पुनः लोड" +msgstr "पृष्ठ पुनः लोड करें" #: js/messages.php:212 msgid "Affected rows:" -msgstr "" +msgstr "प्रभावित पंक्तियाँ:" #: js/messages.php:214 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" +"कॉन्फिग फ़ाईल की को पढ़ पाने असमर्थ। ऐसा प्रतीत होता है कि इसमें मानक JSON कोड " +"नहीं है।" #: js/messages.php:215 msgid "" "Failed building chart grid with imported config. Resetting to default " "config..." msgstr "" +"आयातित कॉन्फिग के साथ चार्ट ग्रिड बनाने में असमर्थ। डिफ़ॉल्ट कॉन्फिग पर रिसेट " +"किया जा रह है…." #: js/messages.php:216 libraries/config/messages.inc.php:172 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1619 setup/frames/menu.inc.php:20 msgid "Import" -msgstr "आयात" +msgstr "आयात करें" #: js/messages.php:217 -#, fuzzy #| msgid "Could not import configuration" msgid "Import monitor configuration" -msgstr "विन्यास आयात नहीं किया जा सका" +msgstr "देख-रेख (import) विन्यास (configuration) आयात करें" #: js/messages.php:218 -#, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import" -msgstr "कृपया प्राथमिक कुंजी या एक अद्वितीय कुंजी का चयन करें" +msgstr "जिस फाईल को आयात करना चाहते हैं, उसे चुनें:" #: js/messages.php:220 -#, fuzzy #| msgid "Update Query" msgid "Analyse Query" -msgstr "क्वरी का नवीनीकरण करें" +msgstr "क्वॅरी का विश्लेष्ण करें" #: js/messages.php:224 msgid "Advisor system" -msgstr "" +msgstr "परामर्श व्यवस्था" #: js/messages.php:225 msgid "Possible performance issues" -msgstr "" +msgstr "कार्यक्षमता के सन्दर्भ में संभावित मुद्दे" #: js/messages.php:226 msgid "Issue" -msgstr "" +msgstr "मसला" #: js/messages.php:227 -#, fuzzy #| msgid "Documentation" msgid "Recommendation" -msgstr "डोक्युमेंटेशन" +msgstr "अनुशंसायें" #: js/messages.php:228 -#, fuzzy #| msgid "Details..." msgid "Rule details" -msgstr "विवरण..." +msgstr "नियमों का विवरण" #: js/messages.php:229 -#, fuzzy #| msgid "Authentication" msgid "Justification" -msgstr "प्रमाणीकरण" +msgstr "औचित्यकरण" #: js/messages.php:230 msgid "Used variable / formula" -msgstr "" +msgstr "प्रयुक्त चर (variable) / सूत्र (formula)" #: js/messages.php:231 msgid "Test" -msgstr "" +msgstr "जाँच" #: js/messages.php:236 pmd_general.php:382 pmd_general.php:419 #: pmd_general.php:539 pmd_general.php:587 pmd_general.php:663 @@ -1826,19 +1820,19 @@ msgstr "लोड हो रहा है" #: js/messages.php:240 msgid "Processing Request" -msgstr "याचिका प्रसंस्करण" +msgstr "अनुरोध क्रियान्वित हो रहा है" #: js/messages.php:241 libraries/rte/rte_export.lib.php:39 msgid "Error in Processing Request" -msgstr "याचिका प्रसंस्करणमें त्रुटि" +msgstr "अनुरोध क्रियान्वन में दिक्कत" #: js/messages.php:242 msgid "Dropping Column" -msgstr "काँलम गिराना" +msgstr "कॉलम को हटाया जाना" #: js/messages.php:243 msgid "Adding Primary Key" -msgstr "प्राथमिक कुंजी जोड़" +msgstr "प्राथमिक कुञ्जी जोड़ना" #: js/messages.php:244 libraries/relation.lib.php:80 pmd_general.php:380 #: pmd_general.php:537 pmd_general.php:585 pmd_general.php:661 @@ -1848,117 +1842,111 @@ msgstr "ठीक है" #: js/messages.php:245 msgid "Click to dismiss this notification" -msgstr "" +msgstr "इस सूचना को खारिज़ करने के लिए क्लिक करें" #: js/messages.php:248 msgid "Renaming Databases" -msgstr "डेटाबेस का नाम बदल कर ____ रखें" +msgstr "डॅटाबेसों का पुनर्नामकारण" #: js/messages.php:249 msgid "Reload Database" -msgstr "डेटाबेस पुनः लोड" +msgstr "डॅटाबेस पुनः लोड करें" #: js/messages.php:250 msgid "Copying Database" -msgstr "डेटाबेस को ______ में कॉपी करें" +msgstr "डॅटाबेस प्रतिलिपिकरण" #: js/messages.php:251 msgid "Changing Charset" -msgstr "वर्ण सेट बदलें" +msgstr "वर्ण समूह बदलाव" #: js/messages.php:252 msgid "Table must have at least one column" -msgstr "टेबल में कम से कम एक काँलम होना आवश्यक है" +msgstr "टेबल में कम से कम एक कॉलम होना आवश्यक है" #: js/messages.php:257 -#, fuzzy #| msgid "Use Tables" msgid "Insert Table" -msgstr "टेबल का उपयोग करो" +msgstr "टेबल डालें" #: js/messages.php:258 -#, fuzzy #| msgid "Add index" msgid "Hide indexes" -msgstr "अनुक्रमणिका जोड़" +msgstr "अनुक्रमणिकायें छिपाएँ" #: js/messages.php:259 -#, fuzzy #| msgid "Show grid" msgid "Show indexes" -msgstr "ग्रिड दिखाओ" +msgstr "अनुक्रमणिकायें दिखाएँ" #: js/messages.php:262 msgid "Searching" -msgstr "खोजें" +msgstr "ख़ोज" #: js/messages.php:263 -#, fuzzy #| msgid "Hide search criteria" msgid "Hide search results" -msgstr "खोज मापदंड छिपाना" +msgstr "खोज परिणाम छिपाएँ" #: js/messages.php:264 -#, fuzzy #| msgid "Show search criteria" msgid "Show search results" -msgstr "खोज मापदंड दिखाना" +msgstr "खोज परिणाम दिखाएँ" #: js/messages.php:265 -#, fuzzy #| msgid "Browse" msgid "Browsing" -msgstr "ब्राउज़" +msgstr "ब्राउज़िंग" #: js/messages.php:266 -#, fuzzy #| msgid "Delete" msgid "Deleting" -msgstr "मिटाएँ" +msgstr "मिटाना" #: js/messages.php:269 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" +"एक संगृहीत फंक्शन की परिभाषा (definition) में RETURN कथन होना आवश्यक है!" #: js/messages.php:276 -#, fuzzy, php-format +#, php-format #| msgid "Add a new User" msgid "Add %d value(s)" -msgstr "नयी वलुए जोडें" +msgstr "%d मान जोड़ें" #: js/messages.php:279 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" +"सूचना: यदि फ़ाईल में एक से अधिक टेबलें हैं तो वे एक में ही संगठित की जाएँगी" #: js/messages.php:282 msgid "Hide query box" -msgstr "क्वरी बॉक्स छुपा" +msgstr "क्वॅरी बॉक्स छिपाएँ" #: js/messages.php:283 msgid "Show query box" -msgstr "क्वेरी बॉक्स दिखाएँ" +msgstr "क्वॅरी बॉक्स दिखाएँ" #: js/messages.php:285 tbl_row_action.php:28 msgid "No rows selected" -msgstr "कोई चयनित रो नहीं" +msgstr "कोई पंक्ति चयनित नहीं" #: js/messages.php:286 libraries/common.lib.php:2742 #: libraries/display_tbl.lib.php:2507 querywindow.php:87 tbl_structure.php:149 #: tbl_structure.php:588 msgid "Change" -msgstr "बदलिये" +msgstr "बदलें" #: js/messages.php:287 -#, fuzzy #| msgid "Maximum execution time" msgid "Query execution time" -msgstr "अधिकतम निष्पादन समय" +msgstr "क्वॅरी क्रियान्वन में लगा समय" #: js/messages.php:288 libraries/display_tbl.lib.php:423 #, php-format msgid "%d is not valid row number." -msgstr "%d वैध रो संख्या नहीं है" +msgstr "%d एक वैध पंक्ति संख्या नहीं है" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:352 @@ -1966,90 +1954,87 @@ msgstr "%d वैध रो संख्या नहीं है" #: setup/frames/index.inc.php:229 tbl_change.php:1025 #: tbl_gis_visualization.php:193 tbl_indexes.php:280 tbl_relation.php:559 msgid "Save" -msgstr "बचाना" +msgstr "सुरक्षित करें" #: js/messages.php:294 msgid "Hide search criteria" -msgstr "खोज मापदंड छिपाना" +msgstr "ख़ोज मापदंड छिपाएँ" #: js/messages.php:295 msgid "Show search criteria" -msgstr "खोज मापदंड दिखाना" +msgstr "खोज मापदंड दिखाएँ" #: js/messages.php:298 libraries/tbl_select.lib.php:110 -#, fuzzy #| msgid "Search" msgid "Zoom Search" -msgstr "ढूंढें" +msgstr "ज़ूम ख़ोज" #: js/messages.php:300 msgid "Each point represents a data row." -msgstr "" +msgstr "प्रत्येक बिन्दु एक डॅटा पंक्ति को बताता है।" #: js/messages.php:302 msgid "Hovering over a point will show its label." -msgstr "" +msgstr "लेबल देखने के लिए कर्सर बिन्दु के ऊपर लेकर जाएँ।" #: js/messages.php:304 msgid "To zoom in, select a section of the plot with the mouse." -msgstr "" +msgstr "और बारीकी से देखने के लिए पुरे क्षेत्र का कोई भाग माउस से सेलेक्ट करें।" #: js/messages.php:306 msgid "Click reset zoom link to come back to original state." -msgstr "" +msgstr "मूल अवस्था पर वापस आने के लिए रिसेट ज़ूम लिंक पर क्लिक करें।" #: js/messages.php:308 msgid "Click a data point to view and possibly edit the data row." -msgstr "" +msgstr "पंक्ति को देखने और संभावित सम्पादन के लिए डॅटा बिन्दु पर क्लिक करें।" #: js/messages.php:310 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" +"दायीं तरफ नीचे के कोने के साथ पॉइंटर घसीटने पर क्षेत्र के अकार को बदला जा " +"सकता है।" #: js/messages.php:312 -#, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" -msgstr "कोलम जोडें/हटायें" +msgstr "दो कॉलम चुने" #: js/messages.php:313 msgid "Select two different columns" -msgstr "" +msgstr "दो भिन्न कॉलम चुनें" #: js/messages.php:314 -#, fuzzy #| msgid "SQL result" msgid "Query results" -msgstr "SQLपरिणाम" +msgstr "क्वॅरी परिणाम" #: js/messages.php:315 -#, fuzzy #| msgid "Data pointer size" msgid "Data point content" -msgstr "सूचक का आकार डेटा" +msgstr "डॅटा बिन्दु सामग्री" #: js/messages.php:318 tbl_change.php:312 tbl_indexes.php:228 #: tbl_indexes.php:255 msgid "Ignore" -msgstr "ध्यान न देना" +msgstr "उपेक्षा करें" #: js/messages.php:319 libraries/display_tbl.lib.php:1391 msgid "Copy" -msgstr "अनुकृति" +msgstr "प्रतिलिपि करें" #: js/messages.php:334 -#, fuzzy #| msgid "Add column" msgid "Add columns" -msgstr "नया काँलम जोडें" +msgstr "नए कॉलम जोडें" #: js/messages.php:337 msgid "Select referenced key" -msgstr "संदर्भित कुंजी का चयन करें." +msgstr "संदर्भ कुंजी का चयन करें" #: js/messages.php:338 msgid "Select Foreign Key" -msgstr "विदेश कुंजी का चयन करें." +msgstr "परदेशी कुंजी का चयन करें" #: js/messages.php:339 msgid "Please select the primary key or a unique key" @@ -2057,74 +2042,81 @@ msgstr "कृपया प्राथमिक कुंजी या एक #: js/messages.php:340 pmd_general.php:77 tbl_relation.php:541 msgid "Choose column to display" -msgstr "प्रदर्शित करने के लिए काँलम चयन करें." +msgstr "प्रदर्शित करने के लिए काँलम चुनें" #: js/messages.php:341 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" +"आपने प्रदर्शन में बदलावों को सुरक्षित नहीं किया है। ये बदलाव खो जायेंगे यदि " +"आपने सुरक्षित नहीं किया। क्या आप ज़ारी रखना चाहेंगे?" #: js/messages.php:344 msgid "Add an option for column " -msgstr "काँलम के लिए एक विकल्प जोड़ें " +msgstr "कॉलम के लिए एक विकल्प जोड़ें " #: js/messages.php:347 msgid "Press escape to cancel editing" -msgstr "" +msgstr "सम्पादन को रद्द करने के लिए एस्केप दबाएँ" #: js/messages.php:348 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" +"आपने कुछ डॅटा को सम्पादित किया है पर सुरक्षित नहीं किया है। क्या आप उन्हें " +"बिना सुरक्षित किये आगे बढ़ना चाहेंगे?" #: js/messages.php:349 msgid "Drag to reorder" -msgstr "" +msgstr "पुनः व्यवस्थित करने के लिए घसीटें" #: js/messages.php:350 -#, fuzzy #| msgid "Click to select" msgid "Click to sort" -msgstr "चयन करने के लिए क्लिक करें." +msgstr "क्रमानुसार करने के लिए क्लिक करें" #: js/messages.php:351 msgid "Click to mark/unmark" -msgstr "" +msgstr "चिन्हित / अचिन्हित करने के लिए क्लिक करें" #: js/messages.php:352 msgid "Click the drop-down arrow
to toggle column's visibility" -msgstr "" +msgstr "कॉलम को दिखने / छुपाने के लिए
ड्रॉप-डाउन तीर पर क्लिक करें" #: js/messages.php:354 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" +"इस टेबल में कोई भी विशिष्ट (unique) कॉलम नहीं है। इस बात कि सम्भावना है कि " +"ग्रिड सम्पादन, टिक-बॉक्स, सम्पादन, प्रतिलिपि एवं मिटाने के लिंक से जुडी " +"सुविधाएँ काम न करें।" #: js/messages.php:355 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" +"आप ज्यादातर कॉलम को
उनकी सामग्री पर सीधे क्लिक करके भी सम्पादित कर " +"सकते हैं।" #: js/messages.php:356 -#, fuzzy #| msgid "Go to view" msgid "Go to link" -msgstr "दृश्य पर जायें" +msgstr "लिंक पर जाएँ" #: js/messages.php:359 msgid "Generate password" -msgstr "पासव्रड उत्पन्न करें" +msgstr "नया पासवर्ड उत्पन्न करें" #: js/messages.php:360 libraries/replication_gui.lib.php:369 msgid "Generate" -msgstr "उत्पन्न" +msgstr "उत्पन्न करें" #: js/messages.php:361 msgid "Change Password" -msgstr "पासवर्ड बदलिये" +msgstr "पासवर्ड बदलें" #: js/messages.php:364 tbl_structure.php:480 msgid "More" @@ -2136,33 +2128,31 @@ msgid "" "A newer version of phpMyAdmin is available and you should consider " "upgrading. The newest version is %s, released on %s." msgstr "" -"phpMyAdmin का एक नया संस्करण उपलब्ध है, यह नया संस्करण %s है,और यह %s को प्रकाशित हुआ" +"phpMyAdmin का नवीन संस्करण उपलब्ध है। नया संस्करण %s है जो कि %s को प्रकाशित " +"हुआ है।" #. l10n: Latest available phpMyAdmin version #: js/messages.php:369 msgid ", latest stable version:" -msgstr ", नवीनतम स्थिर संस्करण:" +msgstr "नवीनतम स्थिर संस्करण:" #: js/messages.php:370 -#, fuzzy #| msgid "Jump to database" msgid "up to date" -msgstr "डेटाबेस को कूद" +msgstr "अद्यतन" #. l10n: Display text for calendar close link #: js/messages.php:389 msgid "Done" -msgstr "किया" +msgstr "हो गया" #: js/messages.php:393 -#, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "पिछला" #: js/messages.php:398 -#, fuzzy #| msgid "Next" msgctxt "Next month" msgid "Next" @@ -2292,7 +2282,7 @@ msgstr "सोमवार" #: js/messages.php:446 msgid "Tuesday" -msgstr "मन्गलवार" +msgstr "मंगलवार" #: js/messages.php:447 msgid "Wednesday" @@ -2326,7 +2316,7 @@ msgstr "सोमवार" #. l10n: Short week day name #: js/messages.php:458 libraries/common.lib.php:1634 msgid "Tue" -msgstr "मन्गलवार" +msgstr "मंगलवार" #. l10n: Short week day name #: js/messages.php:460 libraries/common.lib.php:1636 @@ -2351,55 +2341,54 @@ msgstr "शनिवार" #. l10n: Minimal week day name #: js/messages.php:470 msgid "Su" -msgstr "रविवार" +msgstr "रवि" #. l10n: Minimal week day name #: js/messages.php:472 msgid "Mo" -msgstr "सोमवार" +msgstr "सोम" #. l10n: Minimal week day name #: js/messages.php:474 msgid "Tu" -msgstr "मन्गलवार" +msgstr "मंगल" #. l10n: Minimal week day name #: js/messages.php:476 msgid "We" -msgstr "बुधवार" +msgstr "बुध" #. l10n: Minimal week day name #: js/messages.php:478 msgid "Th" -msgstr "गुरुवार" +msgstr "गुरु" #. l10n: Minimal week day name #: js/messages.php:480 msgid "Fr" -msgstr "शुक्रवार" +msgstr "शुक्र" #. l10n: Minimal week day name #: js/messages.php:482 msgid "Sa" -msgstr "शनिवार" +msgstr "शनि" #. l10n: Column header for week of the year in calendar #: js/messages.php:484 msgid "Wk" -msgstr "हफ्ता" +msgstr "सप्ताह" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". #: js/messages.php:487 msgid "calendar-month-year" -msgstr "" +msgstr "कैलेण्डर-माह-वर्ष" #. l10n: Year suffix for calendar, "none" is empty. #: js/messages.php:489 -#, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" -msgstr "कोई नहीं" +msgstr "कुछ नहीं" #: js/messages.php:498 msgid "Hour" @@ -2411,12 +2400,14 @@ msgstr "मिनट" #: js/messages.php:500 msgid "Second" -msgstr "सेकंड" +msgstr "सेकण्ड" #: libraries/Advisor.class.php:168 #, php-format msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" msgstr "" +"स्ट्रिंग को, %s नियम के आधार पर सही प्रारूप देने में असमर्थ। PHP ने " +"अग्रलिखित त्रुटी फेंकी है: %s" #: libraries/Advisor.class.php:326 server_status.php:965 msgid "per second" @@ -2429,15 +2420,15 @@ msgstr "प्रति मिनट" #: libraries/Advisor.class.php:332 server_status.php:956 server_status.php:992 #: server_status.php:1114 server_status.php:1159 msgid "per hour" -msgstr "प्रति घंटे" +msgstr "प्रति घंटा" #: libraries/Advisor.class.php:335 msgid "per day" -msgstr "" +msgstr "प्रतिदिन" #: libraries/Config.class.php:701 msgid "Remove \"./config\" directory before using phpMyAdmin!" -msgstr "" +msgstr "phpMyAdmin प्रयोग में लेने से पहले \"./config\" डायरेक्टरी को हटायें!" #: libraries/Config.class.php:727 #, php-format From 483d177425be2a6d3857c058d61fa4667ad221d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 21 Jan 2013 06:55:20 +0100 Subject: [PATCH 43/85] Translated using Weblate (Czech) Currently translated at 100.0% (2599 of 2599) --- po/cs.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/cs.po b/po/cs.po index 4d831abdf1..b17eb6d705 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-01-21 00:59+0100\n" -"PO-Revision-Date: 2013-01-18 15:16+0200\n" +"PO-Revision-Date: 2013-01-21 06:55+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Czech \n" "Language: cs\n" @@ -9960,10 +9960,9 @@ msgid "Error in ZIP archive:" msgstr "Chyba v ZIP archívu:" #: navigation.php:23 -#, fuzzy #| msgid "Fatal error: The navigation can only be accessed via ajax" msgid "Fatal error: The navigation can only be accessed via AJAX" -msgstr "Chyba: Navigace je přístupná jen přes ajax" +msgstr "Chyba: Navigace je přístupná jen přes AJAX" #: pmd_display_field.php:60 pmd_save_pos.php:81 msgid "Modifications have been saved" From d26eb5af65a2928dea923e887a4ac21375fd78f4 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Mon, 21 Jan 2013 07:01:48 +0100 Subject: [PATCH 44/85] Translated using Weblate (Turkish) Currently translated at 100.0% (2599 of 2599) --- po/tr.po | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/po/tr.po b/po/tr.po index 0bd4b01dd0..f6a8e66ec7 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,10 +4,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-01-21 00:59+0100\n" -"PO-Revision-Date: 2013-01-18 19:20+0200\n" +"PO-Revision-Date: 2013-01-21 07:01+0200\n" "Last-Translator: Burak Yavuz \n" -"Language-Team: Turkish \n" +"Language-Team: Turkish " +"\n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -10046,10 +10046,9 @@ msgid "Error in ZIP archive:" msgstr "ZIP arşivinde hata:" #: navigation.php:23 -#, fuzzy #| msgid "Fatal error: The navigation can only be accessed via ajax" msgid "Fatal error: The navigation can only be accessed via AJAX" -msgstr "Önemli hata: Rehbere sadece ajax aracılığıyla erişilebilir" +msgstr "Önemli hata: Rehbere sadece AJAX aracılığıyla erişilebilir" #: pmd_display_field.php:60 pmd_save_pos.php:81 msgid "Modifications have been saved" From 57d7b2da552c0be9f95931018c9ff1fd5fd054db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 21 Jan 2013 06:56:37 +0100 Subject: [PATCH 45/85] Translated using Weblate (Arabic) Currently translated at 51.1% (1310 of 2562) --- po/ar.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/ar.po b/po/ar.po index d3953b0051..a189c3ee35 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-10-16 14:37+0200\n" -"PO-Revision-Date: 2013-01-10 13:39+0200\n" +"PO-Revision-Date: 2013-01-21 06:56+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Arabic \n" "Language: ar\n" @@ -7270,8 +7270,8 @@ msgid "" "b> Please use the improved 'mysqli' extension to avoid any problems." msgstr "" "انت تستخدم ملحق PHP مهمل 'mysql'، وهو ليس قادر على التعامل مع الإستعلامات " -"المتعددة. فتنفيذ بعض الإجراءات المخزنة قد تفشل! الرجاء استخدام " -"ملحق 'mysqli' لتجنب أي مشاكل." +"المتعددة. فتنفيذ بعض الإجراءات المخزنة قد تفشل! الرجاء استخدام ملحق " +"'mysqli' لتجنب أي مشاكل." #: libraries/rte/rte_routines.lib.php:245 #: libraries/rte/rte_routines.lib.php:1022 From b96469e018f5458a47d630925778c54f9d70ffc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 21 Jan 2013 06:58:10 +0100 Subject: [PATCH 46/85] Translated using Weblate (Croatian) Currently translated at 42.0% (1077 of 2562) --- po/hr.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/hr.po b/po/hr.po index 309d0da2f1..dfffbc4392 100644 --- a/po/hr.po +++ b/po/hr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-10-16 14:37+0200\n" -"PO-Revision-Date: 2013-01-08 09:18+0200\n" +"PO-Revision-Date: 2013-01-21 06:58+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Croatian \n" "Language: hr\n" @@ -2896,7 +2896,7 @@ msgstr "" #: libraries/auth/cookie.auth.lib.php:211 msgid "Server:" -msgstr "Poslužitelj" +msgstr "Poslužitelj:" #: libraries/auth/cookie.auth.lib.php:216 msgid "Username:" @@ -3301,7 +3301,7 @@ msgstr "Operacije" #: libraries/common.lib.php:3277 libraries/sql_query_form.lib.php:443 #: prefs_manage.php:239 msgid "Browse your computer:" -msgstr "Pretraži računalo" +msgstr "Pretraži računalo:" #: libraries/common.lib.php:3296 #, fuzzy, php-format @@ -11796,7 +11796,7 @@ msgstr "Dodaj/Izbriši stupce polja" #: tbl_chart.php:145 msgid "X-Axis label:" -msgstr "Oznaka X-osi" +msgstr "Oznaka X-osi:" #: tbl_chart.php:147 #, fuzzy From dcbd35d16403511940bea3e13388df93e5f43ef0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 21 Jan 2013 06:54:47 +0100 Subject: [PATCH 47/85] Translated using Weblate (Hindi) Currently translated at 61.9% (1587 of 2562) --- po/hi.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/hi.po b/po/hi.po index d6eadf1433..b1ca0ef5b4 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-10-16 14:37+0200\n" -"PO-Revision-Date: 2013-01-20 23:05+0200\n" -"Last-Translator: Yogendra Singh Shekhawat \n" +"PO-Revision-Date: 2013-01-21 06:54+0200\n" +"Last-Translator: Michal Čihař \n" "Language-Team: Hindi \n" "Language: hi\n" "MIME-Version: 1.0\n" @@ -1125,7 +1125,7 @@ msgstr "अनुक्रमणिका सम्पादित करें" #, 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 From 90659972f447fda1c2d67e1193f11c8154fac1c6 Mon Sep 17 00:00:00 2001 From: Andrey Prokopenko Date: Sun, 20 Jan 2013 19:51:31 +0100 Subject: [PATCH 48/85] Translated using Weblate (Ukrainian) Currently translated at 62.7% (1607 of 2562) --- po/uk.po | 40 ++++++++++++++++++++++++---------------- 1 file changed, 24 insertions(+), 16 deletions(-) diff --git a/po/uk.po b/po/uk.po index 5e827bae7f..3de77a5bac 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-10-16 14:37+0200\n" -"PO-Revision-Date: 2013-01-20 19:28+0200\n" +"PO-Revision-Date: 2013-01-20 19:51+0200\n" "Last-Translator: Andrey Prokopenko \n" "Language-Team: Ukrainian \n" "Language: uk\n" @@ -5093,15 +5093,15 @@ msgstr "Показувати типи полів" #: libraries/config/messages.inc.php:464 msgid "Display the function fields in edit/insert mode" -msgstr "" +msgstr "Відображувати поля функції у режим редагування/вставки" #: libraries/config/messages.inc.php:465 msgid "Show function fields" -msgstr "" +msgstr "Показувати поля функції" #: libraries/config/messages.inc.php:466 msgid "Whether to show hint or not" -msgstr "" +msgstr "Чи показувати підказки" #: libraries/config/messages.inc.php:467 #| msgid "Show grid" @@ -5113,51 +5113,57 @@ 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" -msgstr "" +msgstr "Показувати докладну інформацію про сервер MySQL" #: libraries/config/messages.inc.php:471 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" -msgstr "" +msgstr "Визначає, чи мають відображатися SQL запити, що згенеровані PHPMyAdmin" #: libraries/config/messages.inc.php:472 msgid "Show SQL queries" -msgstr "" +msgstr "Показувати SQL-запити" #: libraries/config/messages.inc.php:473 msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" +"Визначає, чи має залишатися вікно запиту на екрані після надсилання запиту" #: libraries/config/messages.inc.php:474 libraries/sql_query_form.lib.php:352 -#, fuzzy #| msgid "Hide query box" msgid "Retain query box" -msgstr "Сховати блок запиту" +msgstr "Залишати вікно запиту" #: libraries/config/messages.inc.php:475 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" +"Дозволити показ статистики бази даних і таблиць (наприклад, використання " +"простору)" #: libraries/config/messages.inc.php:476 msgid "Show statistics" -msgstr "" +msgstr "Показувати статистику" #: libraries/config/messages.inc.php:477 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" +"Якщо спливаючі підказки увімкнено і введено коментар бази даних, то за " +"допомогою цього пункту буде замінено назву на коментар" #: libraries/config/messages.inc.php:478 msgid "Display database comment instead of its name" -msgstr "" +msgstr "Показувати коментар бази даних замість її назви" #: libraries/config/messages.inc.php:479 msgid "" @@ -5182,11 +5188,11 @@ msgstr "" #: libraries/config/messages.inc.php:483 msgid "Skip locked tables" -msgstr "" +msgstr "Пропускати заблоковані таблиці" #: libraries/config/messages.inc.php:488 msgid "Requires SQL Validator to be enabled" -msgstr "" +msgstr "Має бути увімкнений SQL валідатор" #: libraries/config/messages.inc.php:490 #: libraries/display_change_password.lib.php:40 @@ -5203,10 +5209,12 @@ msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" +"[strong]УВАГА:[/strong] має бути встановлено розширення PHP SOAP або PEAR " +"SOAP" #: libraries/config/messages.inc.php:492 msgid "Enable SQL Validator" -msgstr "" +msgstr "Увімкнути SQL валідатор" #: libraries/config/messages.inc.php:493 msgid "" @@ -5217,7 +5225,7 @@ msgstr "" #: libraries/config/messages.inc.php:494 tbl_tracking.php:460 #: tbl_tracking.php:517 msgid "Username" -msgstr "" +msgstr "Ім'я користувача" #: libraries/config/messages.inc.php:495 msgid "" From 46959348b0ee524750830aa07540009575535351 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 21 Jan 2013 06:58:09 +0100 Subject: [PATCH 49/85] Translated using Weblate (Croatian) Currently translated at 39.8% (1035 of 2599) --- po/hr.po | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/po/hr.po b/po/hr.po index c740a9d7e4..0aaa8d120f 100644 --- a/po/hr.po +++ b/po/hr.po @@ -4,16 +4,16 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-01-21 00:59+0100\n" -"PO-Revision-Date: 2013-01-10 13:42+0200\n" +"PO-Revision-Date: 2013-01-21 06:58+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Croatian \n" +"Language-Team: Croatian " +"\n" "Language: hr\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" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 1.4-dev\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 @@ -3971,7 +3971,7 @@ msgstr "" #: libraries/Util.class.php:3405 libraries/sql_query_form.lib.php:455 #: prefs_manage.php:242 msgid "Browse your computer:" -msgstr "Pretraži računalo" +msgstr "Pretraži računalo:" #: libraries/Util.class.php:3430 #, fuzzy, php-format @@ -8058,7 +8058,7 @@ msgstr "" #: libraries/plugins/auth/AuthenticationCookie.class.php:200 msgid "Server:" -msgstr "Poslužitelj" +msgstr "Poslužitelj:" #: libraries/plugins/auth/AuthenticationCookie.class.php:212 msgid "Username:" @@ -12598,7 +12598,7 @@ msgstr "SQL upit" #: tbl_chart.php:210 msgid "X-Axis label:" -msgstr "Oznaka X-osi" +msgstr "Oznaka X-osi:" #: tbl_chart.php:213 #, fuzzy From 2342370191df003476f8190ab4a0e0598c26b5df Mon Sep 17 00:00:00 2001 From: Yogendra Singh Shekhawat Date: Sun, 20 Jan 2013 19:01:44 +0100 Subject: [PATCH 50/85] Translated using Weblate (Hindi) Currently translated at 56.8% (1454 of 2562) --- po/hi.po | 73 +++++++++++++++++++++++++++----------------------------- 1 file changed, 35 insertions(+), 38 deletions(-) diff --git a/po/hi.po b/po/hi.po index e08af1a2f7..12d66fe517 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-10-16 14:37+0200\n" -"PO-Revision-Date: 2013-01-19 14:37+0200\n" +"PO-Revision-Date: 2013-01-20 19:01+0200\n" "Last-Translator: Yogendra Singh Shekhawat \n" "Language-Team: Hindi \n" "Language: hi\n" @@ -1064,15 +1064,15 @@ msgstr "\"DROP DATABASE\" बयान अक्षम हैं." #: js/messages.php:30 libraries/mult_submits.inc.php:280 sql.php:350 msgid "Do you really want to " -msgstr "क्या आप सचमुच चाहते है की" +msgstr "क्या आप सचमुच चाहते है कि" #: js/messages.php:31 libraries/mult_submits.inc.php:280 sql.php:335 msgid "You are about to DESTROY a complete database!" -msgstr "आप एक पूरा डेटाबेस नष्ट कर रहे हैं!" +msgstr "आप एक पूरा डॅटाबेस मिटाने जा रहे हैं!" #: js/messages.php:32 msgid "You are about to DESTROY a complete table!" -msgstr "आप एक पूराटेबल नष्ट कर रहे हैं!" +msgstr "आप एक पूरी डॅटा टेबल मिटाने जा रहे हैं!" #: js/messages.php:33 #, fuzzy @@ -1086,51 +1086,51 @@ 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?" -msgstr "यह आपरेशन लंबे समय लग सकता है. फिर भी आगे बढ़ें?" +msgstr "" +"इस प्रक्रिया में लम्बा वक्त भी लग सकता है। क्या आप चाहते हैं ये प्रक्रिया की " +"जाये ?" #: js/messages.php:40 msgid "You are about to DISABLE a BLOB Repository!" -msgstr "आप एक BLOB भंडार निष्क्रिय करने वाले हैं!" +msgstr "आप एक BLOB डॅटा टाईप का भंडार निष्क्रिय करने को हैं!" #: js/messages.php:41 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" -msgstr "क्या आप वाकई %s दाताबेस के सारे संदर्भ निष्क्रिय करना चाहते है?" +msgstr "क्या आप वाकई %s डॅटाबेस के सारे संदर्भ निष्क्रिय करना चाहते है?" #: js/messages.php:44 msgid "Missing value in the form!" -msgstr "फॉर्म में मूल्य गूम हैं." +msgstr "फॉर्म में सूचना गुम हैं!" #: js/messages.php:45 msgid "This is not a number!" -msgstr "यह नंबर नहीं है!" +msgstr "यह 'आंकिक' या नम्बर रूप में नहीं है।" #: js/messages.php:46 -#, fuzzy #| msgid "Add index" msgid "Add Index" -msgstr "अनुक्रमणिका जोड़" +msgstr "अनुक्रमणिका जोड़ें" #: js/messages.php:47 -#, fuzzy #| msgid "Edit mode" 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 "%s कॉलम जोडें" #. l10n: Default description for the y-Axis of Charts #: js/messages.php:52 msgid "Total count" -msgstr "कुल गिनती" +msgstr "कुल संख्या" #: js/messages.php:55 msgid "The host name is empty!" @@ -1138,28 +1138,28 @@ msgstr "मेज़बान का नाम (hostname) खाली है!" #: 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 "कूटशब्द (password) खाली है!" #: js/messages.php:58 server_privileges.php:1314 user_password.php:53 msgid "The passwords aren't the same!" -msgstr "पासवर्ड मिलते झूलते नहीं हैं." +msgstr "कूटशब्द (password) समान नहीं हैं!" #: js/messages.php:59 server_privileges.php:1775 server_privileges.php:1799 #: server_privileges.php:2211 server_privileges.php:2416 msgid "Add user" -msgstr "naya upyokta" +msgstr "नया प्रयोक्ता जोड़ें" #: js/messages.php:60 msgid "Reloading Privileges" -msgstr "प्रिविलेज पुनः लोड करें" +msgstr "विशेषाधिकारों को पुनः लोड करें" #: js/messages.php:61 msgid "Removing Selected Users" -msgstr "चयनित यूसर को हटायें" +msgstr "चयनित प्रयोक्ताओं को हटायें" #: js/messages.php:62 js/messages.php:141 tbl_tracking.php:235 #: tbl_tracking.php:415 @@ -1182,17 +1182,16 @@ msgstr "सर्वर चुनिये" #: js/messages.php:67 server_status.php:815 msgid "Live conn./process chart" -msgstr "" +msgstr "लाईव कनेक्शन / प्रोसेस चार्ट" #: js/messages.php:68 server_status.php:837 -#, fuzzy #| msgid "Show query chart" msgid "Live query chart" -msgstr "क्वरी चार्ट शो" +msgstr "जीवन्त (live) क्वॅरी चार्ट" #: js/messages.php:70 msgid "Static data" -msgstr "" +msgstr "स्थिर (static) डॅटा" #. l10n: Total number of queries #: js/messages.php:72 libraries/build_html_for_db.lib.php:46 @@ -1205,7 +1204,7 @@ msgstr "कुल" #. l10n: Other, small valued, queries #: js/messages.php:74 server_status.php:608 server_status.php:1035 msgid "Other" -msgstr "" +msgstr "अन्य" #. l10n: Thousands separator #: js/messages.php:76 libraries/common.lib.php:1448 @@ -1219,41 +1218,39 @@ msgstr "." #: js/messages.php:80 msgid "KiB sent since last refresh" -msgstr "" +msgstr "किलोबाइट भेजे गए, पिछले रिफ्रेश से लेकर अब तक" #: js/messages.php:81 msgid "KiB received since last refresh" -msgstr "" +msgstr "किलोबाइट प्राप्त हुए, पिछले रिफ्रेश से अब तक" #: js/messages.php:82 -#, fuzzy #| msgid "Server Choice" msgid "Server traffic (in KiB)" -msgstr "सर्वर चुनिये" +msgstr "सर्वर व्यस्तता (किलोबाइट में)" #: js/messages.php:83 msgid "Connections since last refresh" -msgstr "" +msgstr "पिछले रिफ्रेश से लेकर अब तक के कनेक्शन" #: js/messages.php:84 js/messages.php:122 server_status.php:1248 msgid "Processes" -msgstr "प्रक्रियां" +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:790 msgid "Query statistics" From 5fe27eea094c8194d00916fc474d7989c2fa96f8 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sun, 20 Jan 2013 17:30:29 +0100 Subject: [PATCH 51/85] Translated using Weblate (Sinhala) Currently translated at 81.6% (2090 of 2562) --- po/si.po | 31 ++++++++++++------------------- 1 file changed, 12 insertions(+), 19 deletions(-) diff --git a/po/si.po b/po/si.po index 4d9caca602..fcfa3f277c 100644 --- a/po/si.po +++ b/po/si.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-10-16 14:37+0200\n" -"PO-Revision-Date: 2012-12-27 18:22+0200\n" +"PO-Revision-Date: 2013-01-20 17:30+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: Sinhala \n" "Language: si\n" @@ -2401,9 +2401,8 @@ msgid "Packed" msgstr "අහුරන ලද" #: libraries/Index.class.php:445 tbl_tracking.php:324 -#, fuzzy msgid "Cardinality" -msgstr "Cardinality" +msgstr "අනේකත්වය" #: libraries/Index.class.php:448 libraries/rte/rte_events.lib.php:497 #: libraries/rte/rte_routines.lib.php:974 tbl_tracking.php:263 @@ -5912,9 +5911,8 @@ msgid "" msgstr "තම වගු වල දත්ත සහ සුචි කෑෂ්ගත කිරීමට InnoDB භාවිතා කරන මතක බෆරයේ ප්‍රමාණය." #: libraries/engines/innodb.lib.php:130 -#, fuzzy msgid "Buffer Pool" -msgstr "Buffer Pool" +msgstr "අන්තරාච එකතුව" #: libraries/engines/innodb.lib.php:131 server_status.php:652 msgid "InnoDB Status" @@ -5965,14 +5963,12 @@ msgid "Write requests" msgstr "ලිවීම සඳහා වූ ඉල්ලීම්" #: libraries/engines/innodb.lib.php:230 -#, fuzzy msgid "Read misses" -msgstr "Read misses" +msgstr "කියවීම් අතෑරුම්" #: libraries/engines/innodb.lib.php:236 -#, fuzzy msgid "Write waits" -msgstr "Write waits" +msgstr "ලිවීම් ප්‍රමාද" #: libraries/engines/innodb.lib.php:242 msgid "Read misses in %" @@ -6513,7 +6509,7 @@ msgstr "" #: libraries/export/sql.php:342 libraries/export/xml.php:45 msgid "Procedures" -msgstr "ක්‍රියාපටිපාටිය" +msgstr "ක්‍රියාපටිපාටි" #: libraries/export/sql.php:359 libraries/export/xml.php:40 msgid "Functions" @@ -11800,7 +11796,7 @@ msgstr "විමසුම් කෑෂ් ඛණ්ඩනීකරණය" #: po/advisory_rules.php:91 msgid "The query cache is considerably fragmented." -msgstr "" +msgstr "විමසුම් කෑෂය භාගීකරණයට ලක්වී ඇත." #: po/advisory_rules.php:92 msgid "" @@ -11827,12 +11823,12 @@ 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 "The amount of free memory for query cache." +msgstr "" +"අඩු විමසුම් කෑෂ් ධාරිතාව හේතුවෙන් කෑෂ්ගත කරන ලද විමසුම් කෑෂයෙන් ඉවත් කෙරෙයි." #: po/advisory_rules.php:97 msgid "" @@ -11895,16 +11891,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 "Allows creating temporary tables." +msgstr "තාවකාලික වගු සැදීමට සිදුවූ අනුපිළිවෙල සැකසීම් ප්‍රතිශතයක් ලෙස" #: 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 "Allows creating temporary tables." +msgstr "තාවකාලික වගු සැදීමට සිදුවූ අනුපිළිවෙල සැකසීම් ඉතා විශාල ගණනකි." #: po/advisory_rules.php:112 po/advisory_rules.php:117 msgid "" @@ -11920,10 +11914,9 @@ msgid "" msgstr "" #: po/advisory_rules.php:115 -#, fuzzy #| msgid "Allows creating temporary tables." msgid "Rate of sorts that cause temporary tables" -msgstr "Allows creating temporary tables." +msgstr "තාවකාලික වගු සැදීමට සිදුවූ අනුපිළිවෙල සැකසීම් ගණන" #: po/advisory_rules.php:118 #, php-format From c24d3e1a02011a13ec4b2cea034afdafb0d75f8c Mon Sep 17 00:00:00 2001 From: Andrey Prokopenko Date: Sun, 20 Jan 2013 18:09:41 +0100 Subject: [PATCH 52/85] Translated using Weblate (Ukrainian) Currently translated at 61.5% (1576 of 2562) --- po/uk.po | 297 +++++++++++++++++++++++++------------------------------ 1 file changed, 135 insertions(+), 162 deletions(-) diff --git a/po/uk.po b/po/uk.po index 8823a9f8fa..e5b3db169a 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-10-16 14:37+0200\n" -"PO-Revision-Date: 2013-01-20 12:52+0200\n" -"Last-Translator: Rostyslav Gaitkulov \n" +"PO-Revision-Date: 2013-01-20 18:09+0200\n" +"Last-Translator: Andrey Prokopenko \n" "Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ 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 @@ -110,7 +110,7 @@ msgstr "Отримання заголовків невдале" #: bs_disp_as_mime_type.php:41 msgid "Failed to open remote URL" -msgstr "Відкривання зовнішнього посилання URL невдале" +msgstr "Не вдалося відкрити зовнішню URL адресу" #: changelog.php:32 license.php:28 #, php-format @@ -254,7 +254,7 @@ 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" @@ -321,7 +321,7 @@ msgstr "Додати %s" #: db_operations.php:508 libraries/config/messages.inc.php:121 #: tbl_operations.php:318 tbl_operations.php:564 msgid "Add AUTO_INCREMENT value" -msgstr "Додати AUTO_INCREMENT значення" +msgstr "Додати значення AUTO_INCREMENT" #: db_operations.php:512 tbl_operations.php:571 msgid "Add constraints" @@ -589,7 +589,7 @@ msgstr "Всередині стовпчика:" #: db_structure.php:68 msgid "No tables found in database" -msgstr "В БД не виявлено таблиць." +msgstr "Немає таблиць у базі даних" #: db_structure.php:228 libraries/mysql_charsets.lib.php:409 #: libraries/mysql_charsets.lib.php:416 @@ -1035,7 +1035,7 @@ msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -"Досягнуто часове обмеження віконання скрипту, якщо Ви бажаєте закінчити " +"Досягнуто часове обмеження виконання скрипту, якщо Ви бажаєте закінчити " "імпорт, необхідно повторно відправити той самий файл." #: import.php:444 @@ -1387,7 +1387,7 @@ msgstr "%d таблиця(таблиць)" #. l10n: Questions is the name of a MySQL Status variable #: js/messages.php:135 msgid "Questions" -msgstr "Questions" +msgstr "Питання" #: js/messages.php:136 server_status.php:1113 msgid "Traffic" @@ -1432,7 +1432,7 @@ msgstr "Призупинити монітор" #: js/messages.php:147 msgid "general_log and slow_query_log are enabled." -msgstr "general_log та slow_query_log ввімкнені" +msgstr "general_log та slow_query_log ввімкнені." #: js/messages.php:148 msgid "general_log is enabled." @@ -1539,7 +1539,7 @@ msgstr "Модуль" #: js/messages.php:174 msgid "From slow log" -msgstr "З журналу повільних запитів" +msgstr "З журналу повільних запитів (slow log)" #: js/messages.php:175 msgid "From general log" @@ -1914,7 +1914,7 @@ msgstr "Наведення курсора над крапкою відобраз #: js/messages.php:304 msgid "To zoom in, select a section of the plot with the mouse." -msgstr "Для збільшення, виділіть ділянку графіку з допомогою миші" +msgstr "Щоб збільшити масштаб, виберіть ділянку діаграми за допомогою миші." #: js/messages.php:306 msgid "Click reset zoom link to come back to original state." @@ -2758,7 +2758,7 @@ msgstr "PBMS get BLOB info не вдалося:" #: libraries/blobstreaming.lib.php:373 msgid "PBMS get BLOB Content-Type failed" -msgstr "PBMS get BLOB Content-Type не вдалося:" +msgstr "PBMS не вдалося отримати BLOB Content-Type" #: libraries/blobstreaming.lib.php:401 msgid "View image" @@ -2840,7 +2840,7 @@ msgstr "виявлено цифровий ключ" #: libraries/common.inc.php:624 msgid "Failed to read configuration file" -msgstr "Неможливо прочитати конфігураційний файл." +msgstr "Не вдалося прочитати файл конфігурації" #: libraries/common.inc.php:625 msgid "" @@ -3643,7 +3643,7 @@ msgstr "Ключ підпису" #: libraries/config/messages.inc.php:136 libraries/export/odt.php:324 #: libraries/tbl_properties.inc.php:135 msgid "MIME type" -msgstr "MIME type" +msgstr "Тип MIME" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 tbl_relation.php:392 @@ -4816,7 +4816,7 @@ msgstr "" #: libraries/config/messages.inc.php:407 msgid "Show only listed databases" -msgstr "" +msgstr "Показати лише перелічені бази даних" #: libraries/config/messages.inc.php:408 libraries/config/messages.inc.php:449 msgid "Leave empty if not using config auth" @@ -4863,10 +4863,9 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:417 -#, fuzzy #| msgid "Analyze table" msgid "Recently used table" -msgstr "Аналіз таблиці" +msgstr "Нещодавно використані таблиці" #: libraries/config/messages.inc.php:418 msgid "" @@ -4884,7 +4883,7 @@ msgstr "" #: libraries/config/messages.inc.php:421 msgid "SHOW DATABASES command" -msgstr "" +msgstr "Команда SHOW DATABASES" #: libraries/config/messages.inc.php:422 msgid "" @@ -4908,7 +4907,7 @@ msgstr "" #: libraries/config/messages.inc.php:426 msgid "Server socket" -msgstr "" +msgstr "Сокет серверу" #: libraries/config/messages.inc.php:427 msgid "Enable SSL for connection to MySQL server" @@ -4916,7 +4915,7 @@ msgstr "Активувати SSL для з’єднання з MySQL серве #: libraries/config/messages.inc.php:428 msgid "Use SSL" -msgstr "" +msgstr "Використовувати SSL" #: libraries/config/messages.inc.php:429 msgid "" @@ -4945,7 +4944,7 @@ msgstr "" #: libraries/config/messages.inc.php:434 msgid "UI preferences table" -msgstr "" +msgstr "Таблиця налаштувань користувацького інтерфейсу" #: libraries/config/messages.inc.php:435 msgid "" @@ -4955,7 +4954,7 @@ msgstr "" #: libraries/config/messages.inc.php:436 msgid "Add DROP DATABASE" -msgstr "" +msgstr "Додати DROP DATABASE" #: libraries/config/messages.inc.php:437 msgid "" @@ -4965,7 +4964,7 @@ msgstr "" #: libraries/config/messages.inc.php:438 msgid "Add DROP TABLE" -msgstr "" +msgstr "Додати DROP TABLE" #: libraries/config/messages.inc.php:439 msgid "" @@ -4975,7 +4974,7 @@ msgstr "" #: libraries/config/messages.inc.php:440 msgid "Add DROP VIEW" -msgstr "" +msgstr "Додати DROP VIEW" #: libraries/config/messages.inc.php:441 msgid "Defines the list of statements the auto-creation uses for new versions." @@ -4993,7 +4992,7 @@ msgstr "" #: libraries/config/messages.inc.php:444 msgid "SQL query tracking table" -msgstr "" +msgstr "Таблиця відстежування SQL запитів" #: libraries/config/messages.inc.php:445 msgid "" @@ -5003,7 +5002,7 @@ msgstr "" #: libraries/config/messages.inc.php:446 msgid "Automatically create versions" -msgstr "" +msgstr "Автоматично створювати версії" #: libraries/config/messages.inc.php:447 msgid "" @@ -5013,7 +5012,7 @@ msgstr "" #: libraries/config/messages.inc.php:448 msgid "User preferences storage table" -msgstr "" +msgstr "Таблиця збереження налаштувань користувача" #: libraries/config/messages.inc.php:450 msgid "User for config auth" @@ -5069,10 +5068,9 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:461 -#, fuzzy #| msgid "Default display direction" msgid "Show display direction" -msgstr "Напрямок відображення по змовчуванню" +msgstr "Показати напрямком відображення" #: libraries/config/messages.inc.php:462 msgid "" @@ -5097,10 +5095,9 @@ msgid "Whether to show hint or not" msgstr "" #: libraries/config/messages.inc.php:467 -#, fuzzy #| msgid "Show grid" msgid "Show hint" -msgstr "Показати сітку" +msgstr "Відображати підказки" #: libraries/config/messages.inc.php:468 msgid "" @@ -5478,7 +5475,7 @@ msgstr "" #: libraries/db_links.inc.php:65 libraries/relation.lib.php:144 #: libraries/tbl_links.inc.php:97 msgid "Tracking" -msgstr "" +msgstr "Відстеження" #: libraries/db_links.inc.php:70 msgid "Query" @@ -5495,18 +5492,18 @@ msgstr "Привілеї" #: libraries/db_links.inc.php:96 libraries/rte/rte_words.lib.php:25 msgid "Routines" -msgstr "" +msgstr "Процедури" #: libraries/db_links.inc.php:100 libraries/export/sql.php:641 #: libraries/rte/rte_words.lib.php:49 msgid "Events" -msgstr "" +msgstr "Події" #: libraries/db_links.inc.php:104 libraries/export/sql.php:1032 #: libraries/export/xml.php:57 libraries/rte/rte_words.lib.php:37 #: libraries/tbl_links.inc.php:103 msgid "Triggers" -msgstr "" +msgstr "Тригери" #: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2228 msgid "" @@ -5545,10 +5542,9 @@ msgstr "" #: libraries/display_create_database.lib.php:21 #: libraries/display_create_database.lib.php:39 -#, fuzzy #| msgid "Create new database" msgid "Create database" -msgstr "Створити нову БД" +msgstr "Створити базу даних" #: libraries/display_create_database.lib.php:33 msgid "Create" @@ -5708,10 +5704,9 @@ msgid "Format:" msgstr "Формат:" #: libraries/display_export.lib.php:333 -#, fuzzy #| msgid "Transformation options" msgid "Format-specific options:" -msgstr "Опції перетворення" +msgstr "Параметри форматування:" #: libraries/display_export.lib.php:334 msgid "" @@ -5744,19 +5739,19 @@ msgstr "" #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" -msgstr "Не можу зареєструватися на MySQL сервері" +msgstr "Імпортування до поточного сервера" #: libraries/display_import.lib.php:131 -#, fuzzy, php-format +#, php-format #| msgid "No databases" msgid "Importing into the database \"%s\"" -msgstr "БД відсутні" +msgstr "Імпортування до бази даних \"%s\"" #: libraries/display_import.lib.php:133 -#, fuzzy, php-format +#, php-format #| msgid "No databases" msgid "Importing into the table \"%s\"" -msgstr "БД відсутні" +msgstr "Імпортування до таблиці \"%s\"" #: libraries/display_import.lib.php:139 msgid "File to Import:" @@ -5811,27 +5806,25 @@ msgstr "" #: libraries/display_tbl.lib.php:406 msgid "Save edited data" -msgstr "" +msgstr "Зберегти відредаговані дані" #: libraries/display_tbl.lib.php:412 msgid "Restore column order" -msgstr "" +msgstr "Відновити порядок стовпців" #: libraries/display_tbl.lib.php:428 msgid "Start row" -msgstr "" +msgstr "Початковий рядок" #: libraries/display_tbl.lib.php:430 -#, fuzzy #| msgid "Number of rows:" msgid "Number of rows" -msgstr "Число рядків:" +msgstr "Кількість рядків" #: libraries/display_tbl.lib.php:435 -#, fuzzy #| msgid "More" msgid "Mode" -msgstr "Більше" +msgstr "Режим" #: libraries/display_tbl.lib.php:437 msgid "horizontal" @@ -5848,11 +5841,11 @@ msgstr "вертикальному" #: libraries/display_tbl.lib.php:445 #, php-format msgid "Headers every %s rows" -msgstr "" +msgstr "Заголовки кожні %s рядків" #: libraries/display_tbl.lib.php:548 msgid "Sort by key" -msgstr "" +msgstr "Сортувати за ключем" #: libraries/display_tbl.lib.php:627 libraries/export/codegen.php:41 #: libraries/export/csv.php:34 libraries/export/excel.php:37 @@ -5869,16 +5862,14 @@ msgstr "" #: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:880 #: tbl_select.php:177 tbl_structure.php:862 msgid "Options" -msgstr "" +msgstr "Параметри" #: libraries/display_tbl.lib.php:632 libraries/display_tbl.lib.php:650 -#, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Часткові тексти" #: libraries/display_tbl.lib.php:633 libraries/display_tbl.lib.php:654 -#, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Повні тексти" @@ -5895,11 +5886,11 @@ msgstr "Схема зв'язків" #: libraries/display_tbl.lib.php:675 msgid "Show binary contents" -msgstr "" +msgstr "Показати двійковий вміст" #: libraries/display_tbl.lib.php:677 msgid "Show BLOB contents" -msgstr "" +msgstr "Показати вміст BLOB-ОБ'ЄКТІВ" #: libraries/display_tbl.lib.php:687 #, fuzzy @@ -5947,7 +5938,7 @@ msgstr "" #: libraries/display_tbl.lib.php:2614 msgid "Print view (with full texts)" -msgstr "" +msgstr "Подання дял друку (з повними текстами)" #: libraries/display_tbl.lib.php:2664 tbl_chart.php:92 #, fuzzy @@ -5960,10 +5951,9 @@ msgid "Visualize GIS data" msgstr "" #: libraries/display_tbl.lib.php:2701 -#, fuzzy #| msgid "Create User" msgid "Create view" -msgstr "Створити користувача" +msgstr "Створити подання" #: libraries/display_tbl.lib.php:2808 msgid "Link not found" @@ -5971,7 +5961,7 @@ msgstr "Лінк не знайдено" #: libraries/engines/bdb.lib.php:20 main.php:236 msgid "Version information" -msgstr "" +msgstr "Відомості про версію" #: libraries/engines/innodb.lib.php:20 msgid "Data home directory" @@ -6365,10 +6355,9 @@ msgid "The PrimeBase Media Streaming (PBMS) home page" msgstr "" #: libraries/export/csv.php:24 libraries/import/csv.php:28 -#, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" -msgstr "Рядки розділено" +msgstr "Стовпці розділені з:" #: libraries/export/csv.php:25 libraries/import/csv.php:29 #, fuzzy @@ -6391,10 +6380,9 @@ msgstr "Рядки розділено" #: libraries/export/csv.php:28 libraries/export/excel.php:23 #: libraries/export/htmlword.php:29 libraries/export/latex.php:80 #: libraries/export/ods.php:24 libraries/export/odt.php:60 -#, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with:" -msgstr "Замінити NULL на" +msgstr "Замінити значення NULL на:" #: libraries/export/csv.php:29 libraries/export/excel.php:24 msgid "Remove carriage return/line feed characters within columns" @@ -6407,10 +6395,9 @@ msgstr "" #: libraries/export/htmlword.php:28 libraries/export/latex.php:70 #: libraries/export/odt.php:56 libraries/export/sql.php:222 #: libraries/export/texytext.php:26 libraries/export/xml.php:73 -#, fuzzy #| msgid "Database export options" msgid "Data dump options" -msgstr "Налаштування експорту бази даних" +msgstr "Параметри дампу даних" #: libraries/export/htmlword.php:121 libraries/export/odt.php:173 #: libraries/export/sql.php:1188 libraries/export/texytext.php:109 @@ -6436,16 +6423,14 @@ msgstr "Структура таблиці @TABLE@" #: libraries/export/latex.php:48 libraries/export/odt.php:40 #: libraries/export/sql.php:142 -#, fuzzy #| msgid "Transformation options" msgid "Object creation options" -msgstr "Опції перетворення" +msgstr "Параметри створення об'єкта" #: libraries/export/latex.php:52 libraries/export/latex.php:76 -#, fuzzy #| msgid "Table of contents" msgid "Table caption (continued)" -msgstr "Зміст" +msgstr "Заголовок таблиці (продовження)" #: libraries/export/latex.php:57 libraries/export/odt.php:43 #: libraries/export/sql.php:56 @@ -6453,17 +6438,15 @@ msgid "Display foreign key relationships" msgstr "" #: libraries/export/latex.php:60 libraries/export/odt.php:46 -#, fuzzy #| msgid "Displaying Column Comments" msgid "Display comments" -msgstr "Показувати коментарі стовпців" +msgstr "Відображення коментарів" #: libraries/export/latex.php:63 libraries/export/odt.php:49 #: libraries/export/sql.php:63 -#, fuzzy #| msgid "Available MIME types" msgid "Display MIME types" -msgstr "Доступні MIME-types" +msgstr "Відображати Типи MIME" #: libraries/export/latex.php:132 libraries/export/sql.php:482 #: libraries/export/xml.php:131 libraries/header_printview.inc.php:59 @@ -6504,10 +6487,9 @@ msgid "(Generates a report containing the data of a single table)" msgstr "" #: libraries/export/pdf.php:25 -#, fuzzy #| msgid "Import files" msgid "Report title:" -msgstr "Імпорт файлів" +msgstr "Заголовок звіту:" #: libraries/export/php_array.php:18 msgid "PHP array" @@ -6536,16 +6518,15 @@ msgstr "" #: libraries/export/sql.php:114 libraries/export/sql.php:173 #: libraries/export/sql.php:180 -#, fuzzy, php-format +#, php-format #| msgid "Statements" msgid "Add %s statement" -msgstr "Параметр" +msgstr "Додати оператор %s" #: libraries/export/sql.php:152 -#, fuzzy #| msgid "Statements" msgid "Add statements:" -msgstr "Параметр" +msgstr "Додати оператори:" #: libraries/export/sql.php:211 msgid "" @@ -6644,10 +6625,9 @@ msgid "Stand-in structure for view" msgstr "" #: libraries/export/sql.php:1112 -#, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" -msgstr "Дозволити читання даних." +msgstr "Помилка читання даних:" #: libraries/export/xml.php:19 libraries/import/xml.php:28 msgid "XML" @@ -6668,7 +6648,7 @@ msgstr "" #: libraries/footer.inc.php:163 libraries/footer.inc.php:165 #: libraries/footer.inc.php:168 msgid "Open new phpMyAdmin window" -msgstr "" +msgstr "Відкрити нове вікно phpMyAdmin" #: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." @@ -6680,7 +6660,7 @@ msgstr "" #: libraries/header_printview.inc.php:49 libraries/header_printview.inc.php:57 msgid "SQL result" -msgstr "SQL result" +msgstr "Результат SQL" #: libraries/header_printview.inc.php:62 msgid "Generated by" @@ -6751,10 +6731,9 @@ msgid "" msgstr "" #: libraries/import/csv.php:42 -#, fuzzy #| msgid "Column names" msgid "Column names: " -msgstr "Назви колонок" +msgstr "Назви стовпців: " #: libraries/import/csv.php:62 libraries/import/csv.php:75 #: libraries/import/csv.php:80 libraries/import/csv.php:85 @@ -6857,10 +6836,9 @@ msgid "Convert to Kana" msgstr "" #: libraries/mult_submits.inc.php:254 -#, fuzzy #| msgid "Fr" msgid "From" -msgstr "Пт" +msgstr "Від" #: libraries/mult_submits.inc.php:257 msgid "To" @@ -6906,11 +6884,11 @@ msgstr "Китайське Традиційне" #: libraries/mysql_charsets.lib.php:234 libraries/mysql_charsets.lib.php:420 msgid "case-insensitive" -msgstr "case-insensitive" +msgstr "нечутливий до регістру" #: libraries/mysql_charsets.lib.php:237 libraries/mysql_charsets.lib.php:422 msgid "case-sensitive" -msgstr "case-sensitive" +msgstr "чутливий до регістру" #: libraries/mysql_charsets.lib.php:240 msgid "Croatian" @@ -7089,10 +7067,9 @@ msgid "Reload navigation frame" msgstr "" #: libraries/plugin_interface.lib.php:309 -#, fuzzy #| msgid "This format has no options" msgid "This format has no options" -msgstr "Цей формат не має опцій" +msgstr "Цей формат не має параметрів" #: libraries/relation.lib.php:76 msgid "not OK" @@ -7164,7 +7141,7 @@ msgstr "" #: libraries/relation.lib.php:155 msgid "Create a pma user and give access to these tables." -msgstr "Створити phpMyAdmin користувача та дати йому доступ до цих таблиць" +msgstr "Створити користувача phpMyAdmin та дати йому доступ до цих таблиць." #: libraries/relation.lib.php:156 msgid "" @@ -7353,7 +7330,6 @@ msgid "Start" msgstr "Старт" #: libraries/rte/rte_events.lib.php:474 -#, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" @@ -7499,9 +7475,8 @@ msgid "Security type" msgstr "Тип безпеки" #: libraries/rte/rte_routines.lib.php:962 -#, fuzzy msgid "SQL data access" -msgstr "доступ SQL даних" +msgstr "Доступ до даних SQL" #: libraries/rte/rte_routines.lib.php:1027 msgid "You must provide a routine name" @@ -7582,7 +7557,6 @@ msgid "Trigger name" msgstr "Назва тригера" #: libraries/rte/rte_triggers.lib.php:345 -#, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" @@ -7833,8 +7807,9 @@ msgstr "ввімкнути чорновик (scratchboard)" #. l10n: Text direction, use either ltr or rtl #: libraries/select_lang.lib.php:478 +#, fuzzy msgid "ltr" -msgstr "ltr" +msgstr "зліва направо" #: libraries/select_lang.lib.php:495 libraries/select_lang.lib.php:501 #: libraries/select_lang.lib.php:507 @@ -7961,9 +7936,8 @@ msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" msgstr "" -"There seems to be an error in your SQL query. Повідомлення MySQL сервера про " -"помилку подане нижче (якщо є таке) також може допомогти Вам у визначенні " -"проблеми." +"Схоже на помилку у SQL запиті. У визначенні проблеми може допомогти " +"повідомлення про помилку сервера MySQL, що наведено нижче (якщо таке є)" #: libraries/sqlparser.lib.php:175 msgid "" @@ -8098,7 +8072,6 @@ msgid "Get more editing space" msgstr "" #: libraries/tbl_properties.inc.php:351 -#, fuzzy #| msgid "None" msgctxt "for default" msgid "None" @@ -8124,10 +8097,9 @@ msgid "Add %s column(s)" msgstr "Додати %s стовпчик(ів)" #: libraries/tbl_properties.inc.php:575 tbl_structure.php:662 -#, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." -msgstr "Необхідно вибрати принаймі один Стовпчик для показу" +msgstr "Необхідно додати принаймні один стовпчик." #: libraries/tbl_properties.inc.php:663 server_engines.php:54 #: tbl_operations.php:374 @@ -8142,7 +8114,7 @@ msgstr "" #: pmd_general.php:623 pmd_general.php:636 pmd_general.php:699 #: pmd_general.php:753 msgid "Operator" -msgstr "" +msgstr "Оператор" #: libraries/tbl_select.lib.php:103 #, fuzzy @@ -8185,8 +8157,8 @@ msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." msgstr "" -"Відображає clickable thumbnail; опції: ширина, висота у пікселах (зберігає " -"початкові пропорції)" +"Відображає клікабельний ескіз. Параметрами є максимальна ширина і висота в " +"пікселях. Оригінальні пропорції зберігаються." #: libraries/transformations/image_jpeg__link.inc.php:10 msgid "Displays a link to download this image." @@ -8331,46 +8303,41 @@ msgid "Error in ZIP archive:" msgstr "" #: main.php:65 -#, fuzzy #| msgid "General relation features" msgid "General Settings" -msgstr "Загальні можливості" +msgstr "Загальні налаштування" #: main.php:109 -#, fuzzy #| msgid "Server configuration" msgid "Server connection collation" msgstr "Конфігурація сервера" #: main.php:124 msgid "Appearance Settings" -msgstr "" +msgstr "Налаштування вигляду" #: main.php:153 prefs_manage.php:272 -#, fuzzy #| msgid "General relation features" msgid "More settings" -msgstr "Загальні можливості" +msgstr "Додаткові налаштування" #: main.php:169 -#, fuzzy #| msgid "Databases" msgid "Database server" -msgstr "Бази Даних" +msgstr "Сервер бази даних" #: main.php:172 msgid "Software" -msgstr "" +msgstr "Програмне забезпечення" #: main.php:173 -#, fuzzy #| msgid "Server version" msgid "Software version" -msgstr "Версія сервера" +msgstr "Версія програмного забезпечення" #: main.php:175 msgid "Protocol version" -msgstr "" +msgstr "Версія протоколу" #: main.php:179 server_privileges.php:1547 server_privileges.php:1702 #: server_privileges.php:1826 server_privileges.php:2256 @@ -8379,24 +8346,22 @@ msgid "User" msgstr "Користувач" #: main.php:184 -#, fuzzy #| msgid "Remove database" msgid "Server charset" -msgstr "Видалити базу даних" +msgstr "Кодування символів серверу" #: main.php:196 msgid "Web server" -msgstr "" +msgstr "Веб-сервер" #: main.php:209 -#, fuzzy #| msgid "Database comment: " msgid "Database client version" -msgstr "Коментар бази даних: " +msgstr "Версія клієнту бази даних" #: main.php:213 msgid "PHP extension" -msgstr "" +msgstr "PHP розширення" #: main.php:221 msgid "Show PHP information" @@ -8407,20 +8372,18 @@ msgid "Official Homepage" msgstr "Офіційна сторінка phpMyAdmin" #: main.php:242 -#, fuzzy #| msgid "Attributes" msgid "Contribute" msgstr "Атрибути" #: main.php:243 msgid "Get support" -msgstr "" +msgstr "Отримати підтримку" #: main.php:244 -#, fuzzy #| msgid "No change" msgid "List of changes" -msgstr "Змін немає" +msgstr "Перелік змін" #: main.php:268 msgid "" @@ -8440,6 +8403,8 @@ msgid "" "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" +"У конфігурації PHP увімкнено mbstring.func_overload. Цей параметр є " +"несумісним з phpMyAdmin і може викликати пошкодження деяких даних!" #: main.php:284 msgid "" @@ -8447,6 +8412,10 @@ msgid "" "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" +"Pозширення PHP mbstring не знайдено, і схоже на те, що використовуються " +"багатобайтові символи. Без розширення mbstring phpMyAdmin не зможе правильно " +"виконати поділ текстових рядків, і це може призвести до неочікуваних " +"результатів." #: main.php:292 msgid "" @@ -8455,12 +8424,20 @@ msgid "" "cookie validity configured in phpMyAdmin, because of this, your login will " "expire sooner than configured in phpMyAdmin." msgstr "" +"Параметр PHP " +"[a@http://php.net/manual/en/session.configuration.php#ini.session.gc-" +"maxlifetime@_blank]session.gc_maxlifetime[/a] менший, ніж термін придатності " +"cookie налаштованого в phpMyAdmin, і через це термін дії вашого логіну " +"закінчується раніше, ніж це налаштовано в phpMyAdmin." #: main.php:299 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" +"Параметр збереження куків логін менший терміну дії куків, що налаштований в " +"phpMyAdmin, і через це термін дії вашого логіну закінчується раніше терміну, " +"налаштованого в phpMyAdmin." #: main.php:307 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." @@ -8472,6 +8449,9 @@ msgid "" "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" +"Каталог [code]config[/code], який використовується сценарій установки, все " +"ще існує в каталозі phpMyAdmin. Якщо phpMyAdmin вже налаштовано, його " +"необхідно видалити." #: main.php:321 #, fuzzy, php-format @@ -8498,6 +8478,8 @@ msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" +"Версія бібліотеки PHP MySQL %s відрізняється від версії сервера MySQL %s. Це " +"може спричинити непередбачувані наслідки." #: main.php:378 #, php-format @@ -8505,6 +8487,8 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" +"Сервер, що працює з Suhosin. Щодо можливих проблем звертайтеся до %" +"sdocumentation%s." #: navigation.php:182 server_databases.php:284 server_synchronize.php:1294 msgid "No databases" @@ -9146,10 +9130,9 @@ msgid "Do not change the password" msgstr "Не змінювати пароль" #: server_privileges.php:917 server_privileges.php:2399 -#, fuzzy #| msgid "No user(s) found." msgid "No user found." -msgstr "Не знайдено користувача." +msgstr "Користувача не знайдено." #: server_privileges.php:961 #, php-format @@ -9210,7 +9193,6 @@ msgid "Any" msgstr "Довільний" #: server_privileges.php:1567 -#, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Огляд користувачів" @@ -9339,10 +9321,9 @@ msgid "wildcard" msgstr "шаблон" #: server_privileges.php:2408 -#, fuzzy #| msgid "The row has been deleted" msgid "User has been added." -msgstr "Рядок видалено" +msgstr "Користувача було додано." #: server_replication.php:49 msgid "Unknown error" @@ -9522,11 +9503,11 @@ msgstr "phpMyAdmin не може припинити процес %s. Він вж #: server_status.php:594 msgid "Handler" -msgstr "" +msgstr "Обробник" #: server_status.php:595 msgid "Query cache" -msgstr "" +msgstr "Кеш запитів" #: server_status.php:596 msgid "Threads" @@ -9534,7 +9515,7 @@ msgstr "" #: server_status.php:598 msgid "Temporary data" -msgstr "" +msgstr "Тимчасові дані" #: server_status.php:599 msgid "Delayed inserts" @@ -9550,15 +9531,15 @@ msgstr "" #: server_status.php:603 msgid "Sorting" -msgstr "" +msgstr "Сортування" #: server_status.php:605 msgid "Transaction coordinator" -msgstr "" +msgstr "Координатор транзакцій" #: server_status.php:617 msgid "Flush (close) all tables" -msgstr "" +msgstr "Вичистити (закрити) всі таблиці" #: server_status.php:619 msgid "Show open tables" @@ -9586,11 +9567,11 @@ msgstr "" #: server_status.php:792 msgid "Monitor" -msgstr "" +msgstr "Монітор" #: server_status.php:793 msgid "Advisor" -msgstr "" +msgstr "Радник" #: server_status.php:803 server_status.php:829 #, fuzzy @@ -9609,26 +9590,23 @@ msgid "Filters" msgstr "" #: server_status.php:854 server_variables.php:117 -#, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" -msgstr "Не змінювати пароль" +msgstr "Містить слова:" #: server_status.php:859 -#, fuzzy #| msgid "Show tables" msgid "Show only alert values" -msgstr "Показати таблиці" +msgstr "Показати тільки оповіщення значень" #: server_status.php:863 msgid "Filter by category..." msgstr "" #: server_status.php:877 -#, fuzzy #| msgid "Show tables" msgid "Show unformatted values" -msgstr "Показати таблиці" +msgstr "Показати неформатовані значення" #: server_status.php:881 #, fuzzy @@ -11096,10 +11074,9 @@ msgid "Y-Axis label:" msgstr "" #: tbl_chart.php:149 -#, fuzzy #| msgid "Value" msgid "Y Values" -msgstr "Значення" +msgstr "Значення y" #: tbl_create.php:31 #, php-format @@ -11383,10 +11360,9 @@ msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Виконати \"запит згідно прикладу\" (символ підставновки: \"%\")" #: tbl_select.php:180 -#, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" -msgstr "Вибрати поля (щонайменше одне):" +msgstr "Виберіть стовпці (принаймні один):" #: tbl_select.php:198 msgid "Add search conditions (body of the \"where\" clause):" @@ -11655,10 +11631,9 @@ msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "Виконати \"запит згідно прикладу\" (символ підставновки: \"%\")" #: tbl_zoom_select.php:152 -#, fuzzy #| msgid "Hide search criteria" msgid "Additional search criteria" -msgstr "Сховати критерії пошуку" +msgstr "Додаткові критерії пошуку" #: tbl_zoom_select.php:283 msgid "Use this column to label each point" @@ -11674,13 +11649,12 @@ msgstr "" #: tbl_zoom_select.php:424 msgid "How to use" -msgstr "" +msgstr "Як використовувати" #: tbl_zoom_select.php:431 -#, fuzzy #| msgid "Reset" msgid "Reset zoom" -msgstr "Перевстановити" +msgstr "Скидання масштабу" #: themes.php:28 msgid "Get more themes!" @@ -12620,10 +12594,9 @@ msgid "" msgstr "" #: po/advisory_rules.php:230 -#, fuzzy #| msgid "Connections" msgid "Percentage of aborted connections" -msgstr "З'єднань" +msgstr "Відсоток перерваних підключень" #: po/advisory_rules.php:231 po/advisory_rules.php:236 msgid "Too many connections are aborted." From 7263bc752e70e402c82999f69a9c5a79eae9125e Mon Sep 17 00:00:00 2001 From: Yogendra Singh Shekhawat Date: Sun, 20 Jan 2013 19:25:47 +0100 Subject: [PATCH 53/85] Translated using Weblate (Hindi) Currently translated at 56.8% (1454 of 2562) --- po/hi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/hi.po b/po/hi.po index 12d66fe517..b39e79a3db 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-10-16 14:37+0200\n" -"PO-Revision-Date: 2013-01-20 19:01+0200\n" +"PO-Revision-Date: 2013-01-20 19:25+0200\n" "Last-Translator: Yogendra Singh Shekhawat \n" "Language-Team: Hindi \n" "Language: hi\n" @@ -1254,7 +1254,7 @@ msgstr "प्रश्न (सर्वर द्वारा क्रिय #: js/messages.php:91 server_status.php:790 msgid "Query statistics" -msgstr "डाटाबेसों के सांख्यिकी" +msgstr "क्वॅरी संबंधी आंकड़े" #: js/messages.php:94 #, fuzzy From 77fd5547551e420eb933d1b476fba9b25397a425 Mon Sep 17 00:00:00 2001 From: Andrey Prokopenko Date: Sun, 20 Jan 2013 19:28:31 +0100 Subject: [PATCH 54/85] Translated using Weblate (Ukrainian) Currently translated at 61.9% (1587 of 2562) --- po/uk.po | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/po/uk.po b/po/uk.po index e5b3db169a..d599714612 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-10-16 14:37+0200\n" -"PO-Revision-Date: 2013-01-20 18:09+0200\n" +"PO-Revision-Date: 2013-01-20 19:28+0200\n" "Last-Translator: Andrey Prokopenko \n" "Language-Team: Ukrainian \n" "Language: uk\n" @@ -4999,6 +4999,7 @@ msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" +"Чи механізм відстеження створює версії для таблиць і подань автоматично." #: libraries/config/messages.inc.php:446 msgid "Automatically create versions" @@ -5009,6 +5010,8 @@ msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" +"Залиште порожнім, якщо налаштування користувача не зберігаються в базі " +"даних, пропонується: [kbd]pma_userconfig[/kbd]" #: libraries/config/messages.inc.php:448 msgid "User preferences storage table" @@ -5023,10 +5026,12 @@ msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" +"Вимкніть, якщо відомо, що таблиці pma_ *, є актуальними. Це запобігає " +"перевіркам на сумісність і тим самим підвищує продуктивність" #: libraries/config/messages.inc.php:452 msgid "Verbose check" -msgstr "" +msgstr "Докладна перевірка" #: libraries/config/messages.inc.php:453 msgid "" @@ -5036,15 +5041,15 @@ msgstr "" #: libraries/config/messages.inc.php:454 msgid "Verbose name of this server" -msgstr "" +msgstr "Повна назва цього сервера" #: libraries/config/messages.inc.php:455 msgid "Whether a user should be displayed a "show all (rows)" button" -msgstr "" +msgstr "Чи користувачеві має відображатися кнопка на \"показати всі (рядки)\"" #: libraries/config/messages.inc.php:456 msgid "Allow to display all the rows" -msgstr "" +msgstr "Дозволити відображати всі рядки" #: libraries/config/messages.inc.php:457 msgid "" @@ -5055,17 +5060,19 @@ msgstr "" #: libraries/config/messages.inc.php:458 msgid "Show password change form" -msgstr "" +msgstr "Показати форму для зміни паролю" #: libraries/config/messages.inc.php:459 msgid "Show create database form" -msgstr "" +msgstr "Показати форму для створення бази даних" #: libraries/config/messages.inc.php:460 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" +"Визначає, чи буде показуватися при перегляді таблиці параметр типу напрямку " +"відображення" #: libraries/config/messages.inc.php:461 #| msgid "Default display direction" @@ -5077,6 +5084,8 @@ msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" +"Визначає, чи в режимі редагування/вставки має на початку відображатися тип " +"поля" #: libraries/config/messages.inc.php:463 msgid "Show field types" From 6847267a5c353f04447d7c7c49c447ab8ee80c91 Mon Sep 17 00:00:00 2001 From: Andrey Prokopenko Date: Sun, 20 Jan 2013 19:28:31 +0100 Subject: [PATCH 55/85] Translated using Weblate (Ukrainian) Currently translated at 61.9% (1587 of 2562) --- po/uk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/uk.po b/po/uk.po index d599714612..5e827bae7f 100644 --- a/po/uk.po +++ b/po/uk.po @@ -5089,7 +5089,7 @@ msgstr "" #: libraries/config/messages.inc.php:463 msgid "Show field types" -msgstr "" +msgstr "Показувати типи полів" #: libraries/config/messages.inc.php:464 msgid "Display the function fields in edit/insert mode" From afd3db51ec21ab032444c18b149b35e08b79730f Mon Sep 17 00:00:00 2001 From: Yogendra Singh Shekhawat Date: Sun, 20 Jan 2013 23:05:00 +0100 Subject: [PATCH 56/85] Translated using Weblate (Hindi) Currently translated at 61.9% (1587 of 2562) --- po/hi.po | 441 +++++++++++++++++++++++++++---------------------------- 1 file changed, 216 insertions(+), 225 deletions(-) diff --git a/po/hi.po b/po/hi.po index b39e79a3db..d6eadf1433 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-10-16 14:37+0200\n" -"PO-Revision-Date: 2013-01-20 19:25+0200\n" +"PO-Revision-Date: 2013-01-20 23:05+0200\n" "Last-Translator: Yogendra Singh Shekhawat \n" "Language-Team: Hindi \n" "Language: hi\n" @@ -1257,10 +1257,9 @@ msgid "Query statistics" msgstr "क्वॅरी संबंधी आंकड़े" #: js/messages.php:94 -#, fuzzy #| msgid "Could not save configuration" msgid "Local monitor configuration incompatible" -msgstr "विन्यास सहेज नहीं सकते" +msgstr "स्थानीय जाँच व्यवस्था असंगत" #: js/messages.php:95 msgid "" @@ -1269,106 +1268,102 @@ msgid "" "likely that your current configuration will not work anymore. Please reset " "your configuration to default in the Settings menu." msgstr "" +"आपके ब्राउज़र के स्थानीय भण्डार में स्थित चार्ट व्यवस्था और नयी जांच सम्बन्धी " +"व्यवस्था के बीच तारतम्यता नहीं बैठ पा रही है। हो सकता है कि इस सम्बन्ध में " +"आपका वर्तमान प्रारूप अब काम न कर पाए। कृपया, सेटिंग्स मेन्यू में जाकर " +"इसे पुनः डिफ़ॉल्ट पर रिसेट करें।" #: js/messages.php:97 -#, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" -msgstr "क्वेरी कैश" +msgstr "क्वॅरी कैश की कार्यक्षमता" #: js/messages.php:98 -#, fuzzy #| msgid "Query cache" msgid "Query cache usage" -msgstr "क्वेरी कैश" +msgstr "क्वॅरी कैश प्रयोग" #: js/messages.php:99 -#, fuzzy #| msgid "Query cache" msgid "Query cache used" -msgstr "क्वेरी कैश" +msgstr "काम में ली गई क्वॅरी कैश" #: js/messages.php:101 msgid "System CPU Usage" -msgstr "" +msgstr "मशीन सीपीयू उपयोग" #: js/messages.php:102 msgid "System memory" -msgstr "" +msgstr "सिस्टम मेमोरी" #: js/messages.php:103 msgid "System swap" -msgstr "" +msgstr "सिस्टम स्वॅप" #. l10n: shortcuts for Megabyte #: js/messages.php:104 js/messages.php:127 libraries/common.lib.php:1398 #: server_status.php:1699 msgid "MiB" -msgstr "MB" +msgstr "मेगाबाइट" #. l10n: shortcuts for Kilobyte #: js/messages.php:105 js/messages.php:126 libraries/common.lib.php:1396 #: server_status.php:1699 msgid "KiB" -msgstr "KB" +msgstr "किलोबाइट" #: 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 "गुप्त एकत्र (cached) मॅमरी" #: 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 "कुल स्वॅप" #: js/messages.php:115 msgid "Cached Swap" -msgstr "" +msgstr "एकत्र (cached) स्वॅप" #: js/messages.php:116 msgid "Used Swap" -msgstr "" +msgstr "प्रयुक्त स्वॅप" #: js/messages.php:117 -#, fuzzy #| msgid "Free pages" msgid "Free Swap" -msgstr "मुक्त पृष्ठों" +msgstr "मुक्त स्वॅप" #: js/messages.php:119 msgid "Bytes sent" -msgstr "" +msgstr "बाइट भेजे गए" #: js/messages.php:120 -#, fuzzy #| msgid "Received" msgid "Bytes received" -msgstr "प्राप्त" +msgstr "बाइट प्राप्त हुए" #: js/messages.php:121 server_status.php:1158 msgid "Connections" @@ -1377,72 +1372,68 @@ msgstr "कनेक्शन" #. l10n: shortcuts for Byte #: js/messages.php:125 libraries/common.lib.php:1394 msgid "B" -msgstr "बैट्स" +msgstr "बिट्स" #. l10n: shortcuts for Gigabyte #: js/messages.php:128 libraries/common.lib.php:1400 msgid "GiB" -msgstr "GB" +msgstr "गीगाबाइट" #. l10n: shortcuts for Terabyte #: js/messages.php:129 libraries/common.lib.php:1402 msgid "TiB" -msgstr "TB" +msgstr "टॅराबाइट" #. l10n: shortcuts for Petabyte #: js/messages.php:130 libraries/common.lib.php:1404 msgid "PiB" -msgstr "PB" +msgstr "पॅटाबाइट" #. l10n: shortcuts for Exabyte #: js/messages.php:131 libraries/common.lib.php:1406 msgid "EiB" -msgstr "EB" +msgstr "अॅग्जाबाइट" #: js/messages.php:132 -#, fuzzy, php-format +#, php-format #| msgid "%s table" #| msgid_plural "%s tables" msgid "%d table(s)" -msgstr " %s टेबलें" +msgstr "%d टेबल" #. l10n: Questions is the name of a MySQL Status variable #: js/messages.php:135 -#, fuzzy #| msgid "Versions" msgid "Questions" -msgstr "संस्करण" +msgstr "प्रश्न" #: js/messages.php:136 server_status.php:1113 msgid "Traffic" -msgstr "ट्रैफ़िक" +msgstr "व्यस्तता" #: js/messages.php:137 libraries/server_links.inc.php:73 #: server_status.php:1574 -#, fuzzy #| msgid "General relation features" 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 #| msgid "Snap to grid" msgid "Add chart to grid" -msgstr "ग्रिड पर स्नैप" +msgstr "चार्ट को जाली (grid) पर लगाएँ" #: js/messages.php:142 msgid "Please add at least one variable to the series" -msgstr "" +msgstr "कृपया, श्रृंखला में कम से कम एक चर (variable) ज़रूर जोड़ें" #: js/messages.php:143 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:573 libraries/export/sql.php:1093 @@ -1450,39 +1441,43 @@ msgstr "" #: server_privileges.php:2052 server_status.php:1281 server_status.php:1716 #: tbl_zoom_select.php:158 tbl_zoom_select.php:285 msgid "None" -msgstr "कोई नहीं" +msgstr "कुछ नहीं" #: js/messages.php:144 msgid "Resume monitor" -msgstr "" +msgstr "देखभाल व्यवस्था को पुनः शुरू करें" #: js/messages.php:145 msgid "Pause monitor" -msgstr "" +msgstr "देखभाल व्यवस्था को एक बार यथास्थिति (pause) रोकें" #: js/messages.php:147 msgid "general_log and slow_query_log are enabled." 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 "" +"धीमी क्वॅरी पञ्जिका (slow_query_log) तथा सामान्य पञ्जिका (general_log) को " +"निष्क्रिय किया गया।" #: js/messages.php:151 msgid "log_output is not set to TABLE." -msgstr "" +msgstr "टेबल पर पंजिका परिणाम (log_output) सेट नहीं है।" #: js/messages.php:152 msgid "log_output is set to TABLE." -msgstr "" +msgstr "टेबल पंजिका परिणाम (log_output) के साथ सेट है" #: js/messages.php:153 #, php-format @@ -1491,108 +1486,110 @@ msgid "" "than %d seconds. It is advisable to set this long_query_time 0-2 seconds, " "depending on your system." msgstr "" +"यद्यपि धीमी_क्वॅरी_पंजिका (slow_query_log) समर्थ है, परन्तु सर्वर उन्हीं " +"क्वॅरीज को पंजिका में सूचीबद्ध करता है जो %d सेकण्ड्स से ज्यादा समय लेती " +"हैं। अतः आपको सलाह दी जाती है कि सिस्टम के अनुरूप अधिक_क्वॅरी_समय " +"(long_query_time) को 0-2 सेकण्ड्स पर सेट कर लें।" #: 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 "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" +"सर्वर के दुबारा चालू होने पर अग्रवर्णित व्यवस्थाएं समूचे तंत्र में एक साथ " +"लागू होंगी और पुनः डिफ़ॉल्ट पर सेट हो जाएँगी" #. l10n: %s is FILE or TABLE #: js/messages.php:157 -#, fuzzy, php-format +#, php-format #| msgid "Save output to a file" msgid "Set log_output to %s" -msgstr "उत्पादन को फाईल मे सेव करें" +msgstr "पंजिका परिणाम (log_output) को %s पर सेट करें" #. 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 #, php-format msgid "Set long_query_time to %ds" -msgstr "" +msgstr "अधिक_समय_क्वॅरी (long_query_time) को %ds पर सेट करें" #: js/messages.php:164 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" +"आप इन चरों (variables) को बदलने की स्थिति में नहीं है। कृपया मूल (root) " +"प्रयोक्ता के बतौर लोग इन करें या अपने डॅटाबेस प्रबंधक से संपर्क करें।" #: js/messages.php:165 -#, fuzzy #| msgid "General relation features" msgid "Change settings" -msgstr "सेटिंग्स प्रबंधक" +msgstr "सेटिंग्स बदलें" #: js/messages.php:166 -#, fuzzy #| msgid "General relation features" msgid "Current settings" -msgstr "अधिक सेटिंग्स" +msgstr "वर्तमान सेटिंग्स" #: js/messages.php:168 server_status.php:1664 -#, fuzzy #| msgid "Default title" msgid "Chart Title" -msgstr "डिफ़ॉल्ट शीर्षक" +msgstr "चार्ट शीर्षक" #. l10n: As in differential values #: js/messages.php:170 -#, fuzzy #| msgid "Difference" msgid "Differential" -msgstr "अंतर" +msgstr "अवकलित" #: js/messages.php:171 #, php-format msgid "Divided by %s" -msgstr "" +msgstr "%s से विभाजित" #: js/messages.php:172 msgid "Unit" -msgstr "" +msgstr "इकाई" #: js/messages.php:174 msgid "From slow log" -msgstr "" +msgstr "धीमी पंजिका (slow log) से" #: js/messages.php:175 msgid "From general log" -msgstr "" +msgstr "सामान्य पंजिका (general_log) से" #: js/messages.php:176 -#, fuzzy #| msgid "Loading" msgid "Analysing logs" -msgstr "लोड हो रहा है" +msgstr "पंजिका (log) छान-बीन ज़ारी" #: js/messages.php:177 msgid "Analysing & loading logs. This may take a while." -msgstr "" +msgstr "पंजिका की छान-बीन और लोडिंग हो रही है। इसमें थोड़ा वक्त लग सकता है।" #: js/messages.php:178 -#, fuzzy #| msgid "Read requests" msgid "Cancel request" -msgstr "पढने का अनुरोध" +msgstr "अनुरोध रद्द करें" #: js/messages.php:179 msgid "" @@ -1600,6 +1597,9 @@ msgid "" "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" +"इस कॉलम में उन्हीं क्वॅरीज को एकत्रित किया गया है जो एक जैसी हैं। तथापि इनको " +"एकत्र करने का मापदण्ड इनका SQL पाठ्य ही है अतः क्वॅरीज के अन्य गुणधर्म जैसे " +"शुरुआत का समय आदि भिन्न मान लिए हो सकते हैं।" #: js/messages.php:180 msgid "" @@ -1607,38 +1607,39 @@ msgid "" "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" +"चूँकि INSERT क्वॅरीज के एकत्रीकरण (grouping) का को चुना गया है, सो एक ही " +"टेबल में की गयी INSERT क्वॅरीज को भी एकत्रित (group) किया गया है। टेबल में " +"डाले (insert) गए डॅटा से इसका कोई सम्बन्ध नहीं है।" #: js/messages.php:181 msgid "Log data loaded. Queries executed in this time span:" -msgstr "" +msgstr "पंजिका जानकारी लोड हो चुकी है। क्वॅरीज क्रियान्वन में लगा समय:" #: js/messages.php:183 -#, fuzzy #| msgid "Jump to database" msgid "Jump to Log table" -msgstr "डेटाबेस को कूद" +msgstr "सीधे पंजिका टेबल (log table) पर जाएँ" #: js/messages.php:184 -#, fuzzy #| msgid "No databases" msgid "No data found" -msgstr "कोइ डाटाबेस नहिं" +msgstr "कोई डॅटा नहीं पाया गया" #: js/messages.php:185 msgid "Log analysed, but no data found in this time span." msgstr "" +"पंजिका (log) की छान-बीन की गयी, परन्तु इस समय अन्तराल विशेष में कोई डॅटा " +"नहीं पाया गया।" #: js/messages.php:187 -#, fuzzy #| msgid "Analyze" msgid "Analyzing..." -msgstr "विश्लेषण" +msgstr "छान-बीन हो रही है…" #: js/messages.php:188 -#, fuzzy #| msgid "Explain SQL" msgid "Explain output" -msgstr "SQL की व्याख्या " +msgstr "परिणाम को समझाएँ" #: js/messages.php:190 js/messages.php:497 libraries/rte/rte_list.lib.php:62 #: server_status.php:1254 sql.php:897 @@ -1646,67 +1647,61 @@ msgid "Time" msgstr "समय" #: js/messages.php:191 -#, fuzzy #| msgid "Total" msgid "Total time:" -msgstr "कुल" +msgstr "कुल समय:" #: js/messages.php:192 -#, fuzzy #| msgid "Profiling" msgid "Profiling results" -msgstr "रूपरेखा" +msgstr "परिणाम का रूपरेखा बन रही है" #: js/messages.php:193 -#, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" -msgstr "टेबल " +msgstr "टेबल" #: js/messages.php:194 -#, fuzzy #| msgid "Charset" msgid "Chart" -msgstr "कोई" +msgstr "चार्ट" #: js/messages.php:195 -#, fuzzy #| msgid "Add index" msgid "Edit chart" -msgstr "अनुक्रमणिका जोड़" +msgstr "चार्ट सम्पादित करें" #: js/messages.php:196 -#, fuzzy #| msgid "SQL queries" msgid "Series" -msgstr "SQL क्वरी" +msgstr "श्रृंखला" #. l10n: A collection of available filters #: js/messages.php:199 -#, fuzzy #| msgid "Tables display options" msgid "Log table filter options" -msgstr "टेबल प्रदर्शन विकल्प" +msgstr "पंजिका (log) टेबल फ़िल्टर विकल्प" #. l10n: Filter as in "Start Filtering" #: js/messages.php:201 msgid "Filter" -msgstr "" +msgstr "फ़िल्टर" #: js/messages.php:202 msgid "Filter queries by word/regexp:" -msgstr "" +msgstr "क्वॅरीज को शब्द / रेग्युलर एक्सप्रेशन के जरिये फ़िल्टर करें:" #: js/messages.php:203 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" +"WHERE कथन में चर (variable) डॅटा को बिना शामिल किये, क्वॅरीज को एकत्र " +"(group) करें" #: js/messages.php:204 -#, fuzzy #| msgid "Number of inserted rows" msgid "Sum of grouped rows:" -msgstr "डाली गयी पक्न्तियों" +msgstr "एकत्र (group) पंक्तियों का योग:" #: js/messages.php:205 #, fuzzy @@ -1715,14 +1710,13 @@ msgid "Total:" msgstr "कुल" #: js/messages.php:207 -#, fuzzy #| msgid "Loading" msgid "Loading logs" -msgstr "लोड हो रहा है" +msgstr "पंजिका (log) को लोड किया जा रह है" #: js/messages.php:208 msgid "Monitor refresh failed" -msgstr "" +msgstr "देख-रेख तंत्र असफल रहा" #: js/messages.php:209 msgid "" @@ -1730,89 +1724,89 @@ msgid "" "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" +"आपके नवीन चार्ट डॅटा के अनुरोध को सर्वर ने अमान्य करार दिया है। शायद आपके " +"सेशन की अवधि समाप्त हो गयी हो। समाधान के लिए पेज रीलोड करें और अपने परिचय " +"सम्बन्धी जानकारी फिर से डालकर देखें।" #: js/messages.php:210 -#, fuzzy #| msgid "Reload" msgid "Reload page" -msgstr "पुनः लोड" +msgstr "पृष्ठ पुनः लोड करें" #: js/messages.php:212 msgid "Affected rows:" -msgstr "" +msgstr "प्रभावित पंक्तियाँ:" #: js/messages.php:214 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" +"कॉन्फिग फ़ाईल की को पढ़ पाने असमर्थ। ऐसा प्रतीत होता है कि इसमें मानक JSON कोड " +"नहीं है।" #: js/messages.php:215 msgid "" "Failed building chart grid with imported config. Resetting to default " "config..." msgstr "" +"आयातित कॉन्फिग के साथ चार्ट ग्रिड बनाने में असमर्थ। डिफ़ॉल्ट कॉन्फिग पर रिसेट " +"किया जा रह है…." #: js/messages.php:216 libraries/config/messages.inc.php:172 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1619 setup/frames/menu.inc.php:20 msgid "Import" -msgstr "आयात" +msgstr "आयात करें" #: js/messages.php:217 -#, fuzzy #| msgid "Could not import configuration" msgid "Import monitor configuration" -msgstr "विन्यास आयात नहीं किया जा सका" +msgstr "देख-रेख (import) विन्यास (configuration) आयात करें" #: js/messages.php:218 -#, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import" -msgstr "कृपया प्राथमिक कुंजी या एक अद्वितीय कुंजी का चयन करें" +msgstr "जिस फाईल को आयात करना चाहते हैं, उसे चुनें:" #: js/messages.php:220 -#, fuzzy #| msgid "Update Query" msgid "Analyse Query" -msgstr "क्वरी का नवीनीकरण करें" +msgstr "क्वॅरी का विश्लेष्ण करें" #: js/messages.php:224 msgid "Advisor system" -msgstr "" +msgstr "परामर्श व्यवस्था" #: js/messages.php:225 msgid "Possible performance issues" -msgstr "" +msgstr "कार्यक्षमता के सन्दर्भ में संभावित मुद्दे" #: js/messages.php:226 msgid "Issue" -msgstr "" +msgstr "मसला" #: js/messages.php:227 -#, fuzzy #| msgid "Documentation" msgid "Recommendation" -msgstr "डोक्युमेंटेशन" +msgstr "अनुशंसायें" #: js/messages.php:228 -#, fuzzy #| msgid "Details..." msgid "Rule details" -msgstr "विवरण..." +msgstr "नियमों का विवरण" #: js/messages.php:229 -#, fuzzy #| msgid "Authentication" msgid "Justification" -msgstr "प्रमाणीकरण" +msgstr "औचित्यकरण" #: js/messages.php:230 msgid "Used variable / formula" -msgstr "" +msgstr "प्रयुक्त चर (variable) / सूत्र (formula)" #: js/messages.php:231 msgid "Test" -msgstr "" +msgstr "जाँच" #: js/messages.php:236 pmd_general.php:382 pmd_general.php:419 #: pmd_general.php:539 pmd_general.php:587 pmd_general.php:663 @@ -1826,19 +1820,19 @@ msgstr "लोड हो रहा है" #: js/messages.php:240 msgid "Processing Request" -msgstr "याचिका प्रसंस्करण" +msgstr "अनुरोध क्रियान्वित हो रहा है" #: js/messages.php:241 libraries/rte/rte_export.lib.php:39 msgid "Error in Processing Request" -msgstr "याचिका प्रसंस्करणमें त्रुटि" +msgstr "अनुरोध क्रियान्वन में दिक्कत" #: js/messages.php:242 msgid "Dropping Column" -msgstr "काँलम गिराना" +msgstr "कॉलम को हटाया जाना" #: js/messages.php:243 msgid "Adding Primary Key" -msgstr "प्राथमिक कुंजी जोड़" +msgstr "प्राथमिक कुञ्जी जोड़ना" #: js/messages.php:244 libraries/relation.lib.php:80 pmd_general.php:380 #: pmd_general.php:537 pmd_general.php:585 pmd_general.php:661 @@ -1848,117 +1842,111 @@ msgstr "ठीक है" #: js/messages.php:245 msgid "Click to dismiss this notification" -msgstr "" +msgstr "इस सूचना को खारिज़ करने के लिए क्लिक करें" #: js/messages.php:248 msgid "Renaming Databases" -msgstr "डेटाबेस का नाम बदल कर ____ रखें" +msgstr "डॅटाबेसों का पुनर्नामकारण" #: js/messages.php:249 msgid "Reload Database" -msgstr "डेटाबेस पुनः लोड" +msgstr "डॅटाबेस पुनः लोड करें" #: js/messages.php:250 msgid "Copying Database" -msgstr "डेटाबेस को ______ में कॉपी करें" +msgstr "डॅटाबेस प्रतिलिपिकरण" #: js/messages.php:251 msgid "Changing Charset" -msgstr "वर्ण सेट बदलें" +msgstr "वर्ण समूह बदलाव" #: js/messages.php:252 msgid "Table must have at least one column" -msgstr "टेबल में कम से कम एक काँलम होना आवश्यक है" +msgstr "टेबल में कम से कम एक कॉलम होना आवश्यक है" #: js/messages.php:257 -#, fuzzy #| msgid "Use Tables" msgid "Insert Table" -msgstr "टेबल का उपयोग करो" +msgstr "टेबल डालें" #: js/messages.php:258 -#, fuzzy #| msgid "Add index" msgid "Hide indexes" -msgstr "अनुक्रमणिका जोड़" +msgstr "अनुक्रमणिकायें छिपाएँ" #: js/messages.php:259 -#, fuzzy #| msgid "Show grid" msgid "Show indexes" -msgstr "ग्रिड दिखाओ" +msgstr "अनुक्रमणिकायें दिखाएँ" #: js/messages.php:262 msgid "Searching" -msgstr "खोजें" +msgstr "ख़ोज" #: js/messages.php:263 -#, fuzzy #| msgid "Hide search criteria" msgid "Hide search results" -msgstr "खोज मापदंड छिपाना" +msgstr "खोज परिणाम छिपाएँ" #: js/messages.php:264 -#, fuzzy #| msgid "Show search criteria" msgid "Show search results" -msgstr "खोज मापदंड दिखाना" +msgstr "खोज परिणाम दिखाएँ" #: js/messages.php:265 -#, fuzzy #| msgid "Browse" msgid "Browsing" -msgstr "ब्राउज़" +msgstr "ब्राउज़िंग" #: js/messages.php:266 -#, fuzzy #| msgid "Delete" msgid "Deleting" -msgstr "मिटाएँ" +msgstr "मिटाना" #: js/messages.php:269 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" +"एक संगृहीत फंक्शन की परिभाषा (definition) में RETURN कथन होना आवश्यक है!" #: js/messages.php:276 -#, fuzzy, php-format +#, php-format #| msgid "Add a new User" msgid "Add %d value(s)" -msgstr "नयी वलुए जोडें" +msgstr "%d मान जोड़ें" #: js/messages.php:279 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" +"सूचना: यदि फ़ाईल में एक से अधिक टेबलें हैं तो वे एक में ही संगठित की जाएँगी" #: js/messages.php:282 msgid "Hide query box" -msgstr "क्वरी बॉक्स छुपा" +msgstr "क्वॅरी बॉक्स छिपाएँ" #: js/messages.php:283 msgid "Show query box" -msgstr "क्वेरी बॉक्स दिखाएँ" +msgstr "क्वॅरी बॉक्स दिखाएँ" #: js/messages.php:285 tbl_row_action.php:28 msgid "No rows selected" -msgstr "कोई चयनित रो नहीं" +msgstr "कोई पंक्ति चयनित नहीं" #: js/messages.php:286 libraries/common.lib.php:2742 #: libraries/display_tbl.lib.php:2507 querywindow.php:87 tbl_structure.php:149 #: tbl_structure.php:588 msgid "Change" -msgstr "बदलिये" +msgstr "बदलें" #: js/messages.php:287 -#, fuzzy #| msgid "Maximum execution time" msgid "Query execution time" -msgstr "अधिकतम निष्पादन समय" +msgstr "क्वॅरी क्रियान्वन में लगा समय" #: js/messages.php:288 libraries/display_tbl.lib.php:423 #, php-format msgid "%d is not valid row number." -msgstr "%d वैध रो संख्या नहीं है" +msgstr "%d एक वैध पंक्ति संख्या नहीं है" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:352 @@ -1966,90 +1954,87 @@ msgstr "%d वैध रो संख्या नहीं है" #: setup/frames/index.inc.php:229 tbl_change.php:1025 #: tbl_gis_visualization.php:193 tbl_indexes.php:280 tbl_relation.php:559 msgid "Save" -msgstr "बचाना" +msgstr "सुरक्षित करें" #: js/messages.php:294 msgid "Hide search criteria" -msgstr "खोज मापदंड छिपाना" +msgstr "ख़ोज मापदंड छिपाएँ" #: js/messages.php:295 msgid "Show search criteria" -msgstr "खोज मापदंड दिखाना" +msgstr "खोज मापदंड दिखाएँ" #: js/messages.php:298 libraries/tbl_select.lib.php:110 -#, fuzzy #| msgid "Search" msgid "Zoom Search" -msgstr "ढूंढें" +msgstr "ज़ूम ख़ोज" #: js/messages.php:300 msgid "Each point represents a data row." -msgstr "" +msgstr "प्रत्येक बिन्दु एक डॅटा पंक्ति को बताता है।" #: js/messages.php:302 msgid "Hovering over a point will show its label." -msgstr "" +msgstr "लेबल देखने के लिए कर्सर बिन्दु के ऊपर लेकर जाएँ।" #: js/messages.php:304 msgid "To zoom in, select a section of the plot with the mouse." -msgstr "" +msgstr "और बारीकी से देखने के लिए पुरे क्षेत्र का कोई भाग माउस से सेलेक्ट करें।" #: js/messages.php:306 msgid "Click reset zoom link to come back to original state." -msgstr "" +msgstr "मूल अवस्था पर वापस आने के लिए रिसेट ज़ूम लिंक पर क्लिक करें।" #: js/messages.php:308 msgid "Click a data point to view and possibly edit the data row." -msgstr "" +msgstr "पंक्ति को देखने और संभावित सम्पादन के लिए डॅटा बिन्दु पर क्लिक करें।" #: js/messages.php:310 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" +"दायीं तरफ नीचे के कोने के साथ पॉइंटर घसीटने पर क्षेत्र के अकार को बदला जा " +"सकता है।" #: js/messages.php:312 -#, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" -msgstr "कोलम जोडें/हटायें" +msgstr "दो कॉलम चुने" #: js/messages.php:313 msgid "Select two different columns" -msgstr "" +msgstr "दो भिन्न कॉलम चुनें" #: js/messages.php:314 -#, fuzzy #| msgid "SQL result" msgid "Query results" -msgstr "SQLपरिणाम" +msgstr "क्वॅरी परिणाम" #: js/messages.php:315 -#, fuzzy #| msgid "Data pointer size" msgid "Data point content" -msgstr "सूचक का आकार डेटा" +msgstr "डॅटा बिन्दु सामग्री" #: js/messages.php:318 tbl_change.php:312 tbl_indexes.php:228 #: tbl_indexes.php:255 msgid "Ignore" -msgstr "ध्यान न देना" +msgstr "उपेक्षा करें" #: js/messages.php:319 libraries/display_tbl.lib.php:1391 msgid "Copy" -msgstr "अनुकृति" +msgstr "प्रतिलिपि करें" #: js/messages.php:334 -#, fuzzy #| msgid "Add column" msgid "Add columns" -msgstr "नया काँलम जोडें" +msgstr "नए कॉलम जोडें" #: js/messages.php:337 msgid "Select referenced key" -msgstr "संदर्भित कुंजी का चयन करें." +msgstr "संदर्भ कुंजी का चयन करें" #: js/messages.php:338 msgid "Select Foreign Key" -msgstr "विदेश कुंजी का चयन करें." +msgstr "परदेशी कुंजी का चयन करें" #: js/messages.php:339 msgid "Please select the primary key or a unique key" @@ -2057,74 +2042,81 @@ msgstr "कृपया प्राथमिक कुंजी या एक #: js/messages.php:340 pmd_general.php:77 tbl_relation.php:541 msgid "Choose column to display" -msgstr "प्रदर्शित करने के लिए काँलम चयन करें." +msgstr "प्रदर्शित करने के लिए काँलम चुनें" #: js/messages.php:341 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" +"आपने प्रदर्शन में बदलावों को सुरक्षित नहीं किया है। ये बदलाव खो जायेंगे यदि " +"आपने सुरक्षित नहीं किया। क्या आप ज़ारी रखना चाहेंगे?" #: js/messages.php:344 msgid "Add an option for column " -msgstr "काँलम के लिए एक विकल्प जोड़ें " +msgstr "कॉलम के लिए एक विकल्प जोड़ें " #: js/messages.php:347 msgid "Press escape to cancel editing" -msgstr "" +msgstr "सम्पादन को रद्द करने के लिए एस्केप दबाएँ" #: js/messages.php:348 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" +"आपने कुछ डॅटा को सम्पादित किया है पर सुरक्षित नहीं किया है। क्या आप उन्हें " +"बिना सुरक्षित किये आगे बढ़ना चाहेंगे?" #: js/messages.php:349 msgid "Drag to reorder" -msgstr "" +msgstr "पुनः व्यवस्थित करने के लिए घसीटें" #: js/messages.php:350 -#, fuzzy #| msgid "Click to select" msgid "Click to sort" -msgstr "चयन करने के लिए क्लिक करें." +msgstr "क्रमानुसार करने के लिए क्लिक करें" #: js/messages.php:351 msgid "Click to mark/unmark" -msgstr "" +msgstr "चिन्हित / अचिन्हित करने के लिए क्लिक करें" #: js/messages.php:352 msgid "Click the drop-down arrow
to toggle column's visibility" -msgstr "" +msgstr "कॉलम को दिखने / छुपाने के लिए
ड्रॉप-डाउन तीर पर क्लिक करें" #: js/messages.php:354 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" +"इस टेबल में कोई भी विशिष्ट (unique) कॉलम नहीं है। इस बात कि सम्भावना है कि " +"ग्रिड सम्पादन, टिक-बॉक्स, सम्पादन, प्रतिलिपि एवं मिटाने के लिंक से जुडी " +"सुविधाएँ काम न करें।" #: js/messages.php:355 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" +"आप ज्यादातर कॉलम को
उनकी सामग्री पर सीधे क्लिक करके भी सम्पादित कर " +"सकते हैं।" #: js/messages.php:356 -#, fuzzy #| msgid "Go to view" msgid "Go to link" -msgstr "दृश्य पर जायें" +msgstr "लिंक पर जाएँ" #: js/messages.php:359 msgid "Generate password" -msgstr "पासव्रड उत्पन्न करें" +msgstr "नया पासवर्ड उत्पन्न करें" #: js/messages.php:360 libraries/replication_gui.lib.php:369 msgid "Generate" -msgstr "उत्पन्न" +msgstr "उत्पन्न करें" #: js/messages.php:361 msgid "Change Password" -msgstr "पासवर्ड बदलिये" +msgstr "पासवर्ड बदलें" #: js/messages.php:364 tbl_structure.php:480 msgid "More" @@ -2136,33 +2128,31 @@ msgid "" "A newer version of phpMyAdmin is available and you should consider " "upgrading. The newest version is %s, released on %s." msgstr "" -"phpMyAdmin का एक नया संस्करण उपलब्ध है, यह नया संस्करण %s है,और यह %s को प्रकाशित हुआ" +"phpMyAdmin का नवीन संस्करण उपलब्ध है। नया संस्करण %s है जो कि %s को प्रकाशित " +"हुआ है।" #. l10n: Latest available phpMyAdmin version #: js/messages.php:369 msgid ", latest stable version:" -msgstr ", नवीनतम स्थिर संस्करण:" +msgstr "नवीनतम स्थिर संस्करण:" #: js/messages.php:370 -#, fuzzy #| msgid "Jump to database" msgid "up to date" -msgstr "डेटाबेस को कूद" +msgstr "अद्यतन" #. l10n: Display text for calendar close link #: js/messages.php:389 msgid "Done" -msgstr "किया" +msgstr "हो गया" #: js/messages.php:393 -#, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "पिछला" #: js/messages.php:398 -#, fuzzy #| msgid "Next" msgctxt "Next month" msgid "Next" @@ -2292,7 +2282,7 @@ msgstr "सोमवार" #: js/messages.php:446 msgid "Tuesday" -msgstr "मन्गलवार" +msgstr "मंगलवार" #: js/messages.php:447 msgid "Wednesday" @@ -2326,7 +2316,7 @@ msgstr "सोमवार" #. l10n: Short week day name #: js/messages.php:458 libraries/common.lib.php:1634 msgid "Tue" -msgstr "मन्गलवार" +msgstr "मंगलवार" #. l10n: Short week day name #: js/messages.php:460 libraries/common.lib.php:1636 @@ -2351,55 +2341,54 @@ msgstr "शनिवार" #. l10n: Minimal week day name #: js/messages.php:470 msgid "Su" -msgstr "रविवार" +msgstr "रवि" #. l10n: Minimal week day name #: js/messages.php:472 msgid "Mo" -msgstr "सोमवार" +msgstr "सोम" #. l10n: Minimal week day name #: js/messages.php:474 msgid "Tu" -msgstr "मन्गलवार" +msgstr "मंगल" #. l10n: Minimal week day name #: js/messages.php:476 msgid "We" -msgstr "बुधवार" +msgstr "बुध" #. l10n: Minimal week day name #: js/messages.php:478 msgid "Th" -msgstr "गुरुवार" +msgstr "गुरु" #. l10n: Minimal week day name #: js/messages.php:480 msgid "Fr" -msgstr "शुक्रवार" +msgstr "शुक्र" #. l10n: Minimal week day name #: js/messages.php:482 msgid "Sa" -msgstr "शनिवार" +msgstr "शनि" #. l10n: Column header for week of the year in calendar #: js/messages.php:484 msgid "Wk" -msgstr "हफ्ता" +msgstr "सप्ताह" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". #: js/messages.php:487 msgid "calendar-month-year" -msgstr "" +msgstr "कैलेण्डर-माह-वर्ष" #. l10n: Year suffix for calendar, "none" is empty. #: js/messages.php:489 -#, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" -msgstr "कोई नहीं" +msgstr "कुछ नहीं" #: js/messages.php:498 msgid "Hour" @@ -2411,12 +2400,14 @@ msgstr "मिनट" #: js/messages.php:500 msgid "Second" -msgstr "सेकंड" +msgstr "सेकण्ड" #: libraries/Advisor.class.php:168 #, php-format msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" msgstr "" +"स्ट्रिंग को, %s नियम के आधार पर सही प्रारूप देने में असमर्थ। PHP ने " +"अग्रलिखित त्रुटी फेंकी है: %s" #: libraries/Advisor.class.php:326 server_status.php:965 msgid "per second" @@ -2429,15 +2420,15 @@ msgstr "प्रति मिनट" #: libraries/Advisor.class.php:332 server_status.php:956 server_status.php:992 #: server_status.php:1114 server_status.php:1159 msgid "per hour" -msgstr "प्रति घंटे" +msgstr "प्रति घंटा" #: libraries/Advisor.class.php:335 msgid "per day" -msgstr "" +msgstr "प्रतिदिन" #: libraries/Config.class.php:701 msgid "Remove \"./config\" directory before using phpMyAdmin!" -msgstr "" +msgstr "phpMyAdmin प्रयोग में लेने से पहले \"./config\" डायरेक्टरी को हटायें!" #: libraries/Config.class.php:727 #, php-format From 48b4e3ada8702704842378197082111ea15e0ed5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 21 Jan 2013 06:56:37 +0100 Subject: [PATCH 57/85] Translated using Weblate (Arabic) Currently translated at 51.1% (1310 of 2562) --- po/ar.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/ar.po b/po/ar.po index d3953b0051..a189c3ee35 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-10-16 14:37+0200\n" -"PO-Revision-Date: 2013-01-10 13:39+0200\n" +"PO-Revision-Date: 2013-01-21 06:56+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Arabic \n" "Language: ar\n" @@ -7270,8 +7270,8 @@ msgid "" "b> Please use the improved 'mysqli' extension to avoid any problems." msgstr "" "انت تستخدم ملحق PHP مهمل 'mysql'، وهو ليس قادر على التعامل مع الإستعلامات " -"المتعددة. فتنفيذ بعض الإجراءات المخزنة قد تفشل! الرجاء استخدام " -"ملحق 'mysqli' لتجنب أي مشاكل." +"المتعددة. فتنفيذ بعض الإجراءات المخزنة قد تفشل! الرجاء استخدام ملحق " +"'mysqli' لتجنب أي مشاكل." #: libraries/rte/rte_routines.lib.php:245 #: libraries/rte/rte_routines.lib.php:1022 From 5a415f2260ab2057a06456d837e540b38aeae442 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 21 Jan 2013 06:58:10 +0100 Subject: [PATCH 58/85] Translated using Weblate (Croatian) Currently translated at 42.0% (1077 of 2562) --- po/hr.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/hr.po b/po/hr.po index 309d0da2f1..dfffbc4392 100644 --- a/po/hr.po +++ b/po/hr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-10-16 14:37+0200\n" -"PO-Revision-Date: 2013-01-08 09:18+0200\n" +"PO-Revision-Date: 2013-01-21 06:58+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Croatian \n" "Language: hr\n" @@ -2896,7 +2896,7 @@ msgstr "" #: libraries/auth/cookie.auth.lib.php:211 msgid "Server:" -msgstr "Poslužitelj" +msgstr "Poslužitelj:" #: libraries/auth/cookie.auth.lib.php:216 msgid "Username:" @@ -3301,7 +3301,7 @@ msgstr "Operacije" #: libraries/common.lib.php:3277 libraries/sql_query_form.lib.php:443 #: prefs_manage.php:239 msgid "Browse your computer:" -msgstr "Pretraži računalo" +msgstr "Pretraži računalo:" #: libraries/common.lib.php:3296 #, fuzzy, php-format @@ -11796,7 +11796,7 @@ msgstr "Dodaj/Izbriši stupce polja" #: tbl_chart.php:145 msgid "X-Axis label:" -msgstr "Oznaka X-osi" +msgstr "Oznaka X-osi:" #: tbl_chart.php:147 #, fuzzy From b91b0fb32301b6d7cfa322f4b3efa152d054437d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 21 Jan 2013 06:54:47 +0100 Subject: [PATCH 59/85] Translated using Weblate (Hindi) Currently translated at 61.9% (1587 of 2562) --- po/hi.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/hi.po b/po/hi.po index d6eadf1433..b1ca0ef5b4 100644 --- a/po/hi.po +++ b/po/hi.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-10-16 14:37+0200\n" -"PO-Revision-Date: 2013-01-20 23:05+0200\n" -"Last-Translator: Yogendra Singh Shekhawat \n" +"PO-Revision-Date: 2013-01-21 06:54+0200\n" +"Last-Translator: Michal Čihař \n" "Language-Team: Hindi \n" "Language: hi\n" "MIME-Version: 1.0\n" @@ -1125,7 +1125,7 @@ msgstr "अनुक्रमणिका सम्पादित करें" #, 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 From 0c8eb9aeee3096e226c9c4fcc6878d28877a2545 Mon Sep 17 00:00:00 2001 From: Andrey Prokopenko Date: Sun, 20 Jan 2013 19:51:31 +0100 Subject: [PATCH 60/85] Translated using Weblate (Ukrainian) Currently translated at 62.7% (1607 of 2562) --- po/uk.po | 40 ++++++++++++++++++++++++---------------- 1 file changed, 24 insertions(+), 16 deletions(-) diff --git a/po/uk.po b/po/uk.po index 5e827bae7f..3de77a5bac 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-10-16 14:37+0200\n" -"PO-Revision-Date: 2013-01-20 19:28+0200\n" +"PO-Revision-Date: 2013-01-20 19:51+0200\n" "Last-Translator: Andrey Prokopenko \n" "Language-Team: Ukrainian \n" "Language: uk\n" @@ -5093,15 +5093,15 @@ msgstr "Показувати типи полів" #: libraries/config/messages.inc.php:464 msgid "Display the function fields in edit/insert mode" -msgstr "" +msgstr "Відображувати поля функції у режим редагування/вставки" #: libraries/config/messages.inc.php:465 msgid "Show function fields" -msgstr "" +msgstr "Показувати поля функції" #: libraries/config/messages.inc.php:466 msgid "Whether to show hint or not" -msgstr "" +msgstr "Чи показувати підказки" #: libraries/config/messages.inc.php:467 #| msgid "Show grid" @@ -5113,51 +5113,57 @@ 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" -msgstr "" +msgstr "Показувати докладну інформацію про сервер MySQL" #: libraries/config/messages.inc.php:471 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" -msgstr "" +msgstr "Визначає, чи мають відображатися SQL запити, що згенеровані PHPMyAdmin" #: libraries/config/messages.inc.php:472 msgid "Show SQL queries" -msgstr "" +msgstr "Показувати SQL-запити" #: libraries/config/messages.inc.php:473 msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" +"Визначає, чи має залишатися вікно запиту на екрані після надсилання запиту" #: libraries/config/messages.inc.php:474 libraries/sql_query_form.lib.php:352 -#, fuzzy #| msgid "Hide query box" msgid "Retain query box" -msgstr "Сховати блок запиту" +msgstr "Залишати вікно запиту" #: libraries/config/messages.inc.php:475 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" +"Дозволити показ статистики бази даних і таблиць (наприклад, використання " +"простору)" #: libraries/config/messages.inc.php:476 msgid "Show statistics" -msgstr "" +msgstr "Показувати статистику" #: libraries/config/messages.inc.php:477 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" +"Якщо спливаючі підказки увімкнено і введено коментар бази даних, то за " +"допомогою цього пункту буде замінено назву на коментар" #: libraries/config/messages.inc.php:478 msgid "Display database comment instead of its name" -msgstr "" +msgstr "Показувати коментар бази даних замість її назви" #: libraries/config/messages.inc.php:479 msgid "" @@ -5182,11 +5188,11 @@ msgstr "" #: libraries/config/messages.inc.php:483 msgid "Skip locked tables" -msgstr "" +msgstr "Пропускати заблоковані таблиці" #: libraries/config/messages.inc.php:488 msgid "Requires SQL Validator to be enabled" -msgstr "" +msgstr "Має бути увімкнений SQL валідатор" #: libraries/config/messages.inc.php:490 #: libraries/display_change_password.lib.php:40 @@ -5203,10 +5209,12 @@ msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" +"[strong]УВАГА:[/strong] має бути встановлено розширення PHP SOAP або PEAR " +"SOAP" #: libraries/config/messages.inc.php:492 msgid "Enable SQL Validator" -msgstr "" +msgstr "Увімкнути SQL валідатор" #: libraries/config/messages.inc.php:493 msgid "" @@ -5217,7 +5225,7 @@ msgstr "" #: libraries/config/messages.inc.php:494 tbl_tracking.php:460 #: tbl_tracking.php:517 msgid "Username" -msgstr "" +msgstr "Ім'я користувача" #: libraries/config/messages.inc.php:495 msgid "" From f166cc350cb7b8381a13a733b0abaee05fc70971 Mon Sep 17 00:00:00 2001 From: Panagiotis Papazoglou Date: Mon, 21 Jan 2013 07:57:18 +0100 Subject: [PATCH 61/85] Translated using Weblate (Greek) Currently translated at 100.0% (2599 of 2599) --- po/el.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/el.po b/po/el.po index bca1a9297b..99c2228e34 100644 --- a/po/el.po +++ b/po/el.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-01-21 00:59+0100\n" -"PO-Revision-Date: 2013-01-18 21:57+0200\n" +"PO-Revision-Date: 2013-01-21 07:57+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: Greek \n" "Language: el\n" @@ -10124,10 +10124,9 @@ msgid "Error in ZIP archive:" msgstr "Σφάλμα στο συμπιεσμένο αρχείο ZIP:" #: navigation.php:23 -#, fuzzy #| msgid "Fatal error: The navigation can only be accessed via ajax" msgid "Fatal error: The navigation can only be accessed via AJAX" -msgstr "Κρίσιμο σφάλμα: Η πλοήγηση μπορεί να προσπελαστεί μέσω ajax" +msgstr "Κρίσιμο σφάλμα: Η πλοήγηση μπορεί να προσπελαστεί μέσω AJAX" #: pmd_display_field.php:60 pmd_save_pos.php:81 msgid "Modifications have been saved" From 87a70c8843aa4402c904e9c5247e8d392b146859 Mon Sep 17 00:00:00 2001 From: Dieter Adriaenssens Date: Mon, 21 Jan 2013 13:37:45 +0100 Subject: [PATCH 62/85] improve coding style --- libraries/plugins/auth/AuthenticationCookie.class.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/libraries/plugins/auth/AuthenticationCookie.class.php b/libraries/plugins/auth/AuthenticationCookie.class.php index d3aa269449..121f94d736 100644 --- a/libraries/plugins/auth/AuthenticationCookie.class.php +++ b/libraries/plugins/auth/AuthenticationCookie.class.php @@ -79,8 +79,9 @@ class AuthenticationCookie extends AuthenticationPlugin sprintf( '', $GLOBALS['cfg']['PmaAbsoluteUri'], - __('Log in')) . - ' ]'; + __('Log in') + ) + . ' ]'; if (! empty($conn_error)) { @@ -264,7 +265,10 @@ class AuthenticationCookie extends AuthenticationPlugin // show the "Cookies required" message only if cookies are disabled // (we previously tried to set some cookies) if (empty($_COOKIE)) { - trigger_error(__('Cookies must be enabled past this point.'), E_USER_NOTICE); + trigger_error( + __('Cookies must be enabled past this point.'), + E_USER_NOTICE + ); } if ($GLOBALS['error_handler']->hasDisplayErrors()) { echo '
'; From 076bd09716c0379f4faa235d61d9b35c2594bfb8 Mon Sep 17 00:00:00 2001 From: Petro Lesiuk Date: Mon, 21 Jan 2013 13:21:13 +0100 Subject: [PATCH 63/85] Translated using Weblate (Ukrainian) Currently translated at 63.1% (1641 of 2599) --- po/uk.po | 188 +++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 121 insertions(+), 67 deletions(-) diff --git a/po/uk.po b/po/uk.po index 074f9daee9..ff9abdf7db 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,16 +4,16 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-01-21 00:59+0100\n" -"PO-Revision-Date: 2013-01-20 19:51+0200\n" -"Last-Translator: Andrey Prokopenko \n" -"Language-Team: Ukrainian \n" +"PO-Revision-Date: 2013-01-21 13:21+0200\n" +"Last-Translator: Petro Lesiuk \n" +"Language-Team: Ukrainian " +"\n" "Language: uk\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" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 1.4-dev\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 @@ -2923,7 +2923,7 @@ msgstr "" #: libraries/Menu.class.php:356 libraries/Menu.class.php:363 #: libraries/Menu.class.php:370 msgid "Database seems to be empty!" -msgstr "" +msgstr "Порожня база даних!" #: libraries/Menu.class.php:359 msgid "Query" @@ -2948,7 +2948,7 @@ msgstr "Події" #: libraries/Menu.class.php:419 libraries/relation.lib.php:205 msgid "Designer" -msgstr "" +msgstr "Дизайнер" #: libraries/Menu.class.php:473 msgid "Users" @@ -4783,7 +4783,7 @@ msgstr "SQL запити" #: libraries/config/messages.inc.php:213 msgid "SQL Query box" -msgstr "SQL Query box" +msgstr "SQL Запит" #: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" @@ -5461,7 +5461,7 @@ msgstr "Рядок, що відображається при ідентифік #: libraries/config/messages.inc.php:369 msgid "HTTP Realm" -msgstr "HTTP Realm" +msgstr "HTTP область" #: libraries/config/messages.inc.php:370 msgid "" @@ -5648,6 +5648,12 @@ msgid "" "their names in order and use [kbd]*[/kbd] at the end to show the rest in " "alphabetical order." msgstr "" +"Ви можете використовувати підставні символи (% і _), екрануйте їх, якщо " +"хочете використовувати, як звичайні літературні символи, тобто " +"використовуйте [kbd]'my\\_db'[/kbd] а не [kbd]'my_db'[/kbd]. За допомогою " +"даної настройки можна сортувати список баз даних, для чого достатньо ввести " +"їх імена в певному порядку і використовувати [kbd]*[/kbd] в кінці для " +"виведення залишилися в алфавітному порядку." #: libraries/config/messages.inc.php:407 msgid "Show only listed databases" @@ -5668,7 +5674,7 @@ msgstr "" #: libraries/config/messages.inc.php:411 msgid "PDF schema: pages table" -msgstr "" +msgstr "PDF схема: сторінки таблиці" #: libraries/config/messages.inc.php:412 msgid "" @@ -5676,6 +5682,10 @@ msgid "" "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" +"База даних використовувана для розширених функцій: зв'язків, закладок, і " +"PDF. Для більш повної інформації дивіться " +"[a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a]. Для відключення " +"підтримки, залиште поле порожнім. Рекомендується: [kbd]phpmyadmin[/kbd]" #: libraries/config/messages.inc.php:413 msgid "Database name" @@ -5709,11 +5719,11 @@ msgstr "" #: libraries/config/messages.inc.php:419 msgid "Relation table" -msgstr "" +msgstr "Таблиця зв'язків" #: libraries/config/messages.inc.php:420 msgid "SQL command to fetch available databases" -msgstr "" +msgstr "SQL команда для вибірки доступних баз даних" #: libraries/config/messages.inc.php:421 msgid "SHOW DATABASES command" @@ -5729,15 +5739,17 @@ msgstr "" #: libraries/config/messages.inc.php:423 msgid "Signon session name" -msgstr "" +msgstr "Ім'я сесії для Signon" #: libraries/config/messages.inc.php:424 msgid "Signon URL" -msgstr "" +msgstr "Signon URL" #: libraries/config/messages.inc.php:425 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" +"Сокет на якому працює сервер MySQL, Для значення за замовчуванням, залиште " +"порожнім." #: libraries/config/messages.inc.php:426 msgid "Server socket" @@ -5759,7 +5771,7 @@ msgstr "" #: libraries/config/messages.inc.php:430 msgid "PDF schema: table coordinates" -msgstr "" +msgstr "PDF схема: координати таблиць" #: libraries/config/messages.inc.php:431 msgid "" @@ -5769,7 +5781,7 @@ msgstr "" #: libraries/config/messages.inc.php:432 msgid "Display columns table" -msgstr "Показувати колонки таблиці" +msgstr "Таблиця з описами полів" #: libraries/config/messages.inc.php:433 msgid "" @@ -5786,6 +5798,8 @@ msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" +"Чи буде при створенні бази даних, в журнал першим рядком додано вираз DROP " +"DATABASE IF EXISTS." #: libraries/config/messages.inc.php:436 msgid "Add DROP DATABASE" @@ -5796,6 +5810,8 @@ msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" +"Чи буде при створенні бази даних, в журнал першим рядком додано вираз DROP " +"DATABASE IF EXISTS." #: libraries/config/messages.inc.php:438 msgid "Add DROP TABLE" @@ -5806,6 +5822,8 @@ msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" +"Чи буде при створенні вистави, в журнал першим рядком додано вираз DROP VIEW " +"IF EXISTS." #: libraries/config/messages.inc.php:440 msgid "Add DROP VIEW" @@ -5814,10 +5832,12 @@ msgstr "Додати DROP VIEW" #: libraries/config/messages.inc.php:441 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" +"Визначити список виразів, які використовуються для автоматичного створення " +"нових версій." #: libraries/config/messages.inc.php:442 msgid "Statements to track" -msgstr "" +msgstr "Стеження за виразами" #: libraries/config/messages.inc.php:443 msgid "" @@ -5852,13 +5872,13 @@ msgstr "Таблиця збереження налаштувань корист #: libraries/config/messages.inc.php:450 msgid "User for config auth" -msgstr "" +msgstr "Прописаний користувач" #: libraries/config/messages.inc.php:451 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." -msgstr "" +msgstr "Користувацький опис сервера. Залиште пустим, щоб вивести назву хоста." #: libraries/config/messages.inc.php:452 msgid "Verbose name of this server" @@ -5878,6 +5898,10 @@ msgid "" "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" +"Будь ласка, зверніть увагу, що включення даного параметра не дасть ефекту " +"при ідентифікації методом [kbd]config[/kbd] через жорстко прописаного " +"пароля. Зміна пароля в конфігураційному файлі безпосередньо ніяк не " +"обмежена." #: libraries/config/messages.inc.php:456 msgid "Show password change form" @@ -6001,12 +6025,14 @@ msgstr "Показувати статистику" #: libraries/config/messages.inc.php:481 msgid "Display table comments in tooltips" -msgstr "" +msgstr "Коментарі таблиці в спливаючих підказках" #: libraries/config/messages.inc.php:482 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" +"Відзначати використані таблиці і зробити можливим відображення баз даних із " +"заблокованими таблицями" #: libraries/config/messages.inc.php:483 msgid "Skip locked tables" @@ -6045,6 +6071,8 @@ 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:555 #: tbl_tracking.php:617 @@ -6053,39 +6081,43 @@ msgstr "Ім'я користувача" #: libraries/config/messages.inc.php:495 msgid "A warning is displayed on the main page if Suhosin is detected" -msgstr "" +msgstr "При визначенні Suhosin, на головній сторінці виводиться попередження" #: libraries/config/messages.inc.php:496 msgid "Suhosin warning" -msgstr "" +msgstr "Попередження про Suhosin" #: libraries/config/messages.inc.php:497 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" +"Розмір текстового поля в режимі редагування (у стовпцях); дане значення буде " +"пріоритетним для текстових полів SQL запиту (*2) і для вікна запиту (*1.25)" #: libraries/config/messages.inc.php:498 msgid "Textarea columns" -msgstr "" +msgstr "Стовпців у текстовому полі" #: libraries/config/messages.inc.php:499 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" +"Розмір текстового поля в режимі редагування (в рядках); дане значення буде " +"пріоритетним для текстових полів SQL запиту (*2) і для вікна запиту (*1.25)" #: libraries/config/messages.inc.php:500 msgid "Textarea rows" -msgstr "" +msgstr "Рядків у текстовому полі" #: libraries/config/messages.inc.php:501 msgid "Title of browser window when a database is selected" -msgstr "" +msgstr "Заголовок вікна браузера при виборі бази даних" #: libraries/config/messages.inc.php:503 msgid "Title of browser window when nothing is selected" -msgstr "" +msgstr "Заголовок вікна браузера за замовчуванням" #: libraries/config/messages.inc.php:504 msgid "Default title" @@ -6093,11 +6125,11 @@ msgstr "Заголовок по замовчуванню" #: libraries/config/messages.inc.php:505 msgid "Title of browser window when a server is selected" -msgstr "" +msgstr "Заголовок вікна браузера при виборі сервера" #: libraries/config/messages.inc.php:507 msgid "Title of browser window when a table is selected" -msgstr "" +msgstr "Заголовок вікна браузера при виборі таблиці" #: libraries/config/messages.inc.php:509 msgid "" @@ -6106,44 +6138,54 @@ msgid "" "For) header coming from the proxy 1.2.3.4:[br][kbd]1.2.3.4: " "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" +"Додайте проксі у вигляді [kbd]IP: довірений HTTP заголовок[/kbd]. Наступний " +"приклад показує, що phpMyAdmin повинен довіряти HTTP_X_FORWARDED_FOR (X" +"-Forwarded-For) заголовку, що прийшов з проксі 1.2.3.4: " +"[br][kbd]1.2.3.4:HTTP_X_FORWARDED_FOR[/kbd]" #: libraries/config/messages.inc.php:510 msgid "List of trusted proxies for IP allow/deny" -msgstr "" +msgstr "Список довірених проксі для IP allow/deny" #: libraries/config/messages.inc.php:511 msgid "Directory on server where you can upload files for import" msgstr "" +"Каталог на сервері, в який ви можете завантажувати файли для подальшого " +"імпорту" #: libraries/config/messages.inc.php:512 msgid "Upload directory" -msgstr "" +msgstr "Каталог завантаження" #: libraries/config/messages.inc.php:513 msgid "Allow for searching inside the entire database" -msgstr "" +msgstr "Дозволити пошук по всій базі даних" #: libraries/config/messages.inc.php:514 msgid "Use database search" -msgstr "" +msgstr "Використовувати пошук по базі даних" #: libraries/config/messages.inc.php:515 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" +"При відключенні, користувачі не зможуть встановити ніякі із зазначених нижче " +"параметрів, незалежно від галочки праворуч від них" #: libraries/config/messages.inc.php:516 msgid "Enable the Developer tab in settings" -msgstr "" +msgstr "Включення вкладки розробника в налаштуваннях" #: libraries/config/messages.inc.php:517 setup/frames/index.inc.php:275 msgid "Check for latest version" -msgstr "" +msgstr "Перевірити оновлення" #: libraries/config/messages.inc.php:518 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" +"Включає можливість перевірки останньої версії phpMyAdmin на головній " +"сторінці" #: libraries/config/messages.inc.php:519 setup/lib/index.lib.php:132 #: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164 @@ -6151,59 +6193,61 @@ msgstr "" #: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202 #: setup/lib/index.lib.php:243 msgid "Version check" -msgstr "" +msgstr "перевірка версії" #: libraries/config/messages.inc.php:520 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:521 msgid "ZIP" -msgstr "" +msgstr "ZIP" #: libraries/config/setup.forms.php:41 msgid "Config authentication" -msgstr "" +msgstr "Авторизація через файл конфігурації" #: 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:247 #: libraries/config/user_preferences.forms.php:151 msgid "CSV using LOAD DATA" -msgstr "" +msgstr "CSV, використовуючи LOAD DATA" #: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 #: libraries/config/user_preferences.forms.php:159 #: libraries/config/user_preferences.forms.php:251 msgid "Open Document Spreadsheet" -msgstr "" +msgstr "Відкрити документ електронної таблиці" #: libraries/config/setup.forms.php:263 #: libraries/config/user_preferences.forms.php:166 msgid "Quick" -msgstr "" +msgstr "Швидко" #: libraries/config/setup.forms.php:267 #: libraries/config/user_preferences.forms.php:170 msgid "Custom" -msgstr "" +msgstr "Звичайно" #: libraries/config/setup.forms.php:288 #: libraries/config/user_preferences.forms.php:190 msgid "Database export options" -msgstr "Налаштування експорту бази даних" +msgstr "Параметри експорту бази даних" #: libraries/config/setup.forms.php:321 #: libraries/config/user_preferences.forms.php:223 @@ -6213,72 +6257,81 @@ msgstr "CSV для даних MS Excel" #: libraries/config/setup.forms.php:344 #: libraries/config/user_preferences.forms.php:246 msgid "Microsoft Word 2000" -msgstr "" +msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:353 #: libraries/config/user_preferences.forms.php:255 msgid "Open Document Text" -msgstr "" +msgstr "OpenDocument текст" #: libraries/config/validate.lib.php:214 msgid "Could not initialize Drizzle connection library" -msgstr "" +msgstr "Неможливо ініціалізувати бібліотеку з'єднання Drizzle" #: libraries/config/validate.lib.php:223 libraries/config/validate.lib.php:231 msgid "Could not connect to Drizzle server" -msgstr "" +msgstr "Не вдалося з'єднатися з сервером Drizzle" #: libraries/config/validate.lib.php:242 libraries/config/validate.lib.php:249 msgid "Could not connect to MySQL server" -msgstr "" +msgstr "Неможливо з'єднатися з сервером MySQL" #: libraries/config/validate.lib.php:282 msgid "Empty username while using config authentication method" msgstr "" +"При використанні ідентифікації по конфігураційному файлу не встановлено ім'я " +"користувача" #: libraries/config/validate.lib.php:289 msgid "Empty signon session name while using signon authentication method" msgstr "" +"При використанні єдиного методу ідентифікації signon не встановлено ім’я " +"сесії" #: libraries/config/validate.lib.php:298 msgid "Empty signon URL while using signon authentication method" msgstr "" +"При використанні єдиного методу ідентифікації signon не встановлений URL" #: libraries/config/validate.lib.php:346 msgid "Empty phpMyAdmin control user while using pmadb" -msgstr "" +msgstr "При використанні pmadb не встановлений керуючий користувач phpMyAdmin" #: libraries/config/validate.lib.php:351 msgid "Empty phpMyAdmin control user password while using pmadb" msgstr "" +"При використанні pmadb не встановлений пароль керуючого користувача " +"phpMyAdmin" #: libraries/config/validate.lib.php:443 #, php-format msgid "Incorrect IP address: %s" -msgstr "" +msgstr "Некоректно введена IP адреса: %s" #: libraries/core.lib.php:290 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." -msgstr "" +msgstr "Розширення %s не знайдено. Будь ласка, перевірте ваші налаштування PHP." #: libraries/core.lib.php:449 msgid "possible deep recursion attack" -msgstr "" +msgstr "можлива атака глибокої рекурсії" #: libraries/database_interface.lib.php:2059 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" +"Сервер не відповідає (або локальний сокет сервера MySQL невірно " +"налаштований)." #: libraries/database_interface.lib.php:2064 msgid "The server is not responding." -msgstr "" +msgstr "Сервер не відповідає." #: libraries/database_interface.lib.php:2069 msgid "Please check privileges of directory containing database." -msgstr "" +msgstr "Будь ласка, перевірте привілеї каталогу містить базу даних." #: libraries/database_interface.lib.php:2079 msgid "Details…" @@ -6295,7 +6348,7 @@ msgstr "" #: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:159 #: libraries/dbi/mysqli.dbi.lib.php:206 msgid "Connection for controluser as defined in your configuration failed." -msgstr "" +msgstr "Помилка при вказуванні з'єднання для controluser в конфігурації." #: libraries/display_change_password.lib.php:53 #: libraries/replication_gui.lib.php:371 @@ -6312,11 +6365,11 @@ msgstr "Підтвердження" #: libraries/display_change_password.lib.php:74 msgid "Password Hashing" -msgstr "" +msgstr "Хешування пароля" #: libraries/display_change_password.lib.php:87 msgid "MySQL 4.0 compatible" -msgstr "" +msgstr "Сумісно з MySQL 4.0" #: libraries/display_create_database.lib.php:21 #: libraries/display_create_database.lib.php:39 @@ -6335,7 +6388,7 @@ msgstr "Без привілеїв" #: libraries/display_create_table.lib.php:46 pmd_general.php:100 msgid "Create table" -msgstr "" +msgstr "Створити таблицю" #: libraries/display_create_table.lib.php:51 #: libraries/plugins/export/ExportHtmlword.class.php:483 @@ -6356,6 +6409,7 @@ msgstr "Число колонок" #: libraries/display_export.lib.php:49 msgid "Could not load export plugins, please check your installation!" msgstr "" +"Відсутні модулі експорту. Перевірте вміст встановленої копії phpMyAdmin!" #: libraries/display_export.lib.php:96 msgid "Exporting databases from the current server" @@ -6377,11 +6431,11 @@ msgstr "Метод Експорту:" #: libraries/display_export.lib.php:122 msgid "Quick - display only the minimal options" -msgstr "" +msgstr "Швидкий - відображати мінімум налаштувань" #: libraries/display_export.lib.php:134 msgid "Custom - display all possible options" -msgstr "" +msgstr "Звичайний - відображати всі можливі настройки" #: libraries/display_export.lib.php:143 msgid "Database(s):" @@ -6397,7 +6451,7 @@ msgstr "Рядки:" #: libraries/display_export.lib.php:162 msgid "Dump some row(s)" -msgstr "" +msgstr "Вивантажити частину рядків" #: libraries/display_export.lib.php:165 msgid "Number of rows:" @@ -6405,15 +6459,15 @@ msgstr "Число рядків:" #: libraries/display_export.lib.php:177 msgid "Row to begin at:" -msgstr "" +msgstr "Почати з рядка:" #: libraries/display_export.lib.php:194 msgid "Dump all rows" -msgstr "" +msgstr "Вивантажити всі рядки" #: libraries/display_export.lib.php:202 libraries/display_export.lib.php:229 msgid "Output:" -msgstr "" +msgstr "Вывод:" #: libraries/display_export.lib.php:211 libraries/display_export.lib.php:248 #, php-format From 837514095bb0129d17a9050609161e6a67be3cd5 Mon Sep 17 00:00:00 2001 From: Petro Lesiuk Date: Mon, 21 Jan 2013 13:40:52 +0100 Subject: [PATCH 64/85] Translated using Weblate (Ukrainian) Currently translated at 63.3% (1644 of 2599) --- po/uk.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/uk.po b/po/uk.po index ff9abdf7db..ee42ebc725 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-01-21 00:59+0100\n" -"PO-Revision-Date: 2013-01-21 13:21+0200\n" +"PO-Revision-Date: 2013-01-21 13:40+0200\n" "Last-Translator: Petro Lesiuk \n" "Language-Team: Ukrainian " "\n" @@ -6484,15 +6484,15 @@ msgstr "Шаблон назви файлу:" #: libraries/display_export.lib.php:267 msgid "@SERVER@ will become the server name" -msgstr "" +msgstr "@SERVER@ буде заміщено іменем сервера" #: libraries/display_export.lib.php:269 msgid ", @DATABASE@ will become the database name" -msgstr "" +msgstr ", @DATABASE@ буде заміщено ім'ям бази даних" #: libraries/display_export.lib.php:271 msgid ", @TABLE@ will become the table name" -msgstr "" +msgstr ", @TABLE@ буде заміщено ім'ям таблиці" #: libraries/display_export.lib.php:276 #, php-format From f1f736b4ba89e0bb2fb9387914b9054c8587b82d Mon Sep 17 00:00:00 2001 From: Petro Lesiuk Date: Mon, 21 Jan 2013 13:40:51 +0100 Subject: [PATCH 65/85] Translated using Weblate (Ukrainian) Currently translated at 66.5% (1705 of 2562) --- po/uk.po | 219 +++++++++++++++++++++++++++++++++++++------------------ 1 file changed, 149 insertions(+), 70 deletions(-) diff --git a/po/uk.po b/po/uk.po index 3de77a5bac..e0241d91a7 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-10-16 14:37+0200\n" -"PO-Revision-Date: 2013-01-20 19:51+0200\n" -"Last-Translator: Andrey Prokopenko \n" +"PO-Revision-Date: 2013-01-21 13:40+0200\n" +"Last-Translator: Petro Lesiuk \n" "Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -3989,7 +3989,7 @@ msgstr "SQL запити" #: libraries/config/messages.inc.php:217 msgid "SQL Query box" -msgstr "SQL Query box" +msgstr "SQL Запит" #: libraries/config/messages.inc.php:218 msgid "Customize links shown in SQL Query boxes" @@ -4616,7 +4616,7 @@ msgstr "Рядок, що відображається при ідентифік #: libraries/config/messages.inc.php:369 msgid "HTTP Realm" -msgstr "HTTP Realm" +msgstr "HTTP область" #: libraries/config/messages.inc.php:370 msgid "" @@ -4813,6 +4813,12 @@ msgid "" "their names in order and use [kbd]*[/kbd] at the end to show the rest in " "alphabetical order." msgstr "" +"Ви можете використовувати підставні символи (% і _), екрануйте їх, якщо " +"хочете використовувати, як звичайні літературні символи, тобто " +"використовуйте [kbd]'my\\_db'[/kbd] а не [kbd]'my_db'[/kbd]. За допомогою " +"даної настройки можна сортувати список баз даних, для чого достатньо ввести " +"їх імена в певному порядку і використовувати [kbd]*[/kbd] в кінці для " +"виведення залишилися в алфавітному порядку." #: libraries/config/messages.inc.php:407 msgid "Show only listed databases" @@ -4830,10 +4836,12 @@ msgstr "Пароль для config auth" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" +"Залишити пустим, якщо немає підтримки PDF схеми, рекомендуєтсья: [kbd] " +"pma_pdf_pages [/kbd]" #: libraries/config/messages.inc.php:411 msgid "PDF schema: pages table" -msgstr "" +msgstr "PDF схема: сторінки таблиці" #: libraries/config/messages.inc.php:412 msgid "" @@ -4841,6 +4849,10 @@ msgid "" "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" +"База даних використовувана для розширених функцій: зв'язків, закладок, і " +"PDF. Для більш повної інформації дивіться " +"[a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a]. Для відключення " +"підтримки, залиште поле порожнім. Рекомендується: [kbd]phpmyadmin[/kbd]" #: libraries/config/messages.inc.php:413 msgid "Database name" @@ -4861,6 +4873,8 @@ msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" +"Для відключення можливості перегляду нещодавно використаних таблиць, залиште " +"поле порожнім. Рекомендується: [kbd]pma_recent[/kbd]" #: libraries/config/messages.inc.php:417 #| msgid "Analyze table" @@ -4872,14 +4886,17 @@ msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" +"Для відключення підтримки " +"[a@http://wiki.phpmyadmin.net/pma/relation]зв'язаних таблиць[/a] залиште " +"поле порожнім. Рекомендується: [kbd] pma_relation [/kbd]" #: libraries/config/messages.inc.php:419 msgid "Relation table" -msgstr "" +msgstr "Таблиця зв'язків" #: libraries/config/messages.inc.php:420 msgid "SQL command to fetch available databases" -msgstr "" +msgstr "SQL команда для вибірки доступних баз даних" #: libraries/config/messages.inc.php:421 msgid "SHOW DATABASES command" @@ -4895,15 +4912,17 @@ msgstr "" #: libraries/config/messages.inc.php:423 msgid "Signon session name" -msgstr "" +msgstr "Ім'я сесії для Signon" #: libraries/config/messages.inc.php:424 msgid "Signon URL" -msgstr "" +msgstr "Signon URL" #: libraries/config/messages.inc.php:425 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" +"Сокет на якому працює сервер MySQL, Для значення за замовчуванням, залиште " +"порожнім." #: libraries/config/messages.inc.php:426 msgid "Server socket" @@ -4921,26 +4940,32 @@ msgstr "Використовувати SSL" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" +"Для відключення підтримки PDF схеми залиште поле порожнім. Рекомендується: " +"[kbd]pma_table_coords[/kbd]" #: libraries/config/messages.inc.php:430 msgid "PDF schema: table coordinates" -msgstr "" +msgstr "PDF схема: координати таблиць" #: libraries/config/messages.inc.php:431 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" +"Таблиця для опису видимих полів. Для відключення підтримки даної функції " +"залиште поле порожнім. Рекомендується: [kbd]pma_table_info[/kbd]" #: libraries/config/messages.inc.php:432 msgid "Display columns table" -msgstr "Показувати колонки таблиці" +msgstr "Таблиця з описами полів" #: libraries/config/messages.inc.php:433 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" +"Для відключення можливості зберігання налаштувань інтерфейсу таблиць, " +"залиште поле порожнім. Рекомендується: [kbd]pma_table_uiprefs[/kbd]" #: libraries/config/messages.inc.php:434 msgid "UI preferences table" @@ -4951,6 +4976,8 @@ msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" +"Чи буде при створенні бази даних, в журнал першим рядком додано вираз DROP " +"DATABASE IF EXISTS." #: libraries/config/messages.inc.php:436 msgid "Add DROP DATABASE" @@ -4961,6 +4988,8 @@ msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" +"Чи буде при створенні бази даних, в журнал першим рядком додано вираз DROP " +"DATABASE IF EXISTS." #: libraries/config/messages.inc.php:438 msgid "Add DROP TABLE" @@ -4971,6 +5000,8 @@ msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" +"Чи буде при створенні вистави, в журнал першим рядком додано вираз DROP VIEW " +"IF EXISTS." #: libraries/config/messages.inc.php:440 msgid "Add DROP VIEW" @@ -4979,16 +5010,20 @@ msgstr "Додати DROP VIEW" #: libraries/config/messages.inc.php:441 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" +"Визначити список виразів, які використовуються для автоматичного створення " +"нових версій." #: libraries/config/messages.inc.php:442 msgid "Statements to track" -msgstr "" +msgstr "Стеження за виразами" #: libraries/config/messages.inc.php:443 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" +"Для відключення підтримки стеження за SQL запитами залиште поле порожнім. " +"Рекомендується: [kbd]pma_tracking[/kbd]" #: libraries/config/messages.inc.php:444 msgid "SQL query tracking table" @@ -5019,7 +5054,7 @@ msgstr "Таблиця збереження налаштувань корист #: libraries/config/messages.inc.php:450 msgid "User for config auth" -msgstr "" +msgstr "Прописаний користувач" #: libraries/config/messages.inc.php:451 msgid "" @@ -5037,7 +5072,7 @@ msgstr "Докладна перевірка" msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." -msgstr "" +msgstr "Користувацький опис сервера. Залиште пустим, щоб вивести назву хоста." #: libraries/config/messages.inc.php:454 msgid "Verbose name of this server" @@ -5057,6 +5092,10 @@ msgid "" "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" +"Будь ласка, зверніть увагу, що включення даного параметра не дасть ефекту " +"при ідентифікації методом [kbd]config[/kbd] через жорстко прописаного " +"пароля. Зміна пароля в конфігураційному файлі безпосередньо ніяк не " +"обмежена." #: libraries/config/messages.inc.php:458 msgid "Show password change form" @@ -5172,19 +5211,24 @@ msgid "" "['LeftFrameTableSeparator'] directive, so only the folder is called like the " "alias, the table name itself stays unchanged" msgstr "" +"При виборі [kbd]nested[/kbd], коментар таблиці буде виведений тільки у " +"кореневого значення, розділених зазначеної в директиві " +"$cfg['LeftFrameTableSeparator'] рядком, таблиць" #: libraries/config/messages.inc.php:480 msgid "Display table comment instead of its name" -msgstr "" +msgstr "Коментар таблиці замість імені" #: libraries/config/messages.inc.php:481 msgid "Display table comments in tooltips" -msgstr "" +msgstr "Коментарі таблиці в спливаючих підказках" #: libraries/config/messages.inc.php:482 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" +"Відзначати використані таблиці і зробити можливим відображення баз даних із " +"заблокованими таблицями" #: libraries/config/messages.inc.php:483 msgid "Skip locked tables" @@ -5221,6 +5265,8 @@ 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 @@ -5232,46 +5278,52 @@ msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" +"Пропонувати ім'я створюваної бази даних за наявності такої можливості, або " +"залишити поле порожнім" #: libraries/config/messages.inc.php:496 msgid "Suggest new database name" -msgstr "" +msgstr "Пропонувати ім'я нової бази даних" #: libraries/config/messages.inc.php:497 msgid "A warning is displayed on the main page if Suhosin is detected" -msgstr "" +msgstr "При визначенні Suhosin, на головній сторінці виводиться попередження" #: libraries/config/messages.inc.php:498 msgid "Suhosin warning" -msgstr "" +msgstr "Попередження про Suhosin" #: libraries/config/messages.inc.php:499 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" +"Розмір текстового поля в режимі редагування (у стовпцях); дане значення буде " +"пріоритетним для текстових полів SQL запиту (*2) і для вікна запиту (*1.25)" #: libraries/config/messages.inc.php:500 msgid "Textarea columns" -msgstr "" +msgstr "Стовпців у текстовому полі" #: libraries/config/messages.inc.php:501 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" +"Розмір текстового поля в режимі редагування (в рядках); дане значення буде " +"пріоритетним для текстових полів SQL запиту (*2) і для вікна запиту (*1.25)" #: libraries/config/messages.inc.php:502 msgid "Textarea rows" -msgstr "" +msgstr "Рядків у текстовому полі" #: libraries/config/messages.inc.php:503 msgid "Title of browser window when a database is selected" -msgstr "" +msgstr "Заголовок вікна браузера при виборі бази даних" #: libraries/config/messages.inc.php:505 msgid "Title of browser window when nothing is selected" -msgstr "" +msgstr "Заголовок вікна браузера за замовчуванням" #: libraries/config/messages.inc.php:506 msgid "Default title" @@ -5279,11 +5331,11 @@ msgstr "Заголовок по замовчуванню" #: libraries/config/messages.inc.php:507 msgid "Title of browser window when a server is selected" -msgstr "" +msgstr "Заголовок вікна браузера при виборі сервера" #: libraries/config/messages.inc.php:509 msgid "Title of browser window when a table is selected" -msgstr "" +msgstr "Заголовок вікна браузера при виборі таблиці" #: libraries/config/messages.inc.php:511 msgid "" @@ -5292,36 +5344,44 @@ msgid "" "For) header coming from the proxy 1.2.3.4:[br][kbd]1.2.3.4: " "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" +"Додайте проксі у вигляді [kbd]IP: довірений HTTP заголовок[/kbd]. Наступний " +"приклад показує, що phpMyAdmin повинен довіряти HTTP_X_FORWARDED_FOR (X" +"-Forwarded-For) заголовку, що прийшов з проксі 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" -msgstr "" +msgstr "Список довірених проксі для IP allow/deny" #: libraries/config/messages.inc.php:513 msgid "Directory on server where you can upload files for import" msgstr "" +"Каталог на сервері, в який ви можете завантажувати файли для подальшого " +"імпорту" #: libraries/config/messages.inc.php:514 msgid "Upload directory" -msgstr "" +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 "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" +"При відключенні, користувачі не зможуть встановити ніякі із зазначених нижче " +"параметрів, незалежно від галочки праворуч від них" #: libraries/config/messages.inc.php:518 msgid "Enable the Developer tab in settings" -msgstr "" +msgstr "Включення вкладки розробника в налаштуваннях" #: libraries/config/messages.inc.php:519 msgid "" @@ -5329,18 +5389,23 @@ 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" -msgstr "" +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" msgstr "" +"Включає можливість перевірки останньої версії phpMyAdmin на головній " +"сторінці" #: libraries/config/messages.inc.php:523 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 @@ -5348,60 +5413,62 @@ msgstr "" #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 #: setup/lib/index.lib.php:224 msgid "Version check" -msgstr "" +msgstr "перевірка версії" #: libraries/config/messages.inc.php:524 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 "Авторизація через файл конфігурації" #: 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 msgid "CSV using LOAD DATA" -msgstr "" +msgstr "CSV, використовуючи LOAD DATA" #: libraries/config/setup.forms.php:260 libraries/config/setup.forms.php:353 #: libraries/config/user_preferences.forms.php:159 #: libraries/config/user_preferences.forms.php:251 libraries/export/ods.php:18 #: libraries/import/ods.php:29 msgid "Open Document Spreadsheet" -msgstr "" +msgstr "Відкрити документ електронної таблиці" #: libraries/config/setup.forms.php:267 #: libraries/config/user_preferences.forms.php:166 msgid "Quick" -msgstr "" +msgstr "Швидко" #: libraries/config/setup.forms.php:271 #: libraries/config/user_preferences.forms.php:170 msgid "Custom" -msgstr "" +msgstr "Звичайно" #: libraries/config/setup.forms.php:292 #: libraries/config/user_preferences.forms.php:190 msgid "Database export options" -msgstr "Налаштування експорту бази даних" +msgstr "Параметри експорту бази даних" #: libraries/config/setup.forms.php:325 #: libraries/config/user_preferences.forms.php:223 @@ -5413,81 +5480,90 @@ msgstr "CSV для даних MS Excel" #: libraries/config/user_preferences.forms.php:246 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" -msgstr "" +msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:357 #: libraries/config/user_preferences.forms.php:255 libraries/export/odt.php:22 msgid "Open Document Text" -msgstr "" +msgstr "OpenDocument текст" #: 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 "" +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 "" +"При використанні ідентифікації по конфігураційному файлу не встановлено ім'я " +"користувача" #: libraries/config/validate.lib.php:258 msgid "Empty signon session name while using signon authentication method" msgstr "" +"При використанні єдиного методу ідентифікації signon не встановлено ім’я " +"сесії" #: libraries/config/validate.lib.php:262 msgid "Empty signon URL while using signon authentication method" msgstr "" +"При використанні єдиного методу ідентифікації 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" #: libraries/core.lib.php:268 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." -msgstr "" +msgstr "Розширення %s не знайдено. Будь ласка, перевірте ваші налаштування PHP." #: libraries/core.lib.php:416 msgid "possible deep recursion attack" -msgstr "" +msgstr "можлива атака глибокої рекурсії" #: libraries/database_interface.lib.php:1813 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" +"Сервер не відповідає (або локальний сокет сервера MySQL невірно " +"налаштований)." #: libraries/database_interface.lib.php:1816 msgid "The server is not responding." -msgstr "" +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..." -msgstr "" +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 @@ -5500,7 +5576,7 @@ msgstr "Запит згідно прикладу" #: libraries/db_links.inc.php:75 libraries/relation.lib.php:132 msgid "Designer" -msgstr "" +msgstr "Дизайнер" #: libraries/db_links.inc.php:92 server_privileges.php:121 #: server_privileges.php:1900 server_privileges.php:2259 @@ -5527,11 +5603,13 @@ msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" +"Може бути приблизно. Дивіться " +"[a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]" #: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117 #: libraries/dbi/mysqli.dbi.lib.php:189 msgid "Connection for controluser as defined in your configuration failed." -msgstr "" +msgstr "Помилка при вказуванні з'єднання для controluser в конфігурації." #: libraries/display_change_password.lib.php:29 main.php:94 #: user_password.php:105 user_password.php:123 @@ -5551,11 +5629,11 @@ msgstr "Підтвердження" #: libraries/display_change_password.lib.php:51 msgid "Password Hashing" -msgstr "" +msgstr "Хешування пароля" #: libraries/display_change_password.lib.php:65 msgid "MySQL 4.0 compatible" -msgstr "" +msgstr "Сумісно з MySQL 4.0" #: libraries/display_create_database.lib.php:21 #: libraries/display_create_database.lib.php:39 @@ -5575,7 +5653,7 @@ msgstr "Без привілеїв" #: libraries/display_create_table.lib.php:46 pmd_general.php:71 #: server_synchronize.php:442 server_synchronize.php:914 msgid "Create table" -msgstr "" +msgstr "Створити таблицю" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 @@ -5592,6 +5670,7 @@ msgstr "Число колонок" #: libraries/display_export.lib.php:37 msgid "Could not load export plugins, please check your installation!" msgstr "" +"Відсутні модулі експорту. Перевірте вміст встановленої копії phpMyAdmin!" #: libraries/display_export.lib.php:82 msgid "Exporting databases from the current server" @@ -5613,11 +5692,11 @@ msgstr "Метод Експорту:" #: libraries/display_export.lib.php:108 msgid "Quick - display only the minimal options" -msgstr "" +msgstr "Швидкий - відображати мінімум налаштувань" #: libraries/display_export.lib.php:124 msgid "Custom - display all possible options" -msgstr "" +msgstr "Звичайний - відображати всі можливі настройки" #: libraries/display_export.lib.php:132 msgid "Database(s):" @@ -5633,7 +5712,7 @@ msgstr "Рядки:" #: libraries/display_export.lib.php:152 msgid "Dump some row(s)" -msgstr "" +msgstr "Вивантажити частину рядків" #: libraries/display_export.lib.php:154 msgid "Number of rows:" @@ -5641,15 +5720,15 @@ msgstr "Число рядків:" #: libraries/display_export.lib.php:157 msgid "Row to begin at:" -msgstr "" +msgstr "Почати з рядка:" #: libraries/display_export.lib.php:168 msgid "Dump all rows" -msgstr "" +msgstr "Вивантажити всі рядки" #: libraries/display_export.lib.php:176 libraries/display_export.lib.php:197 msgid "Output:" -msgstr "" +msgstr "Вывод:" #: libraries/display_export.lib.php:183 libraries/display_export.lib.php:209 #, php-format @@ -5666,15 +5745,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 #, php-format From 14ef5901f4a3f483e0b2ebe44e6c738240181df7 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Mon, 21 Jan 2013 08:12:40 -0500 Subject: [PATCH 66/85] Regroup all AJAX.registerOnload() and AJAX.registerTeardown() sections at top of file --- js/tbl_structure.js | 105 +++++++++++++++++++++----------------------- 1 file changed, 49 insertions(+), 56 deletions(-) diff --git a/js/tbl_structure.js b/js/tbl_structure.js index 91e7a16ee3..5f622be577 100644 --- a/js/tbl_structure.js +++ b/js/tbl_structure.js @@ -30,9 +30,58 @@ AJAX.registerTeardown('tbl_structure.js', function() { $("#table_index tbody tr td.edit_index.ajax, #indexes .add_index.ajax").die('click'); $('#index_frm input[type=submit]').die('click'); $("#move_columns_anchor").die('click'); + $(".append_fields_form.ajax").unbind('submit'); }); AJAX.registerOnload('tbl_structure.js', function() { + + /** + *Ajax action for submitting the "Column Change" and "Add Column" form + */ + $(".append_fields_form.ajax").bind('submit', function(event) { + event.preventDefault(); + /** + * @var the_form object referring to the export form + */ + var $form = $(this); + + /* + * First validate the form; if there is a problem, avoid submitting it + * + * checkTableEditForm() needs a pure element and not a jQuery object, + * this is why we pass $form[0] as a parameter (the jQuery object + * is actually an array of DOM elements) + */ + if (checkTableEditForm($form[0], $form.find('input[name=orig_num_fields]').val())) { + // OK, form passed validation step + PMA_prepareForAjaxRequest($form); + //User wants to submit the form + PMA_ajaxShowMessage(); + $.post($form.attr('action'), $form.serialize() + '&do_save_data=1', function(data) { + if ($("#sqlqueryresults").length != 0) { + $("#sqlqueryresults").remove(); + } else if ($(".error").length != 0) { + $(".error").remove(); + } + if (data.success == true) { + $("
").prependTo("#page_content"); + $("#sqlqueryresults").html(data.sql_query); + $("#result_query .notice").remove(); + $("#result_query").prepend(data.message); + /* Reload the field form */ + if ($("#fieldsForm").length) { + reloadFieldForm(data.message); + } else { + PMA_ajaxShowMessage(data.message); + } + PMA_reloadNavigation(); + } else { + PMA_ajaxShowMessage(data.error, false); + } + }); // end $.post() + } + }); // end change table button "do_save_data" + /** * Attach Event Handler for 'Change Column' */ @@ -374,62 +423,6 @@ AJAX.registerOnload('tbl_structure.js', function() { }); }); -/** - * jQuery coding for 'Change Table' and 'Add Column'. - * Attach Ajax Event handlers for Change Table - */ -AJAX.registerTeardown('tbl_structure.js', function() { - $(".append_fields_form.ajax").unbind('submit'); -}); -AJAX.registerOnload('tbl_structure.js', function() { - /** - *Ajax action for submitting the "Column Change" and "Add Column" form - */ - $(".append_fields_form.ajax").bind('submit', function(event) { - event.preventDefault(); - /** - * @var the_form object referring to the export form - */ - var $form = $(this); - - /* - * First validate the form; if there is a problem, avoid submitting it - * - * checkTableEditForm() needs a pure element and not a jQuery object, - * this is why we pass $form[0] as a parameter (the jQuery object - * is actually an array of DOM elements) - */ - if (checkTableEditForm($form[0], $form.find('input[name=orig_num_fields]').val())) { - // OK, form passed validation step - PMA_prepareForAjaxRequest($form); - //User wants to submit the form - PMA_ajaxShowMessage(); - $.post($form.attr('action'), $form.serialize() + '&do_save_data=1', function(data) { - if ($("#sqlqueryresults").length != 0) { - $("#sqlqueryresults").remove(); - } else if ($(".error").length != 0) { - $(".error").remove(); - } - if (data.success == true) { - $("
").prependTo("#page_content"); - $("#sqlqueryresults").html(data.sql_query); - $("#result_query .notice").remove(); - $("#result_query").prepend(data.message); - /* Reload the field form */ - if ($("#fieldsForm").length) { - reloadFieldForm(data.message); - } else { - PMA_ajaxShowMessage(data.message); - } - PMA_reloadNavigation(); - } else { - PMA_ajaxShowMessage(data.error, false); - } - }); // end $.post() - } - }); // end change table button "do_save_data" -}); - /** * Reload fields table */ From d4b906bfa4252d4555ca7a5a0249743b0c66dbbd Mon Sep 17 00:00:00 2001 From: Rostyslav Gaitkulov Date: Mon, 21 Jan 2013 14:12:19 +0100 Subject: [PATCH 67/85] Translated using Weblate (Ukrainian) Currently translated at 63.3% (1646 of 2599) --- po/uk.po | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/po/uk.po b/po/uk.po index ee42ebc725..614bd3cd6f 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-01-21 00:59+0100\n" -"PO-Revision-Date: 2013-01-21 13:40+0200\n" -"Last-Translator: Petro Lesiuk \n" +"PO-Revision-Date: 2013-01-21 14:12+0200\n" +"Last-Translator: Rostyslav Gaitkulov \n" "Language-Team: Ukrainian " "\n" "Language: uk\n" @@ -6504,7 +6504,7 @@ msgstr "" #: libraries/display_export.lib.php:329 msgid "use this for future exports" -msgstr "" +msgstr "використовувати для майбутнього експорту" #: libraries/display_export.lib.php:335 libraries/display_import.lib.php:255 #: libraries/display_import.lib.php:269 libraries/sql_query_form.lib.php:480 @@ -6528,10 +6528,9 @@ msgid "bzipped" msgstr "стиснено в \"bzip\"" #: libraries/display_export.lib.php:408 -#, fuzzy #| msgid "Save output to a file" msgid "View output as text" -msgstr "Зберегти вивід у файл" +msgstr "Відобразити вивід як текст" #: libraries/display_export.lib.php:413 libraries/display_import.lib.php:312 #: libraries/plugins/export/ExportCodegen.class.php:107 From ee42a2267a6daf4904d14a6c42506578d1a2da2e Mon Sep 17 00:00:00 2001 From: Rostyslav Gaitkulov Date: Mon, 21 Jan 2013 14:13:57 +0100 Subject: [PATCH 68/85] Translated using Weblate (Ukrainian) Currently translated at 66.7% (1709 of 2562) --- po/uk.po | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/po/uk.po b/po/uk.po index e0241d91a7..e036e20b38 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.4-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-10-16 14:37+0200\n" -"PO-Revision-Date: 2013-01-21 13:40+0200\n" -"Last-Translator: Petro Lesiuk \n" +"PO-Revision-Date: 2013-01-21 14:13+0200\n" +"Last-Translator: Rostyslav Gaitkulov \n" "Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -5765,7 +5765,7 @@ msgstr "" #: libraries/display_export.lib.php:270 msgid "use this for future exports" -msgstr "" +msgstr "використовувати для майбутнього експорту" #: libraries/display_export.lib.php:276 libraries/display_import.lib.php:188 #: libraries/display_import.lib.php:201 libraries/sql_query_form.lib.php:468 @@ -5789,10 +5789,9 @@ msgid "bzipped" msgstr "стиснено в \"bzip\"" #: libraries/display_export.lib.php:323 -#, fuzzy #| msgid "Save output to a file" msgid "View output as text" -msgstr "Зберегти вивід у файл" +msgstr "Відобразити вивід як текст" #: libraries/display_export.lib.php:328 libraries/display_import.lib.php:244 #: libraries/export/codegen.php:38 @@ -5809,10 +5808,12 @@ 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 msgid "Encoding Conversion:" -msgstr "" +msgstr "Зміна кодування:" #: libraries/display_import.lib.php:66 msgid "" From ee3d2d1d000c2d616e60516f6042a4df73f9203b Mon Sep 17 00:00:00 2001 From: Rostyslav Gaitkulov Date: Mon, 21 Jan 2013 14:13:58 +0100 Subject: [PATCH 69/85] Translated using Weblate (Ukrainian) Currently translated at 63.4% (1648 of 2599) --- po/uk.po | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/po/uk.po b/po/uk.po index 614bd3cd6f..f9560ba7b3 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-01-21 00:59+0100\n" -"PO-Revision-Date: 2013-01-21 14:12+0200\n" +"PO-Revision-Date: 2013-01-21 14:13+0200\n" "Last-Translator: Rostyslav Gaitkulov \n" "Language-Team: Ukrainian " "\n" @@ -6546,10 +6546,12 @@ 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:429 libraries/display_import.lib.php:327 msgid "Encoding Conversion:" -msgstr "" +msgstr "Зміна кодування:" #: libraries/display_git_revision.lib.php:56 #, php-format From 49cbba4bf4654d5bf23aa1c1a8112daf5c1dc1e9 Mon Sep 17 00:00:00 2001 From: Dieter Adriaenssens Date: Mon, 21 Jan 2013 13:42:06 +0100 Subject: [PATCH 70/85] improve coding style --- libraries/Footer.class.php | 3 ++- libraries/pmd_common.php | 5 +---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/libraries/Footer.class.php b/libraries/Footer.class.php index f12dce913b..a0d14ad525 100644 --- a/libraries/Footer.class.php +++ b/libraries/Footer.class.php @@ -246,7 +246,8 @@ class PMA_Footer $header = PMA_Response::getInstance()->getHeader(); $scripts = $header->getScripts()->getFiles(); $menuHash = $header->getMenu()->getHash(); - $this->_scripts->addCode( // prime the client-side cache + // prime the client-side cache + $this->_scripts->addCode( sprintf( 'AJAX.cache.primer = {' . ' url: "%s",' diff --git a/libraries/pmd_common.php b/libraries/pmd_common.php index ec02546ed3..ef4e633885 100644 --- a/libraries/pmd_common.php +++ b/libraries/pmd_common.php @@ -192,10 +192,7 @@ function get_script_tabs() for ($i = 0, $cnt = count($GLOBALS['PMD']['TABLE_NAME']); $i < $cnt; $i++) { $j = 0; - if (PMA_Util::isForeignKeySupported( - $GLOBALS['PMD']['TABLE_TYPE'][$i] - ) - ) { + if (PMA_Util::isForeignKeySupported($GLOBALS['PMD']['TABLE_TYPE'][$i])) { $j = 1; } $retval['j_tabs'][$GLOBALS['PMD_URL']['TABLE_NAME'][$i]] = $j; From f46687f8a197a486c72e2ce9dad0e2ca1f4c7e4c Mon Sep 17 00:00:00 2001 From: Dieter Adriaenssens Date: Mon, 21 Jan 2013 13:51:12 +0100 Subject: [PATCH 71/85] wrap long lines --- libraries/pmd_common.php | 54 ++++++++++++++++++++++++++++++---------- 1 file changed, 41 insertions(+), 13 deletions(-) diff --git a/libraries/pmd_common.php b/libraries/pmd_common.php index ef4e633885..ea6afc241e 100644 --- a/libraries/pmd_common.php +++ b/libraries/pmd_common.php @@ -31,17 +31,26 @@ function get_tables_info() PMA_DBI_select_db($GLOBALS['db']); $i = 0; foreach ($tables as $one_table) { - $GLOBALS['PMD']['TABLE_NAME'][$i] = $GLOBALS['db'] . "." . $one_table['TABLE_NAME']; + $GLOBALS['PMD']['TABLE_NAME'][$i] + = $GLOBALS['db'] . "." . $one_table['TABLE_NAME']; $GLOBALS['PMD']['OWNER'][$i] = $GLOBALS['db']; $GLOBALS['PMD']['TABLE_NAME_SMALL'][$i] = $one_table['TABLE_NAME']; - $GLOBALS['PMD_URL']['TABLE_NAME'][$i] = urlencode($GLOBALS['db'] . "." . $one_table['TABLE_NAME']); + $GLOBALS['PMD_URL']['TABLE_NAME'][$i] + = urlencode($GLOBALS['db'] . "." . $one_table['TABLE_NAME']); $GLOBALS['PMD_URL']['OWNER'][$i] = urlencode($GLOBALS['db']); - $GLOBALS['PMD_URL']['TABLE_NAME_SMALL'][$i] = urlencode($one_table['TABLE_NAME']); + $GLOBALS['PMD_URL']['TABLE_NAME_SMALL'][$i] + = urlencode($one_table['TABLE_NAME']); - $GLOBALS['PMD_OUT']['TABLE_NAME'][$i] = htmlspecialchars($GLOBALS['db'] . "." . $one_table['TABLE_NAME'], ENT_QUOTES); - $GLOBALS['PMD_OUT']['OWNER'][$i] = htmlspecialchars($GLOBALS['db'], ENT_QUOTES); - $GLOBALS['PMD_OUT']['TABLE_NAME_SMALL'][$i] = htmlspecialchars($one_table['TABLE_NAME'], ENT_QUOTES); + $GLOBALS['PMD_OUT']['TABLE_NAME'][$i] = htmlspecialchars( + $GLOBALS['db'] . "." . $one_table['TABLE_NAME'], ENT_QUOTES + ); + $GLOBALS['PMD_OUT']['OWNER'][$i] = htmlspecialchars( + $GLOBALS['db'], ENT_QUOTES + ); + $GLOBALS['PMD_OUT']['TABLE_NAME_SMALL'][$i] = htmlspecialchars( + $one_table['TABLE_NAME'], ENT_QUOTES + ); $GLOBALS['PMD']['TABLE_TYPE'][$i] = strtoupper($one_table['ENGINE']); @@ -66,7 +75,16 @@ function get_columns_info() PMA_DBI_select_db($GLOBALS['db']); $tab_column = array(); for ($i = 0, $cnt = count($GLOBALS['PMD']["TABLE_NAME"]); $i < $cnt; $i++) { - $fields_rs = PMA_DBI_query(PMA_DBI_get_columns_sql($GLOBALS['db'], $GLOBALS['PMD']["TABLE_NAME_SMALL"][$i], null, true), null, PMA_DBI_QUERY_STORE); + $fields_rs = PMA_DBI_query( + PMA_DBI_get_columns_sql( + $GLOBALS['db'], + $GLOBALS['PMD']["TABLE_NAME_SMALL"][$i], + null, + true + ), + null, + PMA_DBI_QUERY_STORE + ); $j = 0; while ($row = PMA_DBI_fetch_assoc($fields_rs)) { $tab_column[$GLOBALS['PMD']['TABLE_NAME'][$i]]['COLUMN_ID'][$j] = $j; @@ -89,7 +107,11 @@ function get_script_contr() PMA_DBI_select_db($GLOBALS['db']); $con["C_NAME"] = array(); $i = 0; - $alltab_rs = PMA_DBI_query('SHOW TABLES FROM ' . PMA_Util::backquote($GLOBALS['db']), null, PMA_DBI_QUERY_STORE); + $alltab_rs = PMA_DBI_query( + 'SHOW TABLES FROM ' . PMA_Util::backquote($GLOBALS['db']), + null, + PMA_DBI_QUERY_STORE + ); while ($val = @PMA_DBI_fetch_row($alltab_rs)) { $row = PMA_getForeigners($GLOBALS['db'], $val[0], '', 'internal'); //echo "
internal ".$GLOBALS['db']." - ".$val[0]." - "; @@ -99,7 +121,9 @@ function get_script_contr() $con['C_NAME'][$i] = ''; $con['DTN'][$i] = urlencode($GLOBALS['db'] . "." . $val[0]); $con['DCN'][$i] = urlencode($field); - $con['STN'][$i] = urlencode($value['foreign_db'] . "." . $value['foreign_table']); + $con['STN'][$i] = urlencode( + $value['foreign_db'] . "." . $value['foreign_table'] + ); $con['SCN'][$i] = urlencode($value['foreign_field']); $i++; } @@ -112,7 +136,9 @@ function get_script_contr() $con['C_NAME'][$i] = ''; $con['DTN'][$i] = urlencode($GLOBALS['db'].".".$val[0]); $con['DCN'][$i] = urlencode($field); - $con['STN'][$i] = urlencode($value['foreign_db'].".".$value['foreign_table']); + $con['STN'][$i] = urlencode( + $value['foreign_db'].".".$value['foreign_table'] + ); $con['SCN'][$i] = urlencode($value['foreign_field']); $i++; } @@ -218,9 +244,11 @@ function get_tab_pos() `y` AS `Y`, `v` AS `V`, `h` AS `H` - FROM " . PMA_Util::backquote($cfgRelation['db']) . "." . PMA_Util::backquote($cfgRelation['designer_coords']); - $tab_pos = PMA_DBI_fetch_result($query, 'name', null, $GLOBALS['controllink'], PMA_DBI_QUERY_STORE); + FROM " . PMA_Util::backquote($cfgRelation['db']) + . "." . PMA_Util::backquote($cfgRelation['designer_coords']); + $tab_pos = PMA_DBI_fetch_result( + $query, 'name', null, $GLOBALS['controllink'], PMA_DBI_QUERY_STORE + ); return count($tab_pos) ? $tab_pos : null; } - ?> From db137d9a7d5445ae492e0a577c795cfd7fc4441a Mon Sep 17 00:00:00 2001 From: Dieter Adriaenssens Date: Mon, 21 Jan 2013 13:57:22 +0100 Subject: [PATCH 72/85] improve docblocks --- libraries/pmd_common.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/libraries/pmd_common.php b/libraries/pmd_common.php index ea6afc241e..13a34d71c5 100644 --- a/libraries/pmd_common.php +++ b/libraries/pmd_common.php @@ -17,6 +17,7 @@ $cfgRelation = PMA_getRelationsParam(); /** * retrieves table info and stores it in $GLOBALS['PMD'] * + * @return array with table info */ function get_tables_info() { @@ -165,6 +166,8 @@ function get_script_contr() } /** + * Returns UNIQUE and PRIMARY indices + * * @return array unique or primary indizes */ function get_pk_or_unique_keys() @@ -175,7 +178,7 @@ function get_pk_or_unique_keys() /** * returns all indices * - * @param boolean whether to include ony unique ones + * @param bool $unique_only whether to include ony unique ones * * @return array indices */ @@ -228,7 +231,9 @@ function get_script_tabs() } /** - * @return array table positions and sizes + * Returns table position + * + * @return array table positions and sizes */ function get_tab_pos() { From 1fda806175de6fa4eb622c2ee3dacea48ec8cdc8 Mon Sep 17 00:00:00 2001 From: Dieter Adriaenssens Date: Mon, 21 Jan 2013 13:59:13 +0100 Subject: [PATCH 73/85] fix typos --- libraries/pmd_common.php | 4 ++-- libraries/tbl_columns_definition_form.inc.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/pmd_common.php b/libraries/pmd_common.php index 13a34d71c5..1710c7d7bf 100644 --- a/libraries/pmd_common.php +++ b/libraries/pmd_common.php @@ -168,7 +168,7 @@ function get_script_contr() /** * Returns UNIQUE and PRIMARY indices * - * @return array unique or primary indizes + * @return array unique or primary indices */ function get_pk_or_unique_keys() { @@ -178,7 +178,7 @@ function get_pk_or_unique_keys() /** * returns all indices * - * @param bool $unique_only whether to include ony unique ones + * @param bool $unique_only whether to include only unique ones * * @return array indices */ diff --git a/libraries/tbl_columns_definition_form.inc.php b/libraries/tbl_columns_definition_form.inc.php index 61797e87e4..74a0bdc16a 100644 --- a/libraries/tbl_columns_definition_form.inc.php +++ b/libraries/tbl_columns_definition_form.inc.php @@ -180,7 +180,7 @@ if ($cfgRelation['mimework'] && $GLOBALS['cfg']['BrowseMIME']) { ); } -// workaround for field_fulltext, because its submitted indizes contain +// workaround for field_fulltext, because its submitted indices contain // the index as a value, not a key. Inserted here for easier maintaineance // and less code to change in existing files. if (isset($field_fulltext) && is_array($field_fulltext)) { From b24f2bf93fde100fce6b75557949c30e9c0fbde8 Mon Sep 17 00:00:00 2001 From: Dieter Adriaenssens Date: Mon, 21 Jan 2013 14:06:49 +0100 Subject: [PATCH 74/85] refactoring : use temporary variable to reduce array-structure length --- libraries/pmd_common.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/libraries/pmd_common.php b/libraries/pmd_common.php index 1710c7d7bf..b37c10ee9c 100644 --- a/libraries/pmd_common.php +++ b/libraries/pmd_common.php @@ -86,12 +86,13 @@ function get_columns_info() null, PMA_DBI_QUERY_STORE ); + $tbl_name = $GLOBALS['PMD']['TABLE_NAME'][$i]; $j = 0; while ($row = PMA_DBI_fetch_assoc($fields_rs)) { - $tab_column[$GLOBALS['PMD']['TABLE_NAME'][$i]]['COLUMN_ID'][$j] = $j; - $tab_column[$GLOBALS['PMD']['TABLE_NAME'][$i]]['COLUMN_NAME'][$j] = $row['Field']; - $tab_column[$GLOBALS['PMD']['TABLE_NAME'][$i]]['TYPE'][$j] = $row['Type']; - $tab_column[$GLOBALS['PMD']['TABLE_NAME'][$i]]['NULLABLE'][$j] = $row['Null']; + $tab_column[$tbl_name]['COLUMN_ID'][$j] = $j; + $tab_column[$tbl_name]['COLUMN_NAME'][$j] = $row['Field']; + $tab_column[$tbl_name]['TYPE'][$j] = $row['Type']; + $tab_column[$tbl_name]['NULLABLE'][$j] = $row['Null']; $j++; } } From 044f54dbdfda6bc90ca24583562776d1406f5907 Mon Sep 17 00:00:00 2001 From: Dieter Adriaenssens Date: Mon, 21 Jan 2013 14:17:29 +0100 Subject: [PATCH 75/85] refactoring : use temporary variables to reduce array-structure length --- libraries/pmd_common.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/libraries/pmd_common.php b/libraries/pmd_common.php index b37c10ee9c..02fd2b5d79 100644 --- a/libraries/pmd_common.php +++ b/libraries/pmd_common.php @@ -150,13 +150,15 @@ function get_script_contr() $ti = 0; $retval = array(); for ($i = 0, $cnt = count($con["C_NAME"]); $i < $cnt; $i++) { + $c_name_i = $con['C_NAME'][$i]; + $dtn_i = $con['DTN'][$i]; $retval[$ti] = array(); - $retval[$ti][$con['C_NAME'][$i]] = array(); - if (in_array($con['DTN'][$i], $GLOBALS['PMD_URL']["TABLE_NAME"]) + $retval[$ti][$c_name_i] = array(); + if (in_array($dtn_i, $GLOBALS['PMD_URL']["TABLE_NAME"]) && in_array($con['STN'][$i], $GLOBALS['PMD_URL']["TABLE_NAME"]) ) { - $retval[$ti][$con['C_NAME'][$i]][$con['DTN'][$i]] = array(); - $retval[$ti][$con['C_NAME'][$i]][$con['DTN'][$i]][$con['DCN'][$i]] = array( + $retval[$ti][$c_name_i][$dtn_i] = array(); + $retval[$ti][$c_name_i][$dtn_i][$con['DCN'][$i]] = array( 0 => $con['STN'][$i], 1 => $con['SCN'][$i] ); From 75e7e9eebc6c37411ec35e2ac904268c68a25a2b Mon Sep 17 00:00:00 2001 From: Dieter Adriaenssens Date: Mon, 21 Jan 2013 14:21:47 +0100 Subject: [PATCH 76/85] rename variable --- libraries/pmd_common.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libraries/pmd_common.php b/libraries/pmd_common.php index 02fd2b5d79..5bf7c58bbe 100644 --- a/libraries/pmd_common.php +++ b/libraries/pmd_common.php @@ -86,13 +86,13 @@ function get_columns_info() null, PMA_DBI_QUERY_STORE ); - $tbl_name = $GLOBALS['PMD']['TABLE_NAME'][$i]; + $tbl_name_i = $GLOBALS['PMD']['TABLE_NAME'][$i]; $j = 0; while ($row = PMA_DBI_fetch_assoc($fields_rs)) { - $tab_column[$tbl_name]['COLUMN_ID'][$j] = $j; - $tab_column[$tbl_name]['COLUMN_NAME'][$j] = $row['Field']; - $tab_column[$tbl_name]['TYPE'][$j] = $row['Type']; - $tab_column[$tbl_name]['NULLABLE'][$j] = $row['Null']; + $tab_column[$tbl_name_i]['COLUMN_ID'][$j] = $j; + $tab_column[$tbl_name_i]['COLUMN_NAME'][$j] = $row['Field']; + $tab_column[$tbl_name_i]['TYPE'][$j] = $row['Type']; + $tab_column[$tbl_name_i]['NULLABLE'][$j] = $row['Null']; $j++; } } From 397e2a8fe71770a7ba7a94abc77e943f48e97f21 Mon Sep 17 00:00:00 2001 From: Petro Lesiuk Date: Mon, 21 Jan 2013 14:20:33 +0100 Subject: [PATCH 77/85] Translated using Weblate (Ukrainian) Currently translated at 63.5% (1650 of 2599) --- po/uk.po | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/po/uk.po b/po/uk.po index f9560ba7b3..c9ec54afc4 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-01-21 00:59+0100\n" -"PO-Revision-Date: 2013-01-21 14:13+0200\n" -"Last-Translator: Rostyslav Gaitkulov \n" +"PO-Revision-Date: 2013-01-21 14:20+0200\n" +"Last-Translator: Petro Lesiuk \n" "Language-Team: Ukrainian " "\n" "Language: uk\n" @@ -6501,6 +6501,10 @@ msgid "" "formatting strings. Additionally the following transformations will happen: " "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" +"Значення обробляється функцією %1$sstrftime%2$s, завдяки чому можлива " +"вставка поточної дати і часу. Додатково можуть бути використані наступні " +"підстановки: %3$s. Решта тексту залишиться без змін. Подробиці дивіться у %" +"4$sFAQ%5$s." #: libraries/display_export.lib.php:329 msgid "use this for future exports" @@ -6584,6 +6588,9 @@ msgid "" "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" +"Ймовірно, завантажуваний файл має більший розмір, ніж максимально допустимо, " +"або помилка пов’язана з використанням веб-орієнтованих браузерів (Safari, " +"Google Chrome, Arora та ін.)." #: libraries/display_import.lib.php:77 #, php-format From c1b00661d450e172160445201fcc0e5097c7d55a Mon Sep 17 00:00:00 2001 From: Rouslan Placella Date: Mon, 21 Jan 2013 13:07:25 +0000 Subject: [PATCH 78/85] Dropped custom enum/set parser. Fixes bug #3779 --- ChangeLog | 1 + libraries/common.lib.php | 60 ++++++---------------------------------- tbl_change.php | 2 -- 3 files changed, 9 insertions(+), 54 deletions(-) diff --git a/ChangeLog b/ChangeLog index c0367cfd1c..9bf52bbc9f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ phpMyAdmin - ChangeLog ====================== 3.5.7.0 (not yet released) +- bug #3779 [core] Problem with backslash in enum fields 3.5.6.0 (not yet released) - bug #3593604 [status] Erroneous advisor rule diff --git a/libraries/common.lib.php b/libraries/common.lib.php index 73beaf6e24..376b6a7e95 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -2927,57 +2927,7 @@ function PMA_extractFieldSpec($fieldspec) if ('enum' == $type || 'set' == $type) { // Define our working vars - $enum_set_values = array(); - $working = ""; - $in_string = false; - $index = 0; - - // While there is another character to process - while (isset($fieldspec[$index])) { - // Grab the char to look at - $char = $fieldspec[$index]; - - // If it is a single quote, needs to be handled specially - if ($char == "'") { - // If we are not currently in a string, begin one - if (! $in_string) { - $in_string = true; - $working = ""; - } else { - // Otherwise, it may be either an end of a string, - // or a 'double quote' which can be handled as-is - // Check out the next character (if possible) - $has_next = isset($fieldspec[$index + 1]); - $next = $has_next ? $fieldspec[$index + 1] : null; - - //If we have reached the end of our 'working' string (because - //there are no more chars,or the next char is not another quote) - if (! $has_next || $next != "'") { - $enum_set_values[] = $working; - $in_string = false; - - } elseif ($next == "'") { - // Otherwise, this is a 'double quote', - // and can be added to the working string - $working .= "'"; - // Skip the next char; we already know what it is - $index++; - } - } - } elseif ('\\' == $char - && isset($fieldspec[$index + 1]) - && "'" == $fieldspec[$index + 1] - ) { - // escaping of a quote? - $working .= "'"; - $index++; - } else { - // Otherwise, add it to our working string like normal - $working .= $char; - } - // Increment character index - $index++; - } // end while + $enum_set_values = PMA_parseEnumSetValues($fieldspec, false); $printtype = $type . '(' . str_replace("','", "', '", $spec_in_brackets) . ')'; $binary = false; $unsigned = false; @@ -3843,10 +3793,11 @@ function PMA_printButton() * * @param string $definition The definition of the column * for which to parse the values + * @param bool $escapeHtml Whether to escape html entitites * * @return array */ -function PMA_parseEnumSetValues($definition) +function PMA_parseEnumSetValues($definition, $escapeHtml = true) { $values_string = htmlentities($definition); // There is a JS port of the below parser in functions.js @@ -3878,6 +3829,11 @@ function PMA_parseEnumSetValues($definition) // The leftovers in the buffer are the last value (if any) $values[] = $buffer; } + if (! $escapeHtml) { + foreach ($values as $key => $value) { + $values[$key] = html_entity_decode($value, ENT_QUOTES); + } + } return $values; } diff --git a/tbl_change.php b/tbl_change.php index 2cffd16ebd..6ec71c66ab 100644 --- a/tbl_change.php +++ b/tbl_change.php @@ -702,8 +702,6 @@ foreach ($rows as $row_id => $vrow) { if (! isset($table_fields[$i]['values'])) { $table_fields[$i]['values'] = array(); foreach ($extracted_fieldspec['enum_set_values'] as $val) { - // Removes automatic MySQL escape format - $val = str_replace('\'\'', '\'', str_replace('\\\\', '\\', $val)); $table_fields[$i]['values'][] = array( 'plain' => $val, 'html' => htmlspecialchars($val), From fe9a550ff0b93f5cbbc26d39a9a9523e7053bb6f Mon Sep 17 00:00:00 2001 From: Rouslan Placella Date: Mon, 21 Jan 2013 13:08:00 +0000 Subject: [PATCH 79/85] Added extra unit test for enum fields parsing --- test/libraries/common/PMA_extractFieldSpec_test.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/test/libraries/common/PMA_extractFieldSpec_test.php b/test/libraries/common/PMA_extractFieldSpec_test.php index cb5bb1e8ff..6c35857fb2 100644 --- a/test/libraries/common/PMA_extractFieldSpec_test.php +++ b/test/libraries/common/PMA_extractFieldSpec_test.php @@ -74,6 +74,19 @@ class PMA_extractFieldSpec_test extends PHPUnit_Framework_TestCase 'attribute' => ' ', ), ), + array( + "ENUM('a&b', 'b''c\\'d', 'e\\\\f')", + array( + 'type' => 'enum', + 'print_type' => "enum('a&b', 'b''c\\'d', 'e\\\\f')", + 'binary' => false, + 'unsigned' => false, + 'zerofill' => false, + 'spec_in_brackets' => "'a&b', 'b''c\\'d', 'e\\\\f'", + 'enum_set_values' => array('a&b', 'b\'c\'d', 'e\\f'), + 'attribute' => ' ', + ), + ), array( "INT UNSIGNED zerofill", array( From bf278f3d8d4d5119616a67a5d9aae30c088915e9 Mon Sep 17 00:00:00 2001 From: Rouslan Placella Date: Mon, 21 Jan 2013 13:09:07 +0000 Subject: [PATCH 80/85] Coding style fixes --- .../common/PMA_extractFieldSpec_test.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/test/libraries/common/PMA_extractFieldSpec_test.php b/test/libraries/common/PMA_extractFieldSpec_test.php index 6c35857fb2..dcf48d9418 100644 --- a/test/libraries/common/PMA_extractFieldSpec_test.php +++ b/test/libraries/common/PMA_extractFieldSpec_test.php @@ -46,8 +46,8 @@ class PMA_extractFieldSpec_test extends PHPUnit_Framework_TestCase 'spec_in_brackets' => "'a','b'", 'enum_set_values' => array('a', 'b'), 'attribute' => ' ', - ), ), + ), array( "SET('\'a','b')", array( @@ -59,8 +59,8 @@ class PMA_extractFieldSpec_test extends PHPUnit_Framework_TestCase 'spec_in_brackets' => "'\'a','b'", 'enum_set_values' => array("'a", 'b'), 'attribute' => ' ', - ), ), + ), array( "SET('''a','b')", array( @@ -72,8 +72,8 @@ class PMA_extractFieldSpec_test extends PHPUnit_Framework_TestCase 'spec_in_brackets' => "'''a','b'", 'enum_set_values' => array("'a", 'b'), 'attribute' => ' ', - ), ), + ), array( "ENUM('a&b', 'b''c\\'d', 'e\\\\f')", array( @@ -85,8 +85,8 @@ class PMA_extractFieldSpec_test extends PHPUnit_Framework_TestCase 'spec_in_brackets' => "'a&b', 'b''c\\'d', 'e\\\\f'", 'enum_set_values' => array('a&b', 'b\'c\'d', 'e\\f'), 'attribute' => ' ', - ), ), + ), array( "INT UNSIGNED zerofill", array( @@ -98,8 +98,8 @@ class PMA_extractFieldSpec_test extends PHPUnit_Framework_TestCase 'spec_in_brackets' => '', 'enum_set_values' => array(), 'attribute' => 'UNSIGNED ZEROFILL', - ), ), + ), array( "VARCHAR(255)", array( @@ -111,8 +111,8 @@ class PMA_extractFieldSpec_test extends PHPUnit_Framework_TestCase 'spec_in_brackets' => '255', 'enum_set_values' => array(), 'attribute' => ' ', - ), ), + ), array( "VARBINARY(255)", array( @@ -124,8 +124,8 @@ class PMA_extractFieldSpec_test extends PHPUnit_Framework_TestCase 'spec_in_brackets' => '255', 'enum_set_values' => array(), 'attribute' => ' ', - ), ), - ); + ), + ); } } From decb59662944bc87b5a44cbadd2e50e7fad57b1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Mon, 21 Jan 2013 14:58:53 +0100 Subject: [PATCH 81/85] Translated using Weblate (Spanish) Currently translated at 100.0% (2599 of 2599) --- po/es.po | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/po/es.po b/po/es.po index e57390fff3..172df3b4c8 100644 --- a/po/es.po +++ b/po/es.po @@ -4,10 +4,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-01-21 00:59+0100\n" -"PO-Revision-Date: 2013-01-18 19:04+0200\n" +"PO-Revision-Date: 2013-01-21 14:58+0200\n" "Last-Translator: Matías Bellone \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish " +"\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -10171,7 +10171,6 @@ msgid "Error in ZIP archive:" msgstr "Error en el archivo ZIP:" #: navigation.php:23 -#, fuzzy #| msgid "Fatal error: The navigation can only be accessed via ajax" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Error fatal: sólo se puede acceder a la navegación mediante AJAX" From 24b5294d85741f51dddbf7ab62d66450adfc448b Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Mon, 21 Jan 2013 12:23:47 -0500 Subject: [PATCH 82/85] Set 4.0.0-alpha1 for master; when we reach beta, the MAINT_4_0_0 and QA_4_0 branches will start --- README | 2 +- doc/conf.py | 2 +- libraries/Config.class.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README b/README index f3f2c1f0b0..a03407e623 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ phpMyAdmin - Readme =================== -Version 4.0.0-dev +Version 4.0.0-alpha1 A set of PHP-scripts to manage MySQL over the web. diff --git a/doc/conf.py b/doc/conf.py index 6ca4e16a0f..90dd9d9b79 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -49,7 +49,7 @@ copyright = u'2012 - 2013, The phpMyAdmin devel team' # built documents. # # The short X.Y version. -version = '4.0.0-dev' +version = '4.0.0-alpha1' # The full version, including alpha/beta/rc tags. release = version diff --git a/libraries/Config.class.php b/libraries/Config.class.php index 34c02c9262..0892071893 100644 --- a/libraries/Config.class.php +++ b/libraries/Config.class.php @@ -101,7 +101,7 @@ class PMA_Config */ function checkSystem() { - $this->set('PMA_VERSION', '4.0.0-dev'); + $this->set('PMA_VERSION', '4.0.0-alpha1'); /** * @deprecated */ From 3466a0843987dad931ff0efa0affa37adab12562 Mon Sep 17 00:00:00 2001 From: Kyujin Cho Date: Mon, 21 Jan 2013 17:03:06 +0100 Subject: [PATCH 83/85] Translated using Weblate (Korean) Currently translated at 39.1% (1017 of 2599) --- po/ko.po | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/po/ko.po b/po/ko.po index d788357cb8..0548afd8f6 100644 --- a/po/ko.po +++ b/po/ko.po @@ -4,10 +4,9 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-01-21 00:59+0100\n" -"PO-Revision-Date: 2013-01-18 10:56+0200\n" -"Last-Translator: Seonghwan Bang \n" -"Language-Team: Korean \n" +"PO-Revision-Date: 2013-01-21 17:03+0200\n" +"Last-Translator: Kyujin Cho \n" +"Language-Team: Korean \n" "Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1777,7 +1776,7 @@ msgstr "두 개의다른 열 선택" #: js/messages.php:303 msgid "Query results" -msgstr "질의 결과" +msgstr "쿼리 결과" #: js/messages.php:304 #, fuzzy @@ -1794,9 +1793,8 @@ msgid "Copy" msgstr "복사" #: js/messages.php:323 -#, fuzzy msgid "Add columns" -msgstr "필드 추가하기" +msgstr "세로열 추가하기" #: js/messages.php:326 msgid "Select referenced key" @@ -3163,6 +3161,8 @@ msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" +"테이블 UI 설정을 정리하는 데 실패했습니다. ($cfg['Servers'][$i]['MaxTableUiprefs'] %s 를 " +"참조하세요)" #: libraries/Table.class.php:1535 #, php-format @@ -3888,11 +3888,11 @@ msgstr "구조와 데이터 모두" #: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" -msgstr "" +msgstr "빠른 보기 - 설정할 최소위 옵션만을 보여줍니다." #: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" -msgstr "" +msgstr "커스텀 - 설정 가능한 모든 옵션을 보여줍니다." #: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" @@ -3912,7 +3912,7 @@ msgstr "확장된 inserts" #: libraries/config.values.php:169 msgid "both of the above" -msgstr "" +msgstr "위의 것 모두" #: libraries/config.values.php:170 msgid "neither of the above" @@ -7510,6 +7510,8 @@ msgid "" "configuration and make sure that they correspond to the information given by " "the administrator of the MySQL server." msgstr "" +"PhpMyAdmin이 MySQL 서버에 접속하려 했으나 실패했습니다. 서버가 연결을 거부했습니다. 당신의 설정의 호스트, ID, " +"패스워드가 맞게 입력됐는지, 또는 MySQL 서버의 관리자가 제공해 준 정보를 맞게 입력했는지 확인하세요. " #: libraries/plugins/auth/AuthenticationCookie.class.php:44 msgid "Failed to use Blowfish from mcrypt!" @@ -7549,7 +7551,7 @@ msgstr "서버 선택" #: libraries/plugins/auth/AuthenticationSignon.class.php:249 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" -msgstr "" +msgstr "암호 없이의 로그인이 설정에 의해 차단되어 있습니다(AllowNoLogin 항목을 참조하세요)." #: libraries/plugins/auth/AuthenticationCookie.class.php:586 #: libraries/plugins/auth/AuthenticationSignon.class.php:256 From 480114967eb2daa1b731dd4cef0504eec9d27364 Mon Sep 17 00:00:00 2001 From: Andrey Prokopenko Date: Mon, 21 Jan 2013 18:09:05 +0100 Subject: [PATCH 84/85] Translated using Weblate (Ukrainian) Currently translated at 67.4% (1753 of 2599) --- po/uk.po | 409 +++++++++++++++++++++++++------------------------------ 1 file changed, 188 insertions(+), 221 deletions(-) diff --git a/po/uk.po b/po/uk.po index c9ec54afc4..50c8826d7b 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-01-21 00:59+0100\n" -"PO-Revision-Date: 2013-01-21 14:20+0200\n" -"Last-Translator: Petro Lesiuk \n" +"PO-Revision-Date: 2013-01-21 18:09+0200\n" +"Last-Translator: Andrey Prokopenko \n" "Language-Team: Ukrainian " "\n" "Language: uk\n" @@ -364,7 +364,7 @@ msgstr "Останнє оновлення" #: libraries/structure.lib.php:812 libraries/structure.lib.php:1792 #: tbl_printview.php:432 msgid "Last check" -msgstr "Перевірено" +msgstr "Остання перевірка" #: db_printview.php:220 libraries/structure.lib.php:176 #, php-format @@ -413,7 +413,7 @@ msgstr "Відслідковувані таблиці" #: libraries/server_privileges.lib.php:2865 server_databases.php:201 #: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" -msgstr "БД" +msgstr "База даних" #: db_tracking.php:80 msgid "Last version" @@ -431,7 +431,7 @@ msgstr "Оновлено" #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 #: server_status.php:337 sql.php:1160 tbl_tracking.php:766 msgid "Status" -msgstr "Статус" +msgstr "Стан" #: db_tracking.php:84 libraries/Index.class.php:559 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 @@ -450,7 +450,7 @@ msgstr "Показати" #: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" -msgstr "Видалити дані спостереження для цієї таблиці" +msgstr "Видалити дані відстеження для цієї таблиці" #: db_tracking.php:103 libraries/Index.class.php:623 #: libraries/Util.class.php:3493 libraries/Util.class.php:3494 @@ -484,7 +484,7 @@ msgstr "Знімок структури" #: db_tracking.php:193 msgid "Untracked tables" -msgstr "Невідслідковувані таблиці" +msgstr "Невідстежувані таблиці" #: db_tracking.php:212 libraries/structure.lib.php:1515 msgid "Track table" @@ -500,7 +500,7 @@ msgstr "Невірний тип!" #: export.php:93 msgid "Selected export type has to be saved in file!" -msgstr "Обранний тип експорту збережений в файл!" +msgstr "Обраний тип експорту збережений в файл!" #: export.php:122 msgid "Bad parameters!" @@ -579,7 +579,7 @@ msgstr "Додати точку" #: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" -msgstr "Linestring" +msgstr "Відрізок" #: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" @@ -591,7 +591,7 @@ msgstr "Внутрішнє кільце" #: gis_data_editor.php:303 msgid "Add a linestring" -msgstr "Додати linestring" +msgstr "Додати відрізок" #: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" @@ -943,7 +943,7 @@ msgstr "Ви збираєтесь здійснити ОБРІЗКУ таблиц #: js/messages.php:35 msgid "Deleting tracking data" -msgstr "Видалення даних трекінгу" +msgstr "Видалення даних відстеження" #: js/messages.php:36 msgid "Dropping Primary Key/Index" @@ -1097,7 +1097,7 @@ msgstr "Використання кешу запитів" #: js/messages.php:84 msgid "Query cache used" -msgstr "Використанний кеш запитів" +msgstr "Використано кеш запитів" #: js/messages.php:86 msgid "System CPU Usage" @@ -1125,7 +1125,7 @@ msgstr "Пам'яті кешовано" #: js/messages.php:93 msgid "Buffered memory" -msgstr "Пам'яті буферезовано" +msgstr "Пам'яті буферизовано" #: js/messages.php:94 msgid "Free memory" @@ -1192,17 +1192,17 @@ msgstr "ГБ" #. l10n: shortcuts for Terabyte #: js/messages.php:112 libraries/Util.class.php:1464 msgid "TiB" -msgstr "TB" +msgstr "ТБ" #. l10n: shortcuts for Petabyte #: js/messages.php:113 libraries/Util.class.php:1466 msgid "PiB" -msgstr "PB" +msgstr "ПБ" #. l10n: shortcuts for Exabyte #: js/messages.php:114 libraries/Util.class.php:1468 msgid "EiB" -msgstr "EB" +msgstr "ЕБ" #: js/messages.php:115 #, php-format @@ -1513,8 +1513,7 @@ msgstr "Рядки що зазнали змін:" #: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." -msgstr "" -"Невдале зчитування файлу конфігурації. Схоже що це не валідний JSON код." +msgstr "Невдале зчитування файлу конфігурації. Схоже на неприпустимий JSON код." #: js/messages.php:198 msgid "" @@ -1879,11 +1878,11 @@ msgstr "Перетягніть для зміни порядку" #: js/messages.php:340 msgid "Click to sort" -msgstr "Клікніть щоб посортувати" +msgstr "Клацніть для сортування" #: js/messages.php:341 msgid "Click to mark/unmark" -msgstr "Клікніть щоб позначити/зняти позначку" +msgstr "Клацніть для встановлення/зняття позначки" #: js/messages.php:342 msgid "Double-click to copy column name" @@ -1892,16 +1891,17 @@ msgstr "Клацніть двічі, щоб скопіювати назву ст #: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -"Клікніть на стрілку випадаючого меню
для перемикання видимості стовпця" +"Клацніть на стрілку випадаючого меню
для перемикання видимості " +"стовпчика" #: js/messages.php:345 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -"Ця таблиця не містить унікальні колонки. Особливості, пов'язані з сіткою " -"редагування, Прапорець, Редагувати, Копіювати і Видаляти посилання можуть не " -"працювати після збереження." +"Ця таблиця не містить унікальні стовпчики. Особливості, пов'язані з сіткою " +"редагування, прапорцем, посиланнями Редагувати, Копіювати та Видаляти можуть " +"не працювати після збереження." #: js/messages.php:350 #, fuzzy @@ -2583,13 +2583,12 @@ msgstr "Повні тексти" #: libraries/DisplayResults.class.php:1599 msgid "Relational key" -msgstr "" +msgstr "Ключ відношення" #: libraries/DisplayResults.class.php:1600 -#, fuzzy #| msgid "Relational schema" msgid "Relational display column" -msgstr "Схема зв'язків" +msgstr "Стовпчик відображення зв'язків" #: libraries/DisplayResults.class.php:1612 msgid "Show binary contents" @@ -2612,11 +2611,11 @@ msgstr "Перетворення МІМЕ-типу бровзером" #: libraries/DisplayResults.class.php:1642 msgid "Well Known Text" -msgstr "" +msgstr "Формат WKT (well known text)" #: libraries/DisplayResults.class.php:1643 msgid "Well Known Binary" -msgstr "" +msgstr "Формат WKB (well known binary)" #: libraries/DisplayResults.class.php:3357 #: libraries/DisplayResults.class.php:3373 @@ -2642,8 +2641,8 @@ msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -"Вигляд має щонайменше цю кількість рядків. Будь-ласка звернітся до " -"%sдокументації%s." +"Подання має щонайменше цю кількість рядків. Будь-ласка звернітся до %" +"sдокументації%s." #: libraries/DisplayResults.class.php:4939 msgid "Showing rows" @@ -2693,7 +2692,7 @@ msgstr "Експорт" #: libraries/DisplayResults.class.php:5178 msgid "Query results operations" -msgstr "" +msgstr "Операції з результатами запиту" #: libraries/DisplayResults.class.php:5202 libraries/Header.class.php:335 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 @@ -2703,17 +2702,16 @@ msgstr "Версія для друку" #: libraries/DisplayResults.class.php:5220 msgid "Print view (with full texts)" -msgstr "Подання дял друку (з повними текстами)" +msgstr "Подання для друку (з повними текстами)" #: libraries/DisplayResults.class.php:5291 tbl_chart.php:129 -#, fuzzy #| msgid "Display PDF schema" msgid "Display chart" -msgstr "Показати PDF схему" +msgstr "Відобразити діаграму" #: libraries/DisplayResults.class.php:5316 msgid "Visualize GIS data" -msgstr "" +msgstr "Візуалізація даних ГІС" #: libraries/DisplayResults.class.php:5348 view_create.php:152 msgid "Create view" @@ -2721,7 +2719,7 @@ msgstr "Створити подання" #: libraries/DisplayResults.class.php:5541 msgid "Link not found" -msgstr "Лінк не знайдено" +msgstr "Посилання не знайдено" #: libraries/Error_Handler.class.php:77 msgid "Too many error messages, some are not displayed." @@ -2729,23 +2727,23 @@ msgstr "Надто багато помилок, деякі не відобраз #: libraries/File.class.php:239 msgid "File was not an uploaded file." -msgstr "Файл не був завантаженим файлом." +msgstr "Файл не був відвантаженим файлом." #: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "Завантажений файл перевищує директиву upload_max_filesize в php.ini." +msgstr "Відвантажений файл перевищує директиву upload_max_filesize в php.ini." #: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -"Завантажений файл перевищує MAX_FILE_SIZE директиву, яка була вказана в HTML " -"формі." +"Відвантажений файл перевищує MAX_FILE_SIZE директиву, яка була вказана в " +"HTML формі." #: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." -msgstr "Завантажуваний файл був завантажений лише частково." +msgstr "Відвантажений файл був відвантажений лише частково." #: libraries/File.class.php:288 msgid "Missing a temporary folder." @@ -2757,11 +2755,11 @@ msgstr "Неможливо записати файл на диск." #: libraries/File.class.php:294 msgid "File upload stopped by extension." -msgstr "Завантаження зупинено розширенням." +msgstr "Відвантаження зупинено розширенням." #: libraries/File.class.php:297 msgid "Unknown error in file upload." -msgstr "Невідома помилка при завантаженні файлу." +msgstr "Невідома помилка при відвантаженні файлу." #: libraries/File.class.php:475 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" @@ -2769,11 +2767,11 @@ msgstr "Помилка прі переміщенні файлу, дивись [d #: libraries/File.class.php:493 msgid "Error while moving uploaded file." -msgstr "Помилка при переміщенні файлу." +msgstr "Помилка при переміщенні відвантаженого файлу." #: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." -msgstr "Неможливо прочитати (перемістити) завантажений файл." +msgstr "Неможливо прочитати (перемістити) відвантажений файл." #: libraries/Footer.class.php:133 libraries/Footer.class.php:137 #: libraries/Footer.class.php:140 @@ -2864,7 +2862,7 @@ msgstr "Бази Даних" #: libraries/structure.lib.php:707 libraries/structure.lib.php:1188 #: libraries/tbl_info.inc.php:59 msgid "View" -msgstr "Вигляд" +msgstr "Подання" #: libraries/Menu.class.php:256 libraries/Menu.class.php:344 #: libraries/Util.class.php:3274 libraries/Util.class.php:3281 @@ -3234,10 +3232,9 @@ msgid "Table Search" msgstr "Шукати" #: libraries/TableSearch.class.php:232 libraries/insert_edit.lib.php:1352 -#, fuzzy #| msgid "Insert" msgid "Edit/Insert" -msgstr "Вставити" +msgstr "Редагувати/Вставити" #: libraries/TableSearch.class.php:755 msgid "Select columns (at least one):" @@ -3726,7 +3723,7 @@ msgstr "Переглянути Ваш комп'ютер:" #: libraries/Util.class.php:3430 #, php-format msgid "Select from the web server upload directory %s:" -msgstr "Виберіть з каталога веб-сервера для завантаження файлів %s:" +msgstr "Виберіть з каталога веб-сервера для відвантаження файлів %s:" #: libraries/Util.class.php:3459 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:464 @@ -3735,7 +3732,7 @@ msgstr "Встановлений Вами каталог для завантаж #: libraries/Util.class.php:3470 msgid "There are no files to upload" -msgstr "Немає файлів для завантаження" +msgstr "Немає файлів для відвантаження" #: libraries/Util.class.php:3495 libraries/Util.class.php:3496 #: libraries/structure.lib.php:305 @@ -5748,8 +5745,8 @@ msgstr "Signon URL" #: libraries/config/messages.inc.php:425 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -"Сокет на якому працює сервер MySQL, Для значення за замовчуванням, залиште " -"порожнім." +"Сокет на якому працює сервер MySQL, для значення за замовчуванням, залиште " +"порожнім" #: libraries/config/messages.inc.php:426 msgid "Server socket" @@ -5900,8 +5897,7 @@ msgid "" msgstr "" "Будь ласка, зверніть увагу, що включення даного параметра не дасть ефекту " "при ідентифікації методом [kbd]config[/kbd] через жорстко прописаного " -"пароля. Зміна пароля в конфігураційному файлі безпосередньо ніяк не " -"обмежена." +"пароля. Зміна пароля в конфігураційному файлі безпосередньо ніяк не обмежена" #: libraries/config/messages.inc.php:456 msgid "Show password change form" @@ -6150,12 +6146,12 @@ msgstr "Список довірених проксі для IP allow/deny" #: libraries/config/messages.inc.php:511 msgid "Directory on server where you can upload files for import" msgstr "" -"Каталог на сервері, в який ви можете завантажувати файли для подальшого " +"Каталог на сервері, в який ви можете відвантажувати файли для подальшого " "імпорту" #: libraries/config/messages.inc.php:512 msgid "Upload directory" -msgstr "Каталог завантаження" +msgstr "Каталог відвантаження" #: libraries/config/messages.inc.php:513 msgid "Allow for searching inside the entire database" @@ -6617,17 +6613,19 @@ msgid "About %SEC sec. remaining." msgstr "" #: libraries/display_import.lib.php:135 +#, fuzzy msgid "The file is being processed, please be patient." -msgstr "" +msgstr "Файл обробляється, будь ласка, будьте терплячими." #: libraries/display_import.lib.php:154 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" +"Будь ласка, будьте терплячими, файл відвантажується. Докладна інформація про " +"відвантаження не доступна." #: libraries/display_import.lib.php:190 -#, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" msgstr "Імпортування до поточного сервера" @@ -6644,37 +6642,39 @@ msgstr "Імпортування до таблиці \"%s\"" #: libraries/display_import.lib.php:200 msgid "File to Import:" -msgstr "" +msgstr "Файл для імпорту:" #: libraries/display_import.lib.php:217 #, php-format msgid "File may be compressed (%s) or uncompressed." -msgstr "" +msgstr "Файл може бути стиснений (%s) або нестиснений." #: libraries/display_import.lib.php:219 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" msgstr "" +"Ім'я стисненого файлу повинно закінчуватися на " +".[format].[compression]. Приклад: .sql.zip" #: libraries/display_import.lib.php:245 msgid "File uploads are not allowed on this server." -msgstr "" +msgstr "Завантаження файлів на цьому сервері не допускаються." #: libraries/display_import.lib.php:276 -#, fuzzy #| msgid "Partial Texts" msgid "Partial Import:" -msgstr "Часткові тексти" +msgstr "Частковий імпорт:" #: libraries/display_import.lib.php:282 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" +"Попередній імпорт прострочений, після повторного надсилання він почнеться з " +"позиції %d." #: libraries/display_import.lib.php:289 -#, fuzzy #| msgid "" #| "Allow interrupt of import in case script detects it is close to time " #| "limit. This might be a good way to import large files, however it can " @@ -6684,35 +6684,35 @@ msgid "" "to the PHP timeout limit. (This might be a good way to import large " "files, however it can break transactions.)" msgstr "" -"Дозволити перервати імпорт у випадку коли скрипт виявляє що він близький до " -"часу який був виділений на виконання. Це може бути хорошим способом для " -"імпорту файлів великого розміру, проте це може призвести до відхилення " -"транзакції." +"Дозволити переривання імпорту у випадку, коли скрипт виявить наближення до " +"вичерпання часу очікування PHP. (Це може бути хороший способом " +"імпортування великих файлів, однак це можу привести до розриву " +"пересилань)." #: libraries/display_import.lib.php:296 msgid "Number of rows to skip, starting from the first row:" -msgstr "" +msgstr "Кількість пропущених рядків, починаючи з першого рядка:" #: libraries/display_import.lib.php:318 msgid "Format-Specific Options:" -msgstr "" +msgstr "Параметри щодо формату:" #: libraries/display_select_lang.lib.php:56 #: libraries/display_select_lang.lib.php:57 setup/frames/index.inc.php:75 msgid "Language" -msgstr "" +msgstr "Мова" #: libraries/engines/innodb.lib.php:28 msgid "Data home directory" -msgstr "" +msgstr "Домашній каталог даних" #: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." -msgstr "" +msgstr "Загальна частина шляху до каталогу всіх файлів даних InnoDB." #: libraries/engines/innodb.lib.php:32 msgid "Data files" -msgstr "" +msgstr "Файли даних" #: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" @@ -7027,32 +7027,32 @@ msgid "Edit structure by following the \"Structure\" link" msgstr "" #: libraries/import.lib.php:1198 -#, fuzzy, php-format +#, php-format #| msgid "No databases" msgid "Go to database: %s" -msgstr "БД відсутні" +msgstr "Перейти до бази даних: %s" #: libraries/import.lib.php:1201 libraries/import.lib.php:1229 #, php-format msgid "Edit settings for %s" -msgstr "" +msgstr "Редагувати налаштування для %s" #: libraries/import.lib.php:1224 -#, fuzzy, php-format +#, php-format #| msgid "Set value: %s" msgid "Go to table: %s" -msgstr "Встановити значення: %s" +msgstr "Перейти до таблиці: %s" #: libraries/import.lib.php:1227 -#, fuzzy, php-format +#, php-format #| msgid "Structure only" msgid "Structure of %s" -msgstr "Лише структуру" +msgstr "Структура %s" #: libraries/import.lib.php:1235 #, php-format msgid "Go to view: %s" -msgstr "" +msgstr "Перейти до подання: %s" #: libraries/insert_edit.lib.php:214 libraries/insert_edit.lib.php:245 #: pmd_general.php:197 @@ -7065,10 +7065,9 @@ msgid "Binary" msgstr "Двійковий" #: libraries/insert_edit.lib.php:653 -#, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" -msgstr "Через велику довжину,
це поле не може бути відредаговано " +msgstr "Через велику довжину,
цей стовпчик не може бути відредаговано" #: libraries/insert_edit.lib.php:1089 msgid "Binary - do not edit" @@ -7076,7 +7075,7 @@ msgstr "Двійкові дані - не редагуються" #: libraries/insert_edit.lib.php:1187 libraries/sql_query_form.lib.php:467 msgid "web server upload directory" -msgstr "каталог веб-сервера для завантаження файлів (upload directory)" +msgstr "каталог веб-сервера для відвантаження файлів (upload directory)" #: libraries/insert_edit.lib.php:1402 #, php-format @@ -7155,7 +7154,7 @@ msgstr "Від" #: libraries/mult_submits.inc.php:283 msgid "To" -msgstr "" +msgstr "До" #: libraries/mult_submits.inc.php:289 libraries/mult_submits.inc.php:306 #: libraries/sql_query_form.lib.php:407 @@ -7164,11 +7163,11 @@ msgstr "Виконати" #: libraries/mult_submits.inc.php:297 msgid "Add table prefix" -msgstr "" +msgstr "Додати префікс таблиці" #: libraries/mult_submits.inc.php:300 msgid "Add prefix" -msgstr "" +msgstr "Додати префікс" #: libraries/mult_submits.inc.php:316 sql.php:499 #, fuzzy @@ -7206,31 +7205,31 @@ msgstr "чутливий до регістру" #: libraries/mysql_charsets.lib.php:267 msgid "Croatian" -msgstr "Кроатське" +msgstr "Хорватська" #: libraries/mysql_charsets.lib.php:270 msgid "Czech" -msgstr "Чеське" +msgstr "Чеська" #: libraries/mysql_charsets.lib.php:273 msgid "Danish" -msgstr "Данське" +msgstr "Датська" #: libraries/mysql_charsets.lib.php:276 msgid "English" -msgstr "Англійське" +msgstr "Англійська" #: libraries/mysql_charsets.lib.php:279 msgid "Esperanto" -msgstr "" +msgstr "Есперанто" #: libraries/mysql_charsets.lib.php:282 msgid "Estonian" -msgstr "Естонське" +msgstr "Естонська" #: libraries/mysql_charsets.lib.php:285 libraries/mysql_charsets.lib.php:288 msgid "German" -msgstr "Німецьке" +msgstr "Німецька" #: libraries/mysql_charsets.lib.php:285 msgid "dictionary" @@ -7242,35 +7241,35 @@ msgstr "телефонна книга" #: libraries/mysql_charsets.lib.php:291 msgid "Hungarian" -msgstr "Мадярське" +msgstr "Угорська" #: libraries/mysql_charsets.lib.php:294 msgid "Icelandic" -msgstr "" +msgstr "Ісландська" #: libraries/mysql_charsets.lib.php:297 libraries/mysql_charsets.lib.php:387 msgid "Japanese" -msgstr "Японське" +msgstr "Японська" #: libraries/mysql_charsets.lib.php:300 msgid "Latvian" -msgstr "" +msgstr "Латвійська" #: libraries/mysql_charsets.lib.php:303 msgid "Lithuanian" -msgstr "Литовське" +msgstr "Литовська" #: libraries/mysql_charsets.lib.php:306 libraries/mysql_charsets.lib.php:409 msgid "Korean" -msgstr "Корейське" +msgstr "Корейська" #: libraries/mysql_charsets.lib.php:309 msgid "Persian" -msgstr "" +msgstr "Перська" #: libraries/mysql_charsets.lib.php:312 msgid "Polish" -msgstr "" +msgstr "Польська" #: libraries/mysql_charsets.lib.php:315 libraries/mysql_charsets.lib.php:363 msgid "West European" @@ -7278,23 +7277,23 @@ msgstr "Західно Європейське" #: libraries/mysql_charsets.lib.php:318 msgid "Romanian" -msgstr "" +msgstr "Румунська" #: libraries/mysql_charsets.lib.php:321 msgid "Slovak" -msgstr "" +msgstr "Словацька" #: libraries/mysql_charsets.lib.php:324 msgid "Slovenian" -msgstr "" +msgstr "Словенська" #: libraries/mysql_charsets.lib.php:327 msgid "Spanish" -msgstr "" +msgstr "Іспанська" #: libraries/mysql_charsets.lib.php:330 msgid "Traditional Spanish" -msgstr "" +msgstr "Традиційна іспанська" #: libraries/mysql_charsets.lib.php:333 libraries/mysql_charsets.lib.php:430 msgid "Swedish" @@ -7306,11 +7305,11 @@ msgstr "Тайське" #: libraries/mysql_charsets.lib.php:339 libraries/mysql_charsets.lib.php:427 msgid "Turkish" -msgstr "Турецьке" +msgstr "Турецька" #: libraries/mysql_charsets.lib.php:342 libraries/mysql_charsets.lib.php:424 msgid "Ukrainian" -msgstr "Українське" +msgstr "Українська" #: libraries/mysql_charsets.lib.php:345 libraries/mysql_charsets.lib.php:354 msgid "Unicode" @@ -7328,7 +7327,7 @@ msgstr "СхідноЄвропейське" #: libraries/mysql_charsets.lib.php:375 msgid "Russian" -msgstr "Російське" +msgstr "Російська" #: libraries/mysql_charsets.lib.php:392 msgid "Baltic" @@ -7352,7 +7351,7 @@ msgstr "Іврит" #: libraries/mysql_charsets.lib.php:415 msgid "Georgian" -msgstr "" +msgstr "Грузинська" #: libraries/mysql_charsets.lib.php:418 msgid "Greek" @@ -7360,7 +7359,7 @@ msgstr "Грецьке" #: libraries/mysql_charsets.lib.php:421 msgid "Czech-Slovak" -msgstr "" +msgstr "Чехословацька" #: libraries/mysql_charsets.lib.php:436 libraries/mysql_charsets.lib.php:443 #: libraries/structure.lib.php:1068 @@ -7446,7 +7445,7 @@ msgstr "Новий" #: libraries/plugins/export/ExportSql.class.php:475 #: libraries/plugins/export/ExportXml.class.php:107 msgid "Functions" -msgstr "" +msgstr "Функції" #: libraries/navigation/Nodes/Node_Function_Container.class.php:36 #, fuzzy @@ -7466,7 +7465,7 @@ msgstr "Новий" #: libraries/plugins/export/ExportSql.class.php:458 #: libraries/plugins/export/ExportXml.class.php:111 msgid "Procedures" -msgstr "" +msgstr "Процедури" #: libraries/navigation/Nodes/Node_Procedure_Container.class.php:36 #: libraries/rte/rte_footer.lib.php:29 @@ -7493,7 +7492,7 @@ msgstr "Новий" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/plugins/export/ExportXml.class.php:125 msgid "Views" -msgstr "" +msgstr "Подання" #: libraries/navigation/Nodes/Node_View_Container.class.php:36 #, fuzzy @@ -7544,7 +7543,7 @@ msgstr "Виконайте CREATE DATABASE перед копіюванням" #: libraries/operations.lib.php:199 libraries/operations.lib.php:1036 msgid "Add constraints" -msgstr "Додати constraints" +msgstr "Додати обмеження" #: libraries/operations.lib.php:207 msgid "Switch to copied database" @@ -7589,7 +7588,7 @@ msgstr "Перейти до скопійованої таблиці" #: libraries/operations.lib.php:1078 msgid "Table maintenance" -msgstr "Обслговування таблиці" +msgstr "Обслуговування таблиці" #: libraries/operations.lib.php:1116 libraries/structure.lib.php:309 msgid "Check table" @@ -7597,7 +7596,7 @@ msgstr "Перевірити таблицю" #: libraries/operations.lib.php:1129 msgid "Defragment table" -msgstr "" +msgstr "Дефрагментувати таблицю" #: libraries/operations.lib.php:1143 libraries/structure.lib.php:317 msgid "Analyze table" @@ -7624,18 +7623,17 @@ msgid "Flush the table (FLUSH)" msgstr "Очистити кеш таблиці (\"FLUSH\")" #: libraries/operations.lib.php:1237 -#, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" -msgstr "Дамп даних таблиці" +msgstr "Видалити дані або таблицю" #: libraries/operations.lib.php:1245 msgid "Empty the table (TRUNCATE)" -msgstr "" +msgstr "Очистити таблицю (TRUNCATE)" #: libraries/operations.lib.php:1253 msgid "Delete the table (DROP)" -msgstr "Видалити таюлицю (DROP)" +msgstr "Видалити таблицю (DROP)" #: libraries/operations.lib.php:1295 msgid "Analyze" @@ -7796,10 +7794,9 @@ msgstr "Стовпці розділені з:" #: libraries/plugins/export/ExportCsv.class.php:97 #: libraries/plugins/import/ImportCsv.class.php:88 -#, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with:" -msgstr "Поля взято в" +msgstr "Стовпчики взято в:" #: libraries/plugins/export/ExportCsv.class.php:101 #: libraries/plugins/import/ImportCsv.class.php:94 @@ -7810,10 +7807,9 @@ msgstr "Поля екрануються" #: libraries/plugins/export/ExportCsv.class.php:105 #: libraries/plugins/import/ImportCsv.class.php:100 -#, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" -msgstr "Рядки розділено" +msgstr "Рядки закінчуються:" #: libraries/plugins/export/ExportCsv.class.php:109 #: libraries/plugins/export/ExportExcel.class.php:58 @@ -7828,11 +7824,11 @@ msgstr "Замінити значення NULL на:" #: libraries/plugins/export/ExportCsv.class.php:114 #: libraries/plugins/export/ExportExcel.class.php:63 msgid "Remove carriage return/line feed characters within columns" -msgstr "" +msgstr "Видаляти символи повернення каретки/завершення рядка в стовпчиках" #: libraries/plugins/export/ExportExcel.class.php:78 msgid "Excel edition:" -msgstr "" +msgstr "Excel редакція:" #: libraries/plugins/export/ExportHtmlword.class.php:81 #: libraries/plugins/export/ExportLatex.class.php:157 @@ -7887,11 +7883,11 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:43 msgid "Content of table @TABLE@" -msgstr "" +msgstr "Вміст таблиці @TABLE@" #: libraries/plugins/export/ExportLatex.class.php:44 msgid "(continued)" -msgstr "" +msgstr "(продовження)" #: libraries/plugins/export/ExportLatex.class.php:45 msgid "Structure of table @TABLE@" @@ -8028,16 +8024,16 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:305 msgid "Instead of INSERT statements, use:" -msgstr "" +msgstr "Замість виразів INSERT використовуйте:" #: libraries/plugins/export/ExportSql.class.php:311 msgid "INSERT DELAYED statements" -msgstr "" +msgstr "Вирази INSERT DELAYED" #: libraries/plugins/export/ExportSql.class.php:322 #: libraries/plugins/export/ExportSql.class.php:352 msgid "INSERT IGNORE statements" -msgstr "" +msgstr "Вирази INSERT IGNORE" #: libraries/plugins/export/ExportSql.class.php:335 msgid "Function to use when dumping data:" @@ -8163,7 +8159,7 @@ msgstr "" #: libraries/plugins/import/ImportMediawiki.class.php:56 msgid "MediaWiki Table" -msgstr "" +msgstr "Таблиця MediaWiki" #: libraries/plugins/import/ImportMediawiki.class.php:303 #, php-format @@ -8216,7 +8212,7 @@ msgstr "" #: libraries/plugins/import/ImportSql.class.php:83 msgid "Do not use AUTO_INCREMENT for zero values" -msgstr "" +msgstr "Не використовувати AUTO_INCREMENT для нульових значень" #: libraries/plugins/import/ImportXml.class.php:53 msgid "XML" @@ -9688,7 +9684,7 @@ msgstr "Трекінг не активний." #: libraries/structure.lib.php:129 tbl_operations.php:327 #, php-format msgid "View %s has been dropped" -msgstr "Вигляд %s знищено" +msgstr "Подання %s було знищено" #: libraries/structure.lib.php:130 tbl_operations.php:328 #, php-format @@ -9755,14 +9751,13 @@ msgid "Move the columns by dragging them up and down." msgstr "" #: libraries/structure.lib.php:1460 -#, fuzzy #| msgid "Print view" msgid "Edit view" -msgstr "Версія для друку" +msgstr "Редагувати подання" #: libraries/structure.lib.php:1493 msgid "Relation view" -msgstr "Перегляд залежностей" +msgstr "Подання зв'язків" #: libraries/structure.lib.php:1505 msgid "Propose table structure" @@ -9774,10 +9769,9 @@ msgid "You have to add at least one column." msgstr "Необхідно додати принаймні один стовпчик." #: libraries/structure.lib.php:1552 -#, fuzzy #| msgid "Add into comments" msgid "Add column" -msgstr "Додати коментар" +msgstr "Додати стовпчик" #: libraries/structure.lib.php:1557 #: libraries/tbl_columns_definition_form.inc.php:750 @@ -9810,7 +9804,7 @@ msgstr "Статистика рядка" #: libraries/structure.lib.php:1705 tbl_printview.php:353 msgid "static" -msgstr "" +msgstr "статичний" #: libraries/structure.lib.php:1707 tbl_printview.php:355 msgid "dynamic" @@ -9973,7 +9967,7 @@ msgstr "Після %s" #: libraries/tbl_columns_definition_form.inc.php:739 msgid "Table name" -msgstr "" +msgstr "Назва таблиці" #: libraries/tbl_columns_definition_form.inc.php:878 msgid "PARTITION definition" @@ -9992,10 +9986,9 @@ msgid "Manage your settings" msgstr "Загальні можливості" #: libraries/user_preferences.inc.php:46 prefs_manage.php:292 -#, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" -msgstr "Модифікації було збережено" +msgstr "Конфігурація була збережена" #: libraries/user_preferences.inc.php:66 #, php-format @@ -10592,10 +10585,10 @@ msgid "Network traffic since startup: %s" msgstr "" #: server_status.php:83 -#, fuzzy, php-format +#, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "Цей MySQL сервер працює %s. Стартував %s." +msgstr "Цей MySQL сервер працює %1$s. Стартував %2$s." #: server_status.php:93 msgid "" @@ -10656,10 +10649,9 @@ msgid "Command" msgstr "Команда" #: server_status_advisor.php:29 -#, fuzzy #| msgid "Administration" msgid "Instructions" -msgstr "Адміністратор" +msgstr "Команди" #: server_status_advisor.php:35 msgid "" @@ -10711,16 +10703,14 @@ msgid "Rearrange/edit charts" msgstr "" #: server_status_monitor.php:496 -#, fuzzy #| msgid "Refresh" msgid "Refresh rate" -msgstr "Оновити" +msgstr "Частота оновлення" #: server_status_monitor.php:505 -#, fuzzy #| msgid "Column names" msgid "Chart columns" -msgstr "Назви колонок" +msgstr "Діаграма стовпців" #: server_status_monitor.php:521 msgid "Chart arrangement" @@ -10809,10 +10799,9 @@ msgid "Commonly monitored" msgstr "" #: server_status_monitor.php:635 -#, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" -msgstr "Неправильна назва таблиці" +msgstr "або введіть назву змінної:" #: server_status_monitor.php:642 msgid "Display as differential value" @@ -10827,10 +10816,9 @@ msgid "Append unit to data values" msgstr "" #: server_status_monitor.php:659 -#, fuzzy #| msgid "Add a new User" msgid "Add this series" -msgstr "Додати нового користувача" +msgstr "Додати ці серії" #: server_status_monitor.php:661 msgid "Clear series" @@ -10847,10 +10835,9 @@ msgid "Log statistics" msgstr "Статистика рядка" #: server_status_monitor.php:676 -#, fuzzy #| msgid "Select Tables" msgid "Selected time range:" -msgstr "Вибрати таблиці" +msgstr "Обраний проміжок часу:" #: server_status_monitor.php:682 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" @@ -10875,22 +10862,22 @@ msgid "Query analyzer" msgstr "Тип запиту" #: server_status_monitor.php:745 -#, fuzzy, php-format +#, php-format #| msgid "Second" msgid "%d second" msgid_plural "%d seconds" -msgstr[0] "Секунда" -msgstr[1] "Секунда" -msgstr[2] "Секунда" +msgstr[0] "%d секунда" +msgstr[1] "%d секунди" +msgstr[2] "%d секунд" #: server_status_monitor.php:748 -#, fuzzy, php-format +#, php-format #| msgid "Minute" msgid "%d minute" msgid_plural "%d minutes" -msgstr[0] "Хвилина" -msgstr[1] "Хвилина" -msgstr[2] "Хвилина" +msgstr[0] "%d хвилина" +msgstr[1] "%d хвилини" +msgstr[2] "%d хвилин" #: server_status_queries.php:67 #, php-format @@ -11559,10 +11546,9 @@ msgid "Insecure connection" msgstr "" #: setup/frames/index.inc.php:98 -#, fuzzy #| msgid "Modifications have been saved" msgid "Configuration saved." -msgstr "Модифікації було збережено" +msgstr "Конфігурація збережена." #: setup/frames/index.inc.php:99 msgid "" @@ -11801,10 +11787,9 @@ msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" #: setup/validate.php:22 -#, fuzzy #| msgid "No databases" msgid "Wrong data" -msgstr "БД відсутні" +msgstr "Неправильні дані" #: sql.php:299 #, php-format @@ -11851,14 +11836,12 @@ msgid "No data to display" msgstr "БД відсутні" #: tbl_chart.php:132 -#, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" -msgstr "Бер" +msgstr "Прямокутник" #: tbl_chart.php:134 -#, fuzzy #| msgid "Column" msgctxt "Chart type" msgid "Column" @@ -11880,11 +11863,10 @@ msgid "Area" msgstr "" #: tbl_chart.php:144 -#, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" -msgstr "PB" +msgstr "Пиріг" #: tbl_chart.php:148 #, fuzzy @@ -11898,10 +11880,9 @@ msgid "Stacked" msgstr "" #: tbl_chart.php:158 -#, fuzzy #| msgid "Import files" msgid "Chart title" -msgstr "Імпорт файлів" +msgstr "Назва діаграми" #: tbl_chart.php:165 msgid "X-Axis:" @@ -11919,7 +11900,7 @@ msgstr "" #, fuzzy #| msgid "Value" msgid "X Values" -msgstr "Значення" +msgstr "Значення X" #: tbl_chart.php:215 msgid "Y-Axis label:" @@ -11949,10 +11930,9 @@ msgid "Display GIS Visualization" msgstr "" #: tbl_gis_visualization.php:110 -#, fuzzy #| msgid "Add into comments" msgid "Label column" -msgstr "Додати коментар" +msgstr "Мітка стовпчика" #: tbl_gis_visualization.php:112 msgid "-- None --" @@ -11969,10 +11949,9 @@ msgid "Redraw" msgstr "" #: tbl_gis_visualization.php:164 -#, fuzzy #| msgid "User name" msgid "File name" -msgstr "Ім'я користувача" +msgstr "Назва файлу" #: tbl_indexes.php:71 msgid "The name of the primary key must be \"PRIMARY\"!" @@ -11987,10 +11966,9 @@ msgid "No index parts defined!" msgstr "Не визначено частини індекса!" #: tbl_indexes.php:193 -#, fuzzy #| msgid "Edit mode" msgid "Edit index" -msgstr "Режим редагування" +msgstr "Редагувати індекс" #: tbl_indexes.php:205 msgid "Index name:" @@ -12045,10 +12023,9 @@ msgid "Error creating foreign key on %1$s (check data types)" msgstr "" #: tbl_relation.php:364 -#, fuzzy #| msgid "General relation features" msgid "Internal relation" -msgstr "Загальні можливості" +msgstr "Внутрішні відносини" #: tbl_relation.php:366 msgid "" @@ -12084,7 +12061,7 @@ msgstr "Трекінг є активним." #: tbl_tracking.php:253 msgid "SQL statements executed." -msgstr "" +msgstr "SQL вирази виконано." #: tbl_tracking.php:260 msgid "" @@ -12110,10 +12087,9 @@ msgid "Tracking data definition successfully deleted" msgstr "" #: tbl_tracking.php:456 tbl_tracking.php:480 -#, fuzzy #| msgid "Query type" msgid "Query error" -msgstr "Тип запиту" +msgstr "Помилка запиту" #: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" @@ -12129,16 +12105,15 @@ msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" #: tbl_tracking.php:531 -#, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking data row from report" -msgstr "Видалення даних трекінгу" +msgstr "Видалити рядки даних відстеження із звіту" #: tbl_tracking.php:545 #, fuzzy #| msgid "No databases" msgid "No data" -msgstr "БД відсутні" +msgstr "Немає даних" #: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" @@ -12175,7 +12150,7 @@ msgstr "" #: tbl_tracking.php:735 msgid "Show versions" -msgstr "" +msgstr "Показати версії" #: tbl_tracking.php:823 #, fuzzy, php-format @@ -12216,7 +12191,7 @@ msgstr "" #: themes.php:24 msgid "Get more themes!" -msgstr "" +msgstr "Ще теми!" #: transformation_overview.php:21 msgid "Available MIME types" @@ -12315,10 +12290,9 @@ msgid "The slow query rate should be below 5%%, your value is %s%%." msgstr "" #: libraries/advisory_rules.txt:70 -#, fuzzy #| msgid "Show query box" msgid "Slow query rate" -msgstr "Показати блок запиту" +msgstr "Низька частота запитів" #: libraries/advisory_rules.txt:73 msgid "" @@ -12333,10 +12307,9 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:77 -#, fuzzy #| msgid "in query" msgid "Long query time" -msgstr "по запиту" +msgstr "Довгий час запиту" #: libraries/advisory_rules.txt:80 msgid "" @@ -12410,10 +12383,10 @@ msgstr "" #: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 #: libraries/advisory_rules.txt:119 -#, fuzzy, php-format +#, php-format #| msgid "General relation features" msgid "Current version: %s" -msgstr "Загальні можливості" +msgstr "Поточна версія: %s" #: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy @@ -12443,14 +12416,15 @@ msgstr "Вам необхідно оновити до %s %s або пізніш #: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 #: libraries/advisory_rules.txt:135 -#, fuzzy #| msgid "Description" msgid "Distribution" -msgstr "Опис" +msgstr "Дистрибутив" #: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" +"Версія скомпільована з вихідних кодів, не з офіційного двійкового коду " +"MySQL." #: libraries/advisory_rules.txt:125 msgid "" @@ -12507,16 +12481,14 @@ msgid "Available memory on this host: %s" msgstr "" #: libraries/advisory_rules.txt:153 -#, fuzzy #| msgid "Query cache used" msgid "Query cache disabled" -msgstr "Використанний кеш запитів" +msgstr "Кеш запитів вимкнено" #: libraries/advisory_rules.txt:156 -#, fuzzy #| msgid "Tracking is not active." msgid "The query cache is not enabled." -msgstr "Трекінг не активний." +msgstr "Кеш запитів не увімкнено." #: libraries/advisory_rules.txt:157 msgid "" @@ -12531,10 +12503,9 @@ msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" msgstr "" #: libraries/advisory_rules.txt:160 -#, fuzzy #| msgid "Space usage" msgid "Query caching method" -msgstr "Простір, що використовується" +msgstr "Метод кешування запитів" #: libraries/advisory_rules.txt:163 #, fuzzy @@ -12558,10 +12529,10 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:167 -#, fuzzy, php-format +#, php-format #| msgid "Query cache efficiency" msgid "Query cache efficiency (%%)" -msgstr "Ефективність кешу запитів" +msgstr "Ефективність кешу запитів (%%)" #: libraries/advisory_rules.txt:170 msgid "Query cache not running efficiently, it has a low hit rate." @@ -12577,9 +12548,8 @@ msgid "The current query cache hit rate of %s%% is below 20%%" msgstr "" #: libraries/advisory_rules.txt:174 -#, fuzzy msgid "Query Cache usage" -msgstr "Простір, що використовується" +msgstr "Використання кешу запитів" #: libraries/advisory_rules.txt:177 #, php-format @@ -12600,10 +12570,9 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:181 -#, fuzzy #| msgid "Query cache usage" msgid "Query cache fragmentation" -msgstr "Використання кешу запитів" +msgstr "Фрагментація кешу запитів" #: libraries/advisory_rules.txt:184 #, fuzzy @@ -12658,10 +12627,9 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:195 -#, fuzzy #| msgid "Query cache used" msgid "Query cache max size" -msgstr "Використанний кеш запитів" +msgstr "Максимальний розмір кешу запитів" #: libraries/advisory_rules.txt:198 msgid "" @@ -12746,10 +12714,9 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:225 -#, fuzzy #| msgid "Showing rows" msgid "Sort rows" -msgstr "Показано записи " +msgstr "Сортувати рядки" #: libraries/advisory_rules.txt:228 msgid "There are lots of rows being sorted." From ac9f15573bd376a64ba2e01c1361d4959b662349 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xos=C3=A9=20Calvo?= Date: Mon, 21 Jan 2013 19:16:23 +0100 Subject: [PATCH 85/85] Translated using Weblate (Galician) Currently translated at 93.5% (2430 of 2599) --- po/gl.po | 916 +++++++++++++++++++++++++++++-------------------------- 1 file changed, 478 insertions(+), 438 deletions(-) diff --git a/po/gl.po b/po/gl.po index 8e6ab49830..7c508d5d51 100644 --- a/po/gl.po +++ b/po/gl.po @@ -4,10 +4,9 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-01-21 00:59+0100\n" -"PO-Revision-Date: 2013-01-10 13:43+0200\n" -"Last-Translator: Michal Čihař \n" -"Language-Team: Galician \n" +"PO-Revision-Date: 2013-01-21 19:15+0100\n" +"Last-Translator: Xosé \n" +"Language-Team: Galician \n" "Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -310,7 +309,7 @@ msgid "" "click %shere%s." msgstr "" "Desactivouse a configuración de almacenamento de phpMyAdmin. Para saber por " -"que prema %saquí%s." +"que prema %saquí%s." #: db_printview.php:99 db_tracking.php:79 db_tracking.php:198 #: libraries/Menu.class.php:190 libraries/config/messages.inc.php:508 @@ -609,7 +608,6 @@ msgid "Output" msgstr "Saída" #: gis_data_editor.php:402 -#, fuzzy #| msgid "" #| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " #| "string into the \"Value\" field" @@ -621,7 +619,7 @@ msgstr "" "no campo «Valor»" #: import.php:93 -#, fuzzy, php-format +#, php-format #| msgid "" #| "You probably tried to upload too large file. Please refer to " #| "%sdocumentation%s for ways to workaround this limit." @@ -629,8 +627,8 @@ msgid "" "You probably tried to upload a file that is too large. Please refer to " "%sdocumentation%s for a workaround for this limit." msgstr "" -"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a " -"%sdocumentación%s para averiguar como evitar este límite." +"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a %" +"sdocumentación%s para averiguar como evitar este límite." #: import.php:232 import.php:497 msgid "Showing bookmark" @@ -845,7 +843,7 @@ msgid "" "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -"Non se atopou o engadido mbstring de PHP e parece que está a usar un " +"Non se atopou a extensión mbstring de PHP e parece que está a usar un " "conxunto de caracteres multibyte. Sen o engadido mbstring, o phpMyAdmin é " "incapaz de partir cadeas correctamente e pode provocar resultados " "inesperados." @@ -857,10 +855,11 @@ msgid "" "cookie validity configured in phpMyAdmin, because of this, your login will " "expire sooner than configured in phpMyAdmin." msgstr "" -"O parámetro PHP [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] é menor do que a " -"validez das cookies que se configurou en phpMyAdmin; por causa disto, o " -"rexistro caducará antes do que está configurado en phpMyAdmin." +"O parámetro PHP " +"[a@http://php.net/manual/en/session.configuration.php#ini.session.gc-" +"maxlifetime@_blank]session.gc_maxlifetime[/a] é menor do que a validez das " +"cookies que se configurou en phpMyAdmin; por causa disto, o rexistro " +"caducará antes do que está configurado en phpMyAdmin." #: index.php:431 msgid "" @@ -895,7 +894,7 @@ msgid "" msgstr "" "O almacenamento da configuración do phpMyAdmin non está configurado de todo; " "desactiváronse algunhas funcionalidades estendidas. Para saber o por que, " -"prema %saquí%s." +"prema %saquí%s." #: index.php:496 #, php-format @@ -913,7 +912,7 @@ msgid "" "issues." msgstr "" "O servidor estáse a executar con Suhosin. Consulte os posíbeis problemas na " -"%sdocumentation%s." +"%sdocumentación%s." #: js/messages.php:27 libraries/import.lib.php:118 sql.php:337 msgid "\"DROP DATABASE\" statements are disabled." @@ -967,10 +966,10 @@ msgid "Edit Index" msgstr "Editar o índice" #: js/messages.php:44 tbl_indexes.php:339 tbl_indexes.php:347 -#, fuzzy, php-format +#, php-format #| msgid "Add %d column(s) to index" msgid "Add %s column(s) to index" -msgstr "Engadir %d columna(s) ao índice" +msgstr "Engadir %s columna(s) ao índice" #. l10n: Default label for the y-Axis of Charts #: js/messages.php:48 tbl_chart.php:217 @@ -1107,7 +1106,7 @@ msgstr "Memoria do sistema" #: js/messages.php:88 msgid "System swap" -msgstr "Arquivo de intercambio do sistema" +msgstr "Memoria de intercambio do sistema" #: js/messages.php:90 msgid "Average load" @@ -1135,7 +1134,7 @@ msgstr "Memoria usada" #: js/messages.php:97 msgid "Total Swap" -msgstr "Arquivo de intercambio total" +msgstr "Memoria de intercambio total" #: js/messages.php:98 msgid "Cached Swap" @@ -1404,7 +1403,8 @@ msgstr "" #: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -"Cargáronse os datos do rexistro. Consultas executadas neste período de tempo:" +"Cargáronse os datos do rexistro. Consultas executadas neste período de " +"tempo:" #: js/messages.php:166 msgid "Jump to Log table" @@ -1515,14 +1515,14 @@ msgstr "Filas afectadas:" #: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -"Produciuse un fallo ao analizar o ficheiro de configuración. Parece non ser " +"Produciuse un erro ao analizar o ficheiro de configuración. Parece non ser " "código JSON válido." #: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -"Produciuse un fallo ao construír a grella da gráfica coa configuración " +"Produciuse un erro ao construír a grella da gráfica coa configuración " "importada. Restáurase a configuración predeterminada…" #: js/messages.php:199 libraries/Menu.class.php:288 @@ -1551,7 +1551,7 @@ msgstr "Sistema de consellos" #: js/messages.php:208 msgid "Possible performance issues" -msgstr "Posibles erros de rendemento" +msgstr "Posíbeis erros de rendemento" #: js/messages.php:209 msgid "Issue" @@ -1571,7 +1571,7 @@ msgstr "Xustificación" #: js/messages.php:213 msgid "Used variable / formula" -msgstr "Variable/ fórmula utilizada" +msgstr "Variábel/ fórmula utilizada" #: js/messages.php:214 msgid "Test" @@ -1600,12 +1600,12 @@ msgstr "Produciuse un erro ao procesar a petición" #: js/messages.php:225 #, php-format msgid "Error code: %s" -msgstr "" +msgstr "Código de erro: %s" #: js/messages.php:226 #, php-format msgid "Error text: %s" -msgstr "" +msgstr "Texto do erro: %s" #: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 @@ -1859,7 +1859,7 @@ msgstr "Engadir unha opción para a columna " #: js/messages.php:334 #, php-format msgid "%d object(s) created" -msgstr "" +msgstr "Creáronse %d obxecto(s)" #: js/messages.php:337 msgid "Press escape to cancel editing" @@ -1904,22 +1904,20 @@ msgstr "" "eliminar ligazóns poden non funcionar despois de gravar." #: js/messages.php:350 -#, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -"Tamén se poden editar a maioría das columnas
premendo directamente o " -"seu contido." +"Tamén se poden editar a maioría dos valores
preméndoas directamente " +"dúas veces." #: js/messages.php:353 -#, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." msgid "You can also edit most values
by clicking directly on them." msgstr "" -"Tamén se poden editar a maioría das columnas
premendo directamente o " -"seu contido." +"Tamén se poden editar a maioría dos valores
premendo directamente o seu " +"contido." #: js/messages.php:358 msgid "Go to link" @@ -1931,7 +1929,7 @@ msgstr "Copiar nome da columna" #: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." -msgstr "Prema co botón dereito para copiar o nome da columna o portapapeis." +msgstr "Prema co botón dereito para copiar o nome da columna o portarretallos." #: js/messages.php:361 msgid "Show data row(s)" @@ -1954,22 +1952,19 @@ msgid "More" msgstr "Máis" #: js/messages.php:372 -#, fuzzy #| msgid "Show all" msgid "Show Panel" -msgstr "Mostrar todo" +msgstr "Mostrar o panel" #: js/messages.php:373 -#, fuzzy #| msgid "Hide indexes" msgid "Hide Panel" -msgstr "Agochar os índices" +msgstr "Agochar o panel" #: js/messages.php:376 -#, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." -msgstr "Non se atopou o usuario escollido na táboa de privilexios." +msgstr "Non foi posíbel atopar a páxina pedida no historial; pode que caducase." #: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format @@ -1977,8 +1972,8 @@ msgid "" "A newer version of phpMyAdmin is available and you should consider " "upgrading. The newest version is %s, released on %s." msgstr "" -"Existe unha versión máis recente do phpMyAdmin e debería considerar " -"actualizala. A versión máis recente é %s, publicada o %s." +"Existe unha versión máis recente do phpMyAdmin e debería considerar anovala. " +"A versión máis recente é %s, publicada o %s." #. l10n: Latest available phpMyAdmin version #: js/messages.php:381 @@ -2252,48 +2247,50 @@ msgstr "PHP mostrou o seguinte erro:%s" #: libraries/Advisor.class.php:104 #, php-format msgid "Failed evaluating precondition for rule '%s'" -msgstr "" +msgstr "Non foi posíbel avaliar a pre-condición da regra «%s»" #: libraries/Advisor.class.php:121 #, php-format msgid "Failed calculating value for rule '%s'" -msgstr "" +msgstr "Non foi posíbel calcular o valor da regra «%s»" #: libraries/Advisor.class.php:140 #, php-format msgid "Failed running test for rule '%s'" -msgstr "" +msgstr "Non foi posíbel executar a proba da regra «%s»" #: libraries/Advisor.class.php:222 -#, fuzzy, php-format +#, php-format #| msgid "" #| "Failed formatting string for rule '%s'. PHP threw following error: %s" msgid "Failed formatting string for rule '%s'." -msgstr "" -"Produciuse un fallo ao formatar a cadea para regra «%s». PHP lanzou o " -"seguinte erro: %s" +msgstr "Produciuse un erro ao formatar a cadea para a regra «%s»." #: libraries/Advisor.class.php:378 #, php-format msgid "" "Invalid rule declaration on line %1$s, expected line %2$s of previous rule" msgstr "" +"A declaración da regra na liña %1$s é incorrecta; esperábase a liña %2$s da " +"regra anterior" #: libraries/Advisor.class.php:395 -#, fuzzy, php-format +#, php-format #| msgid "Invalid format of CSV input on line %d." msgid "Invalid rule declaration on line %s" -msgstr "O formato de entrada de CSV non é válido na liña %d." +msgstr "Hai unha declaración de regra incorrecta na liña %s" #: libraries/Advisor.class.php:403 #, php-format msgid "Unexpected characters on line %s" -msgstr "" +msgstr "Hai caracteres inesperados na liña %s" #: libraries/Advisor.class.php:417 #, php-format msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" +"Hai un carácter inesperado na liña %1$s. Agardábase unha tabulación mais " +"atopouse «%2$s»" #: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" @@ -2315,7 +2312,7 @@ msgstr "por día" #: libraries/Config.class.php:1063 #, php-format msgid "Existing configuration file (%s) is not readable." -msgstr "O arquivo de configuración existente (%s) non e lexíbel." +msgstr "O ficheiro de configuración existente (%s) non e lexíbel." #: libraries/Config.class.php:1093 msgid "Wrong permissions on configuration file, should not be world writable!" @@ -2430,13 +2427,13 @@ msgstr[0] "Total: %s ocorrencia" msgstr[1] "Total: %s ocorrencias" #: libraries/DbSearch.class.php:330 -#, fuzzy, php-format +#, php-format #| msgid "%1$s match inside table %2$s" #| msgid_plural "%1$s matches inside table %2$s" msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" -msgstr[0] "%1$s ocorrencia dentro da táboa %2$s" -msgstr[1] "%1$s ocorrencias dentro da táboa %2$s" +msgstr[0] "%1$s coincidencia en %2$s" +msgstr[1] "%1$s coincidencias en %2$s" #: libraries/DbSearch.class.php:345 libraries/Menu.class.php:250 #: libraries/Util.class.php:3278 libraries/Util.class.php:3486 @@ -2735,8 +2732,8 @@ msgstr "O ficheiro non foi subido como un ficheiro." #: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -"O tamaño do ficheiro enviado excede a directiva upload_max_filesize de php." -"ini." +"O tamaño do ficheiro enviado excede a directiva upload_max_filesize de " +"php.ini." #: libraries/File.class.php:282 msgid "" @@ -2769,8 +2766,8 @@ msgstr "Produciuse un erro descoñecido ao enviar o ficheiro." #: libraries/File.class.php:475 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgstr "" -"Produciuse un erro ao mover o ficheiro enviado. Consulte a [doc@faq1-11]" -"Pregunta frecuente 1.11[/doc]" +"Produciuse un erro ao mover o ficheiro enviado. Consulte a " +"[doc@faq1-11]Pregunta frecuente 1.11[/doc]" #: libraries/File.class.php:493 msgid "Error while moving uploaded file." @@ -2787,7 +2784,7 @@ msgstr "Abrir unha xanela nova co phpMyAdmin" #: libraries/Header.class.php:386 msgid "Click on the bar to scroll to top of page" -msgstr "" +msgstr "Prema a barra para desprazarse até a parte superior da páxina" #: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:267 @@ -2992,7 +2989,7 @@ msgstr "Motores" #: libraries/insert_edit.lib.php:1182 tbl_chart.php:28 tbl_operations.php:184 #: tbl_relation.php:236 view_operations.php:57 msgid "Error" -msgstr "Houbo un erro" +msgstr "Produciuse un erro" #: libraries/Message.class.php:254 #, php-format @@ -3119,7 +3116,7 @@ msgstr "Estatísticas das consultas" #: libraries/ServerStatusData.class.php:349 msgid "All status variables" -msgstr "Todas as variables de estado" +msgstr "Todas as variábeis de estado" #: libraries/ServerStatusData.class.php:353 msgid "Monitor" @@ -3161,16 +3158,16 @@ msgid "unknown table status: " msgstr "estado da táboa descoñecido: " #: libraries/Table.class.php:728 -#, fuzzy, php-format +#, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" -msgstr "Base de datos de orixe" +msgstr "Non foi posíbel atopar a base de datos de orixe «%s»" #: libraries/Table.class.php:736 -#, fuzzy, php-format +#, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" -msgstr "Non se atopou o tema %s!" +msgstr "Non foi posíbel atopar a base de datos de destino «%s»" #: libraries/Table.class.php:1164 msgid "Invalid database" @@ -3183,7 +3180,7 @@ msgstr "Nome de táboa non válido" #: libraries/Table.class.php:1210 #, php-format msgid "Error renaming table %1$s to %2$s" -msgstr "Houbo un erro ao mudarlle o nome á táboa %1$s para %2$s" +msgstr "Produciuse un erro ao mudarlle o nome á táboa %1$s para %2$s" #: libraries/Table.class.php:1229 #, php-format @@ -3200,8 +3197,8 @@ msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -"Produciuse un fallo ao limpar as preferencias de IU da táboa (vexa $cfg" -"['Servers'][$i]['MaxTableUiprefs'] %s)" +"Produciuse un erro ao limpar as preferencias de IU da táboa (vexa " +"$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" #: libraries/Table.class.php:1535 #, php-format @@ -3332,42 +3329,58 @@ msgstr "Tema" msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" +"Un enteiro de un byte; o intervalo asinado é desde -128 até 127; o intervalo " +"sen asinar é desde 0 até 255" #: libraries/Types.class.php:298 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" msgstr "" +"Un enteiro de dous bytes; o intervalo asinado é desde -32.768 até 32.767; o " +"intervalo sen asinar é desde 0 até 65.535" #: libraries/Types.class.php:300 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" msgstr "" +"Un enteiro de tres bytes; o intervalo asinado é desde -8.388.608 até " +"8.388.607; o intervalo sen asinar é desde 0 até 16.777.215" #: libraries/Types.class.php:302 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295." msgstr "" +"Un enteiro de catro bytes; o intervalo asinado é desde -2.147.483.648 até " +"2.147.483.647; o intervalo sen asinar é desde 0 até 4.294.967.295." #: libraries/Types.class.php:304 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" msgstr "" +"Un enteiro de dous bytes; o intervalo asinado é desde " +"-9.223.372.036.854.775.808 até 9.223.372.036.854.775.807; o intervalo sen " +"asinar é desde 0 até 18.446.744.073.709.551.615" #: libraries/Types.class.php:306 libraries/Types.class.php:712 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" msgstr "" +"Un número de punto fixo (M, D) - o número máximo de díxitos (M) é 65 (por " +"omisión, 10); o número máximo de decimais (D) é 30 (por omisión, 0)" #: libraries/Types.class.php:308 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" +"Un número de vírgula flutuante pequeno; os valores permitidos son " +"-3,402823466E+38 até -1,175494351E-38, 0 e 1,175494351E-38 até " +"3,402823466E+38" #: libraries/Types.class.php:310 msgid "" @@ -3375,63 +3388,80 @@ msgid "" "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" +"Un número de vírgula flutuante de precisión dobre; os valores permitidos " +"son-1,7976931348623157E+308 até -2,2250738585072014E-308, 0 " +"e2,2250738585072014E-308 até 1,7976931348623157E+308" #: libraries/Types.class.php:312 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" msgstr "" +"Sinónimo de DOUBLE (excepción: no modo de SQL REAL_AS_FLOAT é sinónimo de " +"FLOAT)" #: libraries/Types.class.php:314 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" msgstr "" +"Un tipo de campo de bits (M) que almacena M bits por valor (por omisión é 1; " +"o máximo é 64)" #: libraries/Types.class.php:316 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" msgstr "" +"Un sinónimo de TINYINT(1); o valor cero considérase falso; os valores " +"diferentes de cero considéranse verdadeiros" #: libraries/Types.class.php:318 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" -msgstr "" +msgstr "Un alias de BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" #: libraries/Types.class.php:320 libraries/Types.class.php:722 -#, fuzzy, php-format +#, php-format #| msgid "Create version %1$s of %2$s" msgid "A date, supported range is %1$s to %2$s" -msgstr "Crear versión %1$s de %2$s" +msgstr "Unha data; o intervalo aceptado é desde %1$s até %2$s" #: libraries/Types.class.php:322 libraries/Types.class.php:724 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "" +"Unha combinación de data e hora; o intervalo aceptado é desde %1$s até %2$s" #: libraries/Types.class.php:324 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" msgstr "" +"Unha marca temporal; o intervalo é desde 1970-01-01 00:00:01 UTC até " +"2038-01-09 03:14:07 UTC, almacenado como o número de segundos desde a época " +"(1970-01-01 00:00:00 UTC)" #: libraries/Types.class.php:326 libraries/Types.class.php:728 -#, fuzzy, php-format +#, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "A time, range is %1$s to %2$s" -msgstr "Houbo un erro ao mudarlle o nome á táboa %1$s para %2$s" +msgstr "Unha hora; o intervalo é desde %1$s até %2$s" #: libraries/Types.class.php:328 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" msgstr "" +"Un ano nos formatos de catro díxitos (4, por omisión) ou dous díxitos (2); " +"os valores permitidos son 70 (1970) a 69 (2069) ou 1901 a 2155 e 0000" #: libraries/Types.class.php:330 msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" msgstr "" +"Unha cadea de lonxitude fixa (0-255, 1 por omisión) que sempre se enche á " +"dereita con espazos até a lonxitude indicada cando se almacena" #: libraries/Types.class.php:332 libraries/Types.class.php:730 #, php-format @@ -3439,24 +3469,34 @@ msgid "" "A variable-length (%s) string, the effective maximum length is subject to " "the maximum row size" msgstr "" +"Unha cadea de lonxitude variábel (%s); a lonxitude efectiva máxima está " +"suxeita ao tamaño máximo da fileira" #: libraries/Types.class.php:334 msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" msgstr "" +"Unha columna tipo TEXTO cunha lonxitude máxima de 255 (2^8 - 1) caracteres, " +"almacenada nun prefixo de un byte que indica a lonxitude do valor en bytes" #: libraries/Types.class.php:336 libraries/Types.class.php:732 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" msgstr "" +"Unha columna tipo TEXTO cunha lonxitude máxima de 65,535 (2^16 - 1) " +"caracteres, almacenada nun prefixo de un byte que indica a lonxitude do " +"valor en bytes" #: libraries/Types.class.php:338 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" msgstr "" +"Unha columna tipo TEXTO cunha lonxitude máxima de 16,777,215 (2^24 - 1) " +"caracteres, almacenada nun prefixo de un byte que indica a lonxitude do " +"valor en bytes" #: libraries/Types.class.php:340 msgid "" @@ -3464,56 +3504,74 @@ msgid "" "characters, stored with a four-byte prefix indicating the length of the " "value in bytes" msgstr "" +"Unha columna tipo TEXTO cunha lonxitude máxima de 4,294,967,295 ou 4GiB " +"(2^32 - 1) caracteres, almacenada nun prefixo de un byte que indica a " +"lonxitude do valor en bytes" #: libraries/Types.class.php:342 msgid "" "Similar to the CHAR type, but stores binary byte strings rather than non-" "binary character strings" msgstr "" +"Semellante ao tipo CHAR, mais almacena cadeas de bytes binarios no canto de " +"cadeas de caracteres non binarios" #: libraries/Types.class.php:344 msgid "" "Similar to the VARCHAR type, but stores binary byte strings rather than non-" "binary character strings" msgstr "" +"Semellante ao tipo VARCHAR, mais almacena cadeas de bytes binarios no canto " +"de cadeas de caracteres non binarios" #: libraries/Types.class.php:346 msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" msgstr "" +"Unha columna tipo BLOB cunha lonxitude máxima de 255 (2^8 - 1) bytes, " +"almacenada nun prefixo de un byte que indica a lonxitude do valor" #: libraries/Types.class.php:348 msgid "" "A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " "with a three-byte prefix indicating the length of the value" msgstr "" +"Unha columna tipo BLOB cunha lonxitude máxima de 16,777,215 (2^24 - 1) " +"bytes, almacenada nun prefixo de tres bytes que indica a lonxitude do valor" #: libraries/Types.class.php:350 libraries/Types.class.php:736 msgid "" "A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " "a two-byte prefix indicating the length of the value" msgstr "" +"Unha columna tipo BLOB cunha lonxitude máxima de 65,535 (2^16 - 1) bytes, " +"almacenada nun prefixo de dous bytes que indica a lonxitude do valor" #: libraries/Types.class.php:352 msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" msgstr "" +"Unha columna tipo BLOB cunha lonxitude máxima de 4,294,967,295 or 4GiB " +"(2^32 - 1) bytes, almacenada nun prefixo de catro bytes que indica a " +"lonxitude do valor" #: libraries/Types.class.php:354 msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" msgstr "" +"Unha enumeración escollida da lista de até 65.535 valores do valor especial " +"'' " #: libraries/Types.class.php:356 msgid "A single value chosen from a set of up to 64 members" -msgstr "" +msgstr "Un único valor escollido dun conxunto de até 64 membros" #: libraries/Types.class.php:358 msgid "A type that can store a geometry of any type" -msgstr "" +msgstr "Un tipo que pode almacenar unha xeometría de calquera tipo" #: libraries/Types.class.php:360 msgid "A point in 2-dimensional space" @@ -3521,13 +3579,12 @@ msgstr "Un punto nun espacio bidimensonal" #: libraries/Types.class.php:362 msgid "A curve with linear interpolation between points" -msgstr "" +msgstr "Unha curva con interpolación lineal entre puntos" #: libraries/Types.class.php:364 -#, fuzzy #| msgid "Add a polygon" msgid "A polygon" -msgstr "Engadir un polígono" +msgstr "Un polígono" #: libraries/Types.class.php:366 msgid "A collection of points" @@ -3535,15 +3592,15 @@ msgstr "Unha colección de puntos" #: libraries/Types.class.php:368 msgid "A collection of curves with linear interpolation between points" -msgstr "Unha coleccción de curvas con interpolación lineal entre puntos" +msgstr "Unha colección de curvas con interpolación lineal entre puntos" #: libraries/Types.class.php:370 msgid "A collection of polygons" -msgstr "Unha colección de poligonos" +msgstr "Unha colección de polígonos" #: libraries/Types.class.php:372 msgid "A collection of geometry objects of any type" -msgstr "" +msgstr "Unha colección de obxectos xeométricos de calquera tipo" #: libraries/Types.class.php:624 libraries/Types.class.php:974 msgctxt "numeric types" @@ -3551,39 +3608,40 @@ msgid "Numeric" msgstr "Numérico" #: libraries/Types.class.php:643 libraries/Types.class.php:977 -#, fuzzy #| msgid "Create an index" msgctxt "date and time types" msgid "Date and time" -msgstr "Crear un índice novo" +msgstr "Data e hora" #: libraries/Types.class.php:652 libraries/Types.class.php:980 -#, fuzzy #| msgid "Linestring" msgctxt "string types" msgid "String" -msgstr "Cadea de liñas" +msgstr "Cadea" #: libraries/Types.class.php:673 -#, fuzzy #| msgid "Spatial column" msgctxt "spatial types" msgid "Spatial" -msgstr "Columna espacial" +msgstr "Espacial" #: libraries/Types.class.php:708 msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647" msgstr "" +"Un enteiro de catro bytes; o intervalo é desde -2,147,483,648 até " +"2,147,483,647" #: libraries/Types.class.php:710 msgid "" "An 8-byte integer, range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807" msgstr "" +"Un enteiro de oito bytes; o intervalo é desde -9,223,372,03,6,854,775,808 " +"até 9,223,372,03,6,854,775,807" #: libraries/Types.class.php:714 msgid "A system's default double-precision floating-point number" -msgstr "" +msgstr "Un número de vírgula flotante de dupla precisión por omisión do sistema" #: libraries/Types.class.php:716 msgid "True or false" @@ -3591,27 +3649,31 @@ msgstr "Verdadeiro ou falso" #: libraries/Types.class.php:718 msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" -msgstr "" +msgstr "Un alias de BIGINT NOT NULL AUTO_INCREMENT UNIQUE" #: libraries/Types.class.php:720 msgid "Stores a Universally Unique Identifier (UUID)" -msgstr "" +msgstr "Almacena un identificador único universal (UUID)" #: libraries/Types.class.php:726 msgid "" "A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " "UTC; TIMESTAMP(6) can store microseconds" msgstr "" +"Unha marca temporal; o intervalo é desde «0000-01-01 00:00:01» UTC até " +"«9999-12-31 23:59:59» UTC; TIMESTAMP(6) pode almacenar microsegundos" #: libraries/Types.class.php:734 msgid "" "A variable-length (0-65,535) string, uses binary collation for all " "comparisons" msgstr "" +"Unha cadea de lonxitude variábel (0-65.535); emprega colación binaria para " +"todas as comparacións" #: libraries/Types.class.php:738 msgid "An enumeration, chosen from the list of defined values" -msgstr "" +msgstr "Unha enumeración escollida da lista de valores definidos" #: libraries/Util.class.php:223 #, php-format @@ -3633,7 +3695,7 @@ msgstr "Mensaxes do MySQL: " #: libraries/Util.class.php:1165 msgid "Failed to connect to SQL validator!" -msgstr "Non foi posíbel conectar cun válidador de SQL!" +msgstr "Non foi posíbel conectar cun validador de SQL!" #: libraries/Util.class.php:1207 libraries/config/messages.inc.php:485 msgid "Explain SQL" @@ -3729,7 +3791,7 @@ msgstr "Non é posíbel acceder ao directorio que designou para os envíos" #: libraries/Util.class.php:3470 msgid "There are no files to upload" -msgstr "Non hai arquivos para subir" +msgstr "Non hai ficheiros para subir" #: libraries/Util.class.php:3495 libraries/Util.class.php:3496 #: libraries/structure.lib.php:305 @@ -3822,12 +3884,12 @@ msgstr "O índice de servidor non é válido: %s" #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -"O nome de servidor non é válido para o servidor %1$s. Revise a configuración." +"O nome de servidor non é válido para o servidor %1$s. Revise a " +"configuración." #: libraries/common.inc.php:848 msgid "Invalid authentication method set in configuration:" -msgstr "" -"Na configuración indicouse un método de autenticación que non é válido:" +msgstr "Na configuración indicouse un método de autenticación que non é válido:" #: libraries/common.inc.php:970 #, php-format @@ -3836,7 +3898,7 @@ msgstr "Debería actualizar a %s %s ou posterior." #: libraries/common.inc.php:1044 msgid "Error: Token mismatch" -msgstr "" +msgstr "Erro: o token non coincide" #: libraries/common.inc.php:1088 msgid "GLOBALS overwrite attempt" @@ -3869,11 +3931,11 @@ msgstr "Dereita" #: libraries/config.values.php:69 msgid "Click" -msgstr "" +msgstr "Clic" #: libraries/config.values.php:70 msgid "Double click" -msgstr "" +msgstr "Dobre clic" #: libraries/config.values.php:71 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:225 libraries/relation.lib.php:98 @@ -4002,7 +4064,7 @@ msgstr "exportar non vai funcionar, falta a función (%s)" #: libraries/config/FormDisplay.class.php:808 msgid "SQL Validator is disabled" -msgstr "O válidador de SQL está desactivado" +msgstr "O validador de SQL está desactivado" #: libraries/config/FormDisplay.class.php:815 msgid "SOAP extension not found" @@ -4113,10 +4175,13 @@ msgid "" "Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]" "CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" +"Empregue un editor amigábel para editar as consultas de SQL " +"([a@http://codemirror.net/]CodeMirror[/a]) con realce da sintaxe e números " +"de liña" #: libraries/config/messages.inc.php:31 msgid "Enable CodeMirror" -msgstr "" +msgstr "Activar CodeMirror" #: libraries/config/messages.inc.php:32 msgid "" @@ -4226,13 +4291,12 @@ msgstr "Lapela por omisión das táboas" #: libraries/config/messages.inc.php:54 msgid "Whether the table structure actions should be hidden" -msgstr "" +msgstr "Se se desexa agochar as accións da estrutura da táboa" #: libraries/config/messages.inc.php:55 -#, fuzzy #| msgid "Propose table structure" msgid "Hide table structure actions" -msgstr "Propor unha estrutura para a táboa" +msgstr "Agochar as accións da estrutura da táboa" #: libraries/config/messages.inc.php:56 msgid "Show binary contents as HEX by default" @@ -4517,8 +4581,9 @@ msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -"Ordenación dos elementos dun menú despregábel de chaves alleas; [kbd]content" -"[/kbd] son os datos referenciados, [kbd]id[/kbd] é o valor da chave" +"Ordenación dos elementos dun menú despregábel de chaves alleas; " +"[kbd]content[/kbd] son os datos referenciados, [kbd]id[/kbd] é o valor da " +"chave" #: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" @@ -4618,16 +4683,14 @@ msgid "Databases display options" msgstr "Opcións de exhibición das bases de datos" #: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:19 -#, fuzzy #| msgid "Navigation frame" msgid "Navigation panel" -msgstr "Moldura de navegación" +msgstr "Panel de navegación" #: libraries/config/messages.inc.php:178 -#, fuzzy #| msgid "Customize appearance of the navigation frame" msgid "Customize appearance of the navigation panel" -msgstr "Personalizar a aparencia da moldura de navegación" +msgstr "Personalizar a aparencia do panel de navegación" #: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:117 @@ -4643,14 +4706,13 @@ msgid "Tables display options" msgstr "Opcións de exhibición das táboas" #: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:20 -#, fuzzy #| msgid "Main frame" msgid "Main panel" -msgstr "Moldura principal" +msgstr "Panel principal" #: libraries/config/messages.inc.php:184 msgid "Microsoft Office" -msgstr "Microsoft Office" +msgstr "Office da Microsoft" #: libraries/config/messages.inc.php:186 msgid "Open Document" @@ -4760,16 +4822,14 @@ msgid "Customize import defaults" msgstr "Personalizar as opcións de importación por omisión" #: libraries/config/messages.inc.php:209 -#, fuzzy #| msgid "Customize navigation frame" msgid "Customize navigation panel" -msgstr "Personalizar a moldura de navegación" +msgstr "Personalizar o panel de navegación" #: libraries/config/messages.inc.php:210 -#, fuzzy #| msgid "Customize main frame" msgid "Customize main panel" -msgstr "Personalizar a moldura principal" +msgstr "Personalizar o panel principal" #: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:18 @@ -4799,11 +4859,12 @@ msgid "" "strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], " "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -"Se desexa empregar o servizo do válidador de SQL ha de te ren conta que " +"Se desexa empregar o servizo do validador de SQL ha de te ren conta que " "[strong]todas as instrucións de SQL se almacenan de maneira anónima con " -"finalidade estatística[/strong].[br][em][a@http://sqlválidator.mimer.com/]" -"Mimer SQL Validator[/a], Copyright 2002 Upright Database Technology. Todos " -"os dereitos reservados.[/em]" +"finalidade " +"estatística[/strong].[br][em][a@http://sqlválidator.mimer.com/]Mimer SQL " +"Validator[/a], Copyright 2002 Upright Database Technology. Todos os dereitos " +"reservados.[/em]" #: libraries/config/messages.inc.php:220 msgid "Startup" @@ -4820,16 +4881,17 @@ msgstr "Estrutura da base de datos" #: libraries/config/messages.inc.php:223 msgid "Choose which details to show in the database structure (list of tables)" msgstr "" +"Escolla os detalles que desexe mostrar na estrutura da base de datos (lista " +"de táboas)" #: libraries/config/messages.inc.php:224 -#, fuzzy #| msgid "Database structure" msgid "Table structure" -msgstr "Estrutura da base de datos" +msgstr "Estrutura da táboa" #: libraries/config/messages.inc.php:225 msgid "Settings for the table structure (list of columns)" -msgstr "" +msgstr "Configuración da estrutura da táboa (lista de columnas)" #: libraries/config/messages.inc.php:226 msgid "Tabs" @@ -4903,7 +4965,7 @@ msgstr "Importación parcial: permitir interromper" #: libraries/config/messages.inc.php:245 libraries/config/messages.inc.php:252 msgid "Do not abort on INSERT error" -msgstr "Non abortar nos erros de INSERT" +msgstr "Non interromper nos erros de INSERT" #: libraries/config/messages.inc.php:246 libraries/config/messages.inc.php:254 #: libraries/plugins/import/ImportCsv.class.php:78 @@ -5054,25 +5116,25 @@ msgid "Users cannot set a higher value" msgstr "Os usuarios non poden estabelecer un valor máis alto" #: libraries/config/messages.inc.php:284 -#, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of databases displayed in database list" -msgstr "Número máximo de táboas que se mostran na listaxe de táboas" +msgstr "Número máximo de táboas que se mostran na listaxe de bases de datos" #: libraries/config/messages.inc.php:285 msgid "Maximum databases" msgstr "Bases de datos máximas" #: libraries/config/messages.inc.php:286 -#, fuzzy #| msgid "The number of joins that did a full scan of the first table." msgid "" "The number of items that can be displayed on each page of the navigation tree" -msgstr "O número de unións que realizaron un exame completo da primeira táboa." +msgstr "" +"O número de elementos que desexa mostrar en cada páxina da árbore de " +"navegación" #: libraries/config/messages.inc.php:287 msgid "Maximum items in branch" -msgstr "" +msgstr "Número máximo de elementos por galla" #: libraries/config/messages.inc.php:288 msgid "" @@ -5121,20 +5183,18 @@ msgid "Memory limit" msgstr "Límite da memoria" #: libraries/config/messages.inc.php:297 -#, fuzzy #| msgid "Show logo in left frame" msgid "Show logo in navigation panel" -msgstr "Mostrar o logotipo na moldura esquerda" +msgstr "Mostrar o logotipo no panel de navegación" #: libraries/config/messages.inc.php:298 msgid "Display logo" msgstr "Mostrar o logotipo" #: libraries/config/messages.inc.php:299 -#, fuzzy #| msgid "URL where logo in the navigation frame will point to" msgid "URL where logo in the navigation panel will point to" -msgstr "URL ao que apunta o logotipo da moldura de navegación" +msgstr "URL ao que apunta o logotipo do panel de navegación" #: libraries/config/messages.inc.php:300 msgid "Logo link URL" @@ -5153,10 +5213,9 @@ msgid "Logo link target" msgstr "Destino da ligazón do logotipo" #: libraries/config/messages.inc.php:303 -#, fuzzy #| msgid "Display server choice at the top of the left frame" msgid "Display server choice at the top of the navigation panel" -msgstr "Mostrar a escolla de servidor na parte superior da moldura esquerda" +msgstr "Mostrar a escolla de servidor na parte superior do panel de navegación" #: libraries/config/messages.inc.php:304 msgid "Display servers selection" @@ -5167,27 +5226,25 @@ msgid "Target for quick access icon" msgstr "Destino da icona de acceso rápido" #: libraries/config/messages.inc.php:306 -#, fuzzy #| msgid "Minimum number of tables to display the table filter box" msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." -msgstr "Número mínimo de táboas que se mostran na caixa de filtro de táboa" +msgstr "" +"Indica o número mínimo de elementos (táboas, vistas, rutinas e " +"acontecementos) para mostrar unha caixa de filtro." #: libraries/config/messages.inc.php:307 -#, fuzzy #| msgid "Minimum number of tables to display the table filter box" msgid "Minimum number of items to display the filter box" -msgstr "Número mínimo de táboas que se mostran na caixa de filtro de táboa" +msgstr "Número mínimo de elementos para mostrar a caixa de filtro" #: libraries/config/messages.inc.php:308 -#, fuzzy #| msgid "Minimum number of tables to display the table filter box" msgid "Minimum number of databases to display the database filter box" -msgstr "Número m'inimo de táboas que se mostran na caixa de filtro de táboa" +msgstr "Número mínimo de bases de datos para mostrar a caixa de filtro" #: libraries/config/messages.inc.php:309 -#, fuzzy #| msgid "" #| "Only light version; display databases in a tree (determined by the " #| "separator defined below)" @@ -5195,12 +5252,12 @@ msgid "" "Group items in the navigation tree (determined by the separator defined " "below)" msgstr "" -"Só na versión lixeira; mostrar as bases de datos nunha árbore (determinada " -"polo separador que se defina embaixo)" +"Agrupar os elementos na árbore de navegación (determinado polo separador " +"indicado embaixo)" #: libraries/config/messages.inc.php:310 msgid "Group items in the tree" -msgstr "" +msgstr "Agrupar os elementos na árbore" #: libraries/config/messages.inc.php:311 msgid "String that separates databases into different tree levels" @@ -5309,7 +5366,6 @@ msgid "Missing phpMyAdmin configuration storage tables" msgstr "Faltan as táboas de almacenamento da configuración do phpMyadmin" #: libraries/config/messages.inc.php:334 -#, fuzzy #| msgid "" #| "Disable the default warning that is displayed if mcrypt is missing for " #| "cookie authentication" @@ -5317,12 +5373,12 @@ msgid "" "Disable the default warning that is displayed if a difference between the " "MySQL library and server is detected" msgstr "" -"Desactivar o aviso por omisión que aparece se falta mcrypt para a " -"autenticación con cookies" +"Desactivar o aviso por omisión que aparece se se detecta unha diferenza " +"entre a biblioteca de MySQL e o servidor" #: libraries/config/messages.inc.php:335 msgid "Server/library difference warning" -msgstr "" +msgstr "Advertencia de diferenza entre servidor e biblioteca" #: libraries/config/messages.inc.php:337 msgid "Iconic table operations" @@ -5413,13 +5469,12 @@ msgstr "Repetir os cabezallos" #: libraries/config/messages.inc.php:358 msgid "Grid editing: trigger action" -msgstr "" +msgstr "Edición da grella: activar acción" #: libraries/config/messages.inc.php:359 -#, fuzzy #| msgid "Save all edited cells at once" msgid "Grid editing: save all edited cells at once" -msgstr "Gardar todas as celas editadas de vez" +msgstr "Edición da grella: gravar todas as celas editadas inmediatamente" #: libraries/config/messages.inc.php:360 msgid "Directory where exports can be saved on server" @@ -5470,8 +5525,8 @@ msgid "" "swekey.conf)" msgstr "" "A ruta ao ficheiro de configuración da [a@http://swekey.com]autenticación de " -"hardware SweKey[/a] (non se localiza na raíz dos documentos; suxírese: /etc/" -"swekey.conf)" +"hardware SweKey[/a] (non se localiza na raíz dos documentos; suxírese: " +"/etc/swekey.conf)" #: libraries/config/messages.inc.php:371 msgid "SweKey config file" @@ -5486,7 +5541,6 @@ msgid "Authentication type" msgstr "Tipo de autenticación" #: libraries/config/messages.inc.php:374 -#, fuzzy #| msgid "" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/" #| "a] support, suggested: [kbd]pma_bookmark[/kbd]" @@ -5494,15 +5548,15 @@ msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" msgstr "" -"Déixeo en branco se non quere a funcionalidade de [a@http://wiki.phpmyadmin." -"net/pma/bookmark]marcadores[/a]; por omisión: [kbd]pma_bookmark[/kbd]" +"Déixeo en branco se non quere a funcionalidade de " +"[a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] ; por omisión: " +"[kbd]pma_bookmark[/kbd]" #: libraries/config/messages.inc.php:375 msgid "Bookmark table" msgstr "Táboa de marcadores" #: libraries/config/messages.inc.php:376 -#, fuzzy #| msgid "" #| "Leave blank for no column comments/mime types, suggested: [kbd]" #| "pma_column_info[/kbd]" @@ -5510,8 +5564,8 @@ msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]" msgstr "" -"Déixeo en branco se non quere comentarios/tipos mime das columnas; por " -"omisión: [kbd]pma_column_info[/kbd]" +"Déixeo en branco se non quere comentarios/tipos mime das columnas; suxírese: " +"[kbd]pma__column_info[/kbd]" #: libraries/config/messages.inc.php:377 msgid "Column information table" @@ -5527,8 +5581,7 @@ msgstr "Comprimir a conexión" #: libraries/config/messages.inc.php:380 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" -msgstr "" -"Como ligar co servidor; déixeo como [kbd]tcp[/kbd] se non está segura/a" +msgstr "Como ligar co servidor; déixeo como [kbd]tcp[/kbd] se non está segura/a" #: libraries/config/messages.inc.php:381 msgid "Connection type" @@ -5544,8 +5597,8 @@ msgid "" "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" "Un usuario especial de MySQL configurado con permisos limitados; hai máis " -"información dispoñíbel no [a@http://wiki.phpmyadmin.net/pma/controluser]wiki" -"[/a]" +"información dispoñíbel no " +"[a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" #: libraries/config/messages.inc.php:384 msgid "Control user" @@ -5572,7 +5625,6 @@ msgid "Count tables" msgstr "Contar as táboas" #: libraries/config/messages.inc.php:389 -#, fuzzy #| msgid "" #| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" #| "kbd]" @@ -5580,21 +5632,21 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"Déixeo en branco se non quere empregar Designer; por omisión: [kbd]" -"pma_designer_coords[/kbd]" +"Déixeo en branco se non quere empregar Designer; por omisión: " +"[kbd]pma__designer_coords[/kbd]" #: libraries/config/messages.inc.php:390 msgid "Designer table" -msgstr "Táboa de Designer" +msgstr "Táboa do Designer" #: libraries/config/messages.inc.php:391 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -"Máis información no [a@http://sf.net/support/tracker.php?aid=1849494]" -"Seguidor de erros de PMA[/a] e en [a@http://bugs.mysql.com/19588]Erros do " -"MySQL[/a]" +"Máis información no " +"[a@http://sf.net/support/tracker.php?aid=1849494]Seguidor de erros de " +"PMA[/a] e en [a@http://bugs.mysql.com/19588]Erros do MySQL[/a]" #: libraries/config/messages.inc.php:392 msgid "Disable use of INFORMATION_SCHEMA" @@ -5618,7 +5670,6 @@ msgid "Hide databases" msgstr "Agochar as bases de datos" #: libraries/config/messages.inc.php:397 -#, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" #| "[/kbd]" @@ -5627,7 +5678,7 @@ msgid "" "kbd]" msgstr "" "Déixeo en branco se non quere un histórico das consultas SQL; por omisión: " -"[kbd]pma_history[/kbd]" +"[kbd]pma__history[/kbd]" #: libraries/config/messages.inc.php:398 msgid "SQL query history table" @@ -5692,14 +5743,13 @@ msgid "Password for config auth" msgstr "Contrasinal para config auth" #: libraries/config/messages.inc.php:410 -#, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]" msgstr "" -"Déixeo en branco se non quere PDF schema; por omisión: [kbd]pma_pdf_pages[/" -"kbd]" +"Déixeo en branco se non quere PDF schema; por omisión: " +"[kbd]pma__pdf_pages[/kbd]" #: libraries/config/messages.inc.php:411 msgid "PDF schema: pages table" @@ -5713,8 +5763,8 @@ msgid "" msgstr "" "Base de datos empregada para relacións, marcadores e funcionalidades PDF. " "Vexa [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] para a información " -"completa. Déixeo en branco se non lle interesan. Por omisión: [kbd]phpmyadmin" -"[/kbd]" +"completa. Déixeo en branco se non lle interesan. Por omisión: " +"[kbd]phpmyadmin[/kbd]" #: libraries/config/messages.inc.php:413 msgid "Database name" @@ -5731,7 +5781,6 @@ msgid "Server port" msgstr "Porto do servidor" #: libraries/config/messages.inc.php:416 -#, fuzzy #| msgid "" #| "Leave blank for no \"persistent\" recently used tables across sessions, " #| "suggested: [kbd]pma_recent[/kbd]" @@ -5740,14 +5789,13 @@ msgid "" "suggested: [kbd]pma__recent[/kbd]" msgstr "" "Déixeo en branco para eliminar a «persistencia» das táboas utilizadas " -"recentemente entre sesións; suxírese: [kbd]pma_recent[/kbd]" +"recentemente entre sesións; suxírese: [kbd]pma__recent[/kbd]" #: libraries/config/messages.inc.php:417 msgid "Recently used table" msgstr "Táboa usada recentemente" #: libraries/config/messages.inc.php:418 -#, fuzzy #| msgid "" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" #| "links[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -5755,8 +5803,9 @@ msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" -"Déixeo en branco se non quere [a@http://wiki.phpmyadmin.net/pma/relation]" -"ligazóns de relación[/a]; suxírese: [kbd]pma_relation[/kbd]" +"Déixeo en branco se non quere " +"[a@http://wiki.phpmyadmin.net/pma/relation]ligazóns de relación[/a]; " +"suxírese: [kbd]pma__relation[/kbd]" #: libraries/config/messages.inc.php:419 msgid "Relation table" @@ -5805,7 +5854,6 @@ msgid "Use SSL" msgstr "Empregar a SSL" #: libraries/config/messages.inc.php:429 -#, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/" #| "kbd]" @@ -5813,15 +5861,14 @@ msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]" msgstr "" -"Déixeo en branco se non quere PDF schema; por omisión: [kbd]pma_table_coords" -"[/kbd]" +"Déixeo en branco se non quere PDF schema; por omisión: " +"[kbd]pma__table_coords[/kbd]" #: libraries/config/messages.inc.php:430 msgid "PDF schema: table coordinates" msgstr "PDF schema: coordenadas de táboa" #: libraries/config/messages.inc.php:431 -#, fuzzy #| msgid "" #| "Table to describe the display columns, leave blank for no support; " #| "suggested: [kbd]pma_table_info[/kbd]" @@ -5830,14 +5877,13 @@ msgid "" "suggested: [kbd]pma__table_info[/kbd]" msgstr "" "Táboa para describir a presentación dos campos; déixeo en branco para non o " -"activar; suxírese: [kbd]pma_table_info[/kbd]" +"activar; suxírese: [kbd]pma__table_info[/kbd]" #: libraries/config/messages.inc.php:432 msgid "Display columns table" msgstr "Mostrar a táboa de columnas" #: libraries/config/messages.inc.php:433 -#, fuzzy #| msgid "" #| "Leave blank for no \"persistent\" tables'UI preferences across sessions, " #| "suggested: [kbd]pma_table_uiprefs[/kbd]" @@ -5846,7 +5892,7 @@ msgid "" "suggested: [kbd]pma__table_uiprefs[/kbd]" msgstr "" "Déixeo en branco se non desexa preferencias «persistentes» da interface das " -"táboas entre sesións; suxírese: [kbd]pma_table_uiprefs[/kbd]" +"táboas entre sesións; suxírese: [kbd]pma__table_uiprefs[/kbd]" #: libraries/config/messages.inc.php:434 msgid "UI preferences table" @@ -5899,7 +5945,6 @@ msgid "Statements to track" msgstr "Instrucións que seguir" #: libraries/config/messages.inc.php:443 -#, fuzzy #| msgid "" #| "Leave blank for no SQL query tracking support, suggested: [kbd]" #| "pma_tracking[/kbd]" @@ -5927,7 +5972,6 @@ msgid "Automatically create versions" msgstr "Crear versions automaticamente" #: libraries/config/messages.inc.php:447 -#, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" #| "pma_userconfig[/kbd]" @@ -5936,7 +5980,7 @@ msgid "" "pma__userconfig[/kbd]" msgstr "" "Déixeo en branco se non quere almacenar as preferencias na base de datos; " -"suxerido: [kbd]pma_history[/kbd]" +"suxerido: [kbd]pma__userconfig[/kbd]" #: libraries/config/messages.inc.php:448 msgid "User preferences storage table" @@ -5990,6 +6034,8 @@ msgstr "Mostrar o formulario para crear bases de datos" #: libraries/config/messages.inc.php:458 msgid "Show or hide a column displaying the Creation timestamp for all tables" msgstr "" +"Mostrar ou agochar unha columna que mostre a marca temporal da creación de " +"todas as táboas" #: libraries/config/messages.inc.php:459 msgid "Show Creation timestamp" @@ -5999,15 +6045,19 @@ msgstr "Mostrar marca temporal de creación" msgid "" "Show or hide a column displaying the Last update timestamp for all tables" msgstr "" +"Mostrar ou agochar unha columna que mostre a marca temporal da última " +"actualización de todas as táboas" #: libraries/config/messages.inc.php:461 msgid "Show Last update timestamp" -msgstr "" +msgstr "Mostrar a última actualización da marca temporal" #: libraries/config/messages.inc.php:462 msgid "" "Show or hide a column displaying the Last check timestamp for all tables" msgstr "" +"Mostrar ou agochar unha columna que mostre a marca temporal da última " +"comprobación de todas as táboas" #: libraries/config/messages.inc.php:463 msgid "Show Last check timestamp" @@ -6030,8 +6080,8 @@ msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -"Define se os campos tipo deben ser mostrados inicialmente no modo editar/" -"inserir" +"Define se os campos tipo deben ser mostrados inicialmente no modo " +"editar/inserir" #: libraries/config/messages.inc.php:467 msgid "Show field types" @@ -6058,8 +6108,8 @@ msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -"Mostra unha ligazón á saída de [a@http://php.net/manual/function.phpinfo.php]" -"phpinfo()[/a]" +"Mostra unha ligazón á saída de " +"[a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a]" #: libraries/config/messages.inc.php:473 msgid "Show phpinfo() link" @@ -6091,8 +6141,8 @@ msgstr "Reter a caixa de consultas" #: libraries/config/messages.inc.php:479 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -"Permitir que se mostren as estatísticas das bases de datos e das táboas (p." -"ex. o uso do espazo)" +"Permitir que se mostren as estatísticas das bases de datos e das táboas " +"(p.ex. o uso do espazo)" #: libraries/config/messages.inc.php:480 msgid "Show statistics" @@ -6115,7 +6165,7 @@ msgstr "Ignorar as táboas bloqueadas" #: libraries/config/messages.inc.php:488 msgid "Requires SQL Validator to be enabled" -msgstr "Require que o válidador SQL estea activado" +msgstr "Require que o validador SQL estea activado" #: libraries/config/messages.inc.php:490 #: libraries/display_change_password.lib.php:61 @@ -6139,7 +6189,7 @@ msgstr "" #: libraries/config/messages.inc.php:492 msgid "Enable SQL Validator" -msgstr "Activar o válidador de SQL" +msgstr "Activar o validador de SQL" #: libraries/config/messages.inc.php:493 msgid "" @@ -6217,8 +6267,8 @@ msgid "" msgstr "" "Escriba os proxies como [kbd]IP: cabezallo HTTP de confianza[/kbd]. O " "exemplo seguinte especifica que o phpMyAdmin debería confiar nun cabezallo " -"HTTP_X_FORWARDED_FOR (X-Forwarded-For) proveniente do proxy 1.2.3.4:[br][kbd]" -"1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" +"HTTP_X_FORWARDED_FOR (X-Forwarded-For) proveniente do proxy " +"1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" #: libraries/config/messages.inc.php:510 msgid "List of trusted proxies for IP allow/deny" @@ -6226,8 +6276,7 @@ msgstr "Lista de proxies de confianza para permiso/denegación de IP" #: libraries/config/messages.inc.php:511 msgid "Directory on server where you can upload files for import" -msgstr "" -"Directorio do servidor ao que se poden enviar os ficheiros que importar" +msgstr "Directorio do servidor ao que se poden enviar os ficheiros que importar" #: libraries/config/messages.inc.php:512 msgid "Upload directory" @@ -6414,17 +6463,20 @@ msgstr "Detalles…" #: libraries/dbi/drizzle-wrappers.lib.php:387 msgid "Can't seek in an unbuffered result set" -msgstr "" +msgstr "Non é posíbel buscar nun conxunto de resultados sen pasar polo buffer" #: libraries/dbi/drizzle-wrappers.lib.php:408 msgid "Can't count rows in an unbuffered result set" msgstr "" +"Non é posíbel contar as fileiras nun conxunto de resultados sen pasar polo " +"buffer" #: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:159 #: libraries/dbi/mysqli.dbi.lib.php:206 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -"Fallou a conexión para controluser tal e como se define na súa configuración." +"Fallou a conexión para «controluser» tal e como está definida na " +"configuración." #: libraries/display_change_password.lib.php:53 #: libraries/replication_gui.lib.php:371 @@ -6485,7 +6537,7 @@ msgstr "Número de columnas" #: libraries/display_export.lib.php:49 msgid "Could not load export plugins, please check your installation!" msgstr "" -"Non foi posíbel cargar as extensións de exportación. Comprobe a instalación!" +"Non foi posíbel cargar os engadidos de exportación. Comprobe a instalación!" #: libraries/display_export.lib.php:96 msgid "Exporting databases from the current server" @@ -6635,27 +6687,27 @@ msgstr "Conversión de codificación:" #: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" -msgstr "" +msgstr "%1$s da galla %2$s" #: libraries/display_git_revision.lib.php:58 msgid "no branch" -msgstr "" +msgstr "ningunha galla" #: libraries/display_git_revision.lib.php:64 msgid "Git revision" -msgstr "" +msgstr "Revisión do git" #: libraries/display_git_revision.lib.php:67 -#, fuzzy, php-format +#, php-format #| msgid "Create version %1$s of %2$s" msgid "committed on %1$s by %2$s" -msgstr "Crear versión %1$s de %2$s" +msgstr "remitido o %1$s por %2$s" #: libraries/display_git_revision.lib.php:75 -#, fuzzy, php-format +#, php-format #| msgid "Create version %1$s of %2$s" msgid "authored on %1$s by %2$s" -msgstr "Crear versión %1$s de %2$s" +msgstr "creado o %1$s por %2$s" #: libraries/display_import.lib.php:69 msgid "" @@ -6674,7 +6726,7 @@ msgstr "%s de %s" #: libraries/display_import.lib.php:86 msgid "Uploading your import file…" -msgstr "Subindo o arquivo a importar…" +msgstr "Subindo o ficheiro de importación..." #: libraries/display_import.lib.php:94 #, php-format @@ -6729,8 +6781,8 @@ msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" msgstr "" -"O nome dun ficheiro comprimido debe rematar en .[formato].[compresión]. Exemplo: .sql.zip" +"O nome dun ficheiro comprimido debe rematar en " +".[formato].[compresión]. Exemplo: .sql.zip" #: libraries/display_import.lib.php:245 msgid "File uploads are not allowed on this server." @@ -6749,7 +6801,6 @@ msgstr "" "continuará desde a posición %d." #: libraries/display_import.lib.php:289 -#, fuzzy #| msgid "" #| "Allow the interruption of an import in case the script detects it is " #| "close to the PHP timeout limit. (This might be good way to import " @@ -6927,8 +6978,8 @@ msgid "" "method." msgstr "" "Se o ficheiro temporal usado para a creación rápida dun índice de MyISAM for " -"máis grande que se se usar o caché de chaves na cantidade que se especifique " -"aquí, preferir o método da caché de chaves." +"máis grande que se se usar o caché de chaves na cantidade que se " +"especifique aquí, preferir o método da caché de chaves." #: libraries/engines/myisam.lib.php:47 msgid "Repair threads" @@ -6940,7 +6991,8 @@ msgid "" "parallel (each index in its own thread) during the repair by sorting process." msgstr "" "Se este valor é maior que 1, os índices das táboas MyISAM créanse en " -"paralelo (cada índice no seu propio fío) durante o proceso Reparar ordenando." +"paralelo (cada índice no seu propio fío) durante o proceso Reparar " +"ordenando." #: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" @@ -7102,10 +7154,10 @@ msgid "" "will be deleted, otherwise they are renamed and given the next highest " "number." msgstr "" -"Este é o número de ficheiros de rexistro de transaccións (pbxt/system/xlog*." -"xt) que vai manter o sistema. Se o número de ficheiros de rexistro excede " -"este valor, os ficheiros de rexistro antigos elimínanse; se non, múdaselles " -"o nome e dáselles o número máis alto seguinte." +"Este é o número de ficheiros de rexistro de transaccións " +"(pbxt/system/xlog*.xt) que vai manter o sistema. Se o número de ficheiros de " +"rexistro excede este valor, os ficheiros de rexistro antigos elimínanse; se " +"non, múdaselles o nome e dáselles o número máis alto seguinte." #: libraries/engines/pbxt.lib.php:131 #, php-format @@ -7488,7 +7540,7 @@ msgstr "descoñecido" #: libraries/navigation/Navigation.class.php:61 msgid "An error has occured while loading the navigation tree" -msgstr "" +msgstr "Produciuse un erro ao cargar a árbore de navegación" #: libraries/navigation/NavigationHeader.class.php:182 msgid "Home" @@ -7510,38 +7562,37 @@ msgstr "Recargar a moldura de navegación" #, php-format msgid "%s other result found" msgid_plural "%s other results found" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "atopouse %s resultado máis" +msgstr[1] "atopáronse outros %s resultados" #: libraries/navigation/NavigationTree.class.php:1027 -#, fuzzy #| msgid "Filter tables by name" msgid "filter databases by name" -msgstr "Filtrar táboas por nome" +msgstr "filtrar as bases de dato polo nome" #: libraries/navigation/NavigationTree.class.php:1028 #: libraries/navigation/NavigationTree.class.php:1054 -#, fuzzy #| msgid "Clear series" msgid "Clear Fast Filter" -msgstr "Limpar esta series" +msgstr "Limpar o filtro rápido" #: libraries/navigation/NavigationTree.class.php:1053 -#, fuzzy #| msgid "Filter tables by name" msgid "filter items by name" -msgstr "Filtrar as táboas polo nome" +msgstr "filtrar os elementos polo nome" #. l10n: The word "Node" must not be translated here #: libraries/navigation/NodeFactory.class.php:41 #, php-format msgid "Invalid class name \"%1$s\", using default of \"Node\"" -msgstr "" +msgstr "O nome de clase «%1$s» é incorrecto; emprégase o predefinido «Nodo»" #: libraries/navigation/NodeFactory.class.php:65 #, php-format msgid "Could not include class \"%1$s\", file \"%2$s\" not found" msgstr "" +"Non foi imposíbel incluír a clase «%1$s»; non foi posíbel atopar o ficheiro " +"«%2$s»" #: libraries/navigation/Nodes/Node_Column_Container.class.php:26 #: libraries/sql_query_form.lib.php:271 @@ -7549,14 +7600,12 @@ msgid "Columns" msgstr "Columnas" #: libraries/navigation/Nodes/Node_Column_Container.class.php:38 -#, fuzzy #| msgid "New" msgctxt "Create new column" msgid "New" -msgstr "Novo" +msgstr "Nova" #: libraries/navigation/Nodes/Node_Event_Container.class.php:36 -#, fuzzy #| msgid "New" msgctxt "Create new event" msgid "New" @@ -7569,14 +7618,12 @@ msgid "Functions" msgstr "Funcións" #: libraries/navigation/Nodes/Node_Function_Container.class.php:36 -#, fuzzy #| msgid "New" msgctxt "Create new function" msgid "New" -msgstr "Novo" +msgstr "Nova" #: libraries/navigation/Nodes/Node_Index_Container.class.php:38 -#, fuzzy #| msgid "New" msgctxt "Create new index" msgid "New" @@ -7590,21 +7637,18 @@ msgstr "Procedementos" #: libraries/navigation/Nodes/Node_Procedure_Container.class.php:36 #: libraries/rte/rte_footer.lib.php:29 -#, fuzzy #| msgid "New" msgctxt "Create new procedure" msgid "New" msgstr "Novo" #: libraries/navigation/Nodes/Node_Table_Container.class.php:40 -#, fuzzy #| msgid "New" msgctxt "Create new table" msgid "New" -msgstr "Novo" +msgstr "Nova" #: libraries/navigation/Nodes/Node_Trigger_Container.class.php:36 -#, fuzzy #| msgid "New" msgctxt "Create new trigger" msgid "New" @@ -7616,15 +7660,14 @@ msgid "Views" msgstr "Vistas" #: libraries/navigation/Nodes/Node_View_Container.class.php:36 -#, fuzzy #| msgid "New" msgctxt "Create new view" msgid "New" -msgstr "Novo" +msgstr "Nova" #: libraries/operations.lib.php:75 msgid "Rename database to" -msgstr "Renomear a base de datos a" +msgstr "Renomear a base de datos como" #: libraries/operations.lib.php:107 #, php-format @@ -7837,7 +7880,7 @@ msgstr "Entrada (login)" #: libraries/plugins/auth/AuthenticationCookie.class.php:99 msgid "Your session has expired. Please log in again." -msgstr "" +msgstr "A súa sesión xa expirou. Tenteo de novo." #: libraries/plugins/auth/AuthenticationCookie.class.php:197 #: libraries/plugins/auth/AuthenticationCookie.class.php:207 @@ -8072,16 +8115,14 @@ msgid "PHP Version" msgstr "Versión do PHP" #: libraries/plugins/export/ExportMediawiki.class.php:84 -#, fuzzy #| msgid "Export contents" msgid "Export table names" -msgstr "Exportar o contido" +msgstr "Exportar os nomes das táboas" #: libraries/plugins/export/ExportMediawiki.class.php:90 -#, fuzzy #| msgid "horizontal (rotated headers)" msgid "Export table headers" -msgstr "horizontal (cabezallos rotados)" +msgstr "Exportar os cabezallos das táboas" #: libraries/plugins/export/ExportPdf.class.php:97 msgid "(Generates a report containing the data of a single table)" @@ -8134,20 +8175,19 @@ msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" -"Encerrar os nomes das táboas e das columnas entre aspas invertidas " -"(Protexe os nomes das columnas e as táboas formadas con caracteres especiais " -"ou palabras chave)" +"Encerrar os nomes das táboas e das columnas entre aspas invertidas " +"(Protexe os nomes das columnas e as táboas formadas con caracteres " +"especiais ou palabras chave)" #: libraries/plugins/export/ExportSql.class.php:295 -#, fuzzy #| msgid "Object creation options" msgid "Data creation options" -msgstr "Opcións de creación de obxectos" +msgstr "Opcións de creación de datos" #: libraries/plugins/export/ExportSql.class.php:299 #: libraries/plugins/export/ExportSql.class.php:1649 msgid "Truncate table before insert" -msgstr "Vaciar táboa antes de inserir" +msgstr "Baleirar a táboa antes de inserir" #: libraries/plugins/export/ExportSql.class.php:305 msgid "Instead of INSERT statements, use:" @@ -8177,8 +8217,8 @@ msgid "" "(1,2,3)" msgstr "" "incluír os nomes das columnas en todas as instrucións INSERT " -"
    Exemplo: INSERT INTO nome_taboa (col_A,col_B," -"col_C) VALUES (1,2,3)" +"
    Exemplo: INSERT INTO nome_taboa " +"(col_A,col_B,col_C) VALUES (1,2,3)" #: libraries/plugins/export/ExportSql.class.php:361 msgid "" @@ -8241,7 +8281,7 @@ msgstr "RELACIÓNS PARA A TÁBOA" #: libraries/plugins/export/ExportSql.class.php:1566 msgid "Error reading data:" -msgstr "Houbo un erro ao ler os datos:" +msgstr "Produciuse un erro ao ler os datos:" #: libraries/plugins/export/ExportXml.class.php:102 msgid "Object creation options (all are recommended)" @@ -8268,7 +8308,8 @@ msgid "" msgstr "" "Se os datos de cada fileira do ficheiro non están na mesma orde que na base " "de datos, enumere aquí os nomes das columnas correspondentes. Os nomes das " -"columnas teñen que estar separados por vírgulas e non encerrados entre aspas." +"columnas teñen que estar separados por vírgulas e non encerrados entre " +"aspas." #: libraries/plugins/import/ImportCsv.class.php:127 msgid "Column names: " @@ -8312,10 +8353,10 @@ msgid "MediaWiki Table" msgstr "Táboa do MediaWiki" #: libraries/plugins/import/ImportMediawiki.class.php:303 -#, fuzzy, php-format +#, php-format #| msgid "Invalid format of CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." -msgstr "O formato de entrada de CSV non é válido na liña %d." +msgstr "O formato de entrada de mediawiki non é válido na liña:
%s." #: libraries/plugins/import/ImportOds.class.php:88 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" @@ -8377,13 +8418,15 @@ msgstr "XML" #: libraries/plugins/import/ShapeRecord.class.php:58 #, php-format msgid "Geometry type '%s' is not supported by MySQL." -msgstr "" +msgstr "MySQL non recoñece o tipo de xeometría «%s»." #: libraries/plugins/transformations/abstract/AppendTransformationsPlugin.class.php:32 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." msgstr "" +"Engade texto a unha cadea. A única opción é o texto que se engade (encerrado " +"entre aspas simples; por omisión unha cadea baleira)." #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:31 msgid "" @@ -8397,13 +8440,13 @@ msgid "" "gmdate() function." msgstr "" "Mostra unha columna TIME, TIMESTAMP, DATETIME ou unha marca de tempo " -"numérica de UNIXcomo hora e data con formato. A primeira opción é a " +"numérica de UNIX como hora e data con formato. A primeira opción é a " "diferenza (en horas) que se engade á hora ou data (Por omisión: 0). Empregue " "a segunda opción para indicar unha cadea de formato de data/hora diferente. " -"A terceira opción determina se se desexa ver a hora local ou a UTC (empregue " -"as cadeas «local»ou «utc») para iso. Segundo isto, o formato de data ten un " -"valor diferente - para «local» vexa a documentación acerca da función de PHP " -"strftime() e para «utc» faise empregando a función gmdate()." +"A terceira opción determina se se desexa ver a hora local ou a UTC " +"(empregue as cadeas «local»ou «utc») para iso. Segundo isto, o formato de " +"data ten un valor diferente - para «local» vexa a documentación acerca da " +"función de PHP strftime() e para «utc» faise empregando a función gmdate()." #: libraries/plugins/transformations/abstract/DownloadTransformationsPlugin.class.php:31 msgid "" @@ -8418,7 +8461,6 @@ msgstr "" "segunda opción, a primeira debe conter só unha cadea baleira." #: libraries/plugins/transformations/abstract/ExternalTransformationsPlugin.class.php:31 -#, fuzzy #| msgid "" #| "UX ONLY: Launches an external application and feeds it the field data " #| "standard input. Returns the standard output of the application. The ault " @@ -8445,13 +8487,14 @@ msgstr "" "SÓ EN LINUX: Inicia un aplicativo externa e envíalle o campo de datos por " "medio da entrada normal. Devolve a saída normal do aplicativo. Por omisión é " "Tidy, para que resulte código HTML claro. Por razóns de seguranza, ten que " -"editar manualmente o ficheiro libraries/transformations/text_plain__external." -"inc.php e inserir as ferramentas que queira permitir que funcionen. A " -"primeira opción, polo tanto, é o número do programa que quere usar e a " -"segunda opción son os parámetros do programa. O terceiro parámetro, se for " -"1, usará htmlspecialchars() para convertir a saída (Por omisión é 1). Un " -"cuarto parámetro, se for 1, porá un NOWRAP na cela de contidos para que toda " -"a saída se mostre sen reformatar (Por omisión é 1)" +"editar manualmente o ficheiro " +"libraries/plugins/transformations/Text_Plain_External.class.php e inserir as " +"ferramentas que queira permitir que funcionen. A primeira opción, polo " +"tanto, é o número do programa que quere usar e a segunda opción son os " +"parámetros do programa. O terceiro parámetro, se for 1, usará " +"htmlspecialchars() para converter a saída (Por omisión é 1). Un cuarto " +"parámetro, se for 1, porá un NOWRAP na cela de contidos para que toda a " +"saída se mostre sen reformatar (por omisión é 1)" #: libraries/plugins/transformations/abstract/FormattedTransformationsPlugin.class.php:31 msgid "" @@ -8505,7 +8548,7 @@ msgstr "" "Só mostra parte dunha cadea. A primeira opción é o número de caracteres que " "hai que saltar desde o comezo da cadea (por omisión, 0). A segunda opción é " "o número de caracteres que devolver (Por omisión: até o fin da cadea). A " -"terceira opción é a cadea que engadir e/ou antepór cando se trunque (Por " +"terceira opción é a cadea que engadir e/ou antepor cando se trunque (Por " "omisión: «…»)." #: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33 @@ -8609,8 +8652,8 @@ msgid "" "code>), for example by starting from config.sample.inc.php." msgstr "" "Active as funcionalidades avanzadas no ficheiro de configuración " -"(config.inc.php) comezando, por exemplo con config.sample." -"inc.php." +"(config.inc.php) comezando, por exemplo con " +"config.sample.inc.php." #: libraries/relation.lib.php:278 msgid "Re-login to phpMyAdmin to load the updated configuration file." @@ -8679,8 +8722,8 @@ msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -"Nesta listaxe só son visíbeis os escravos que se inicien coa opción --report-" -"host=nome_da_máquina." +"Nesta listaxe só son visíbeis os escravos que se inicien coa opción " +"--report-host=nome_da_máquina." #: libraries/replication_gui.lib.php:264 server_replication.php:183 msgid "Add slave replication user" @@ -8834,23 +8877,23 @@ msgstr "O definidor ten que estar no formato «nomedeusuario@nomedeservidor»" #: libraries/rte/rte_events.lib.php:574 msgid "You must provide an event name" -msgstr "Debe proporcionar un nome de acontecemento" +msgstr "Debe indicar un nome de acontecemento" #: libraries/rte/rte_events.lib.php:588 msgid "You must provide a valid interval value for the event." -msgstr "Debe proporcionar un valor do intervalo válido para o acontecemento." +msgstr "Debe indicar un valor do intervalo válido para o acontecemento." #: libraries/rte/rte_events.lib.php:603 msgid "You must provide a valid execution time for the event." -msgstr "Debe proporcionar un tempo de execución válido para o acontecemento." +msgstr "Debe indicar un tempo de execución válido para o acontecemento." #: libraries/rte/rte_events.lib.php:607 msgid "You must provide a valid type for the event." -msgstr "Debe proporcionar un tipo válido para o acontecemento." +msgstr "Debe indicar un tipo válido para o acontecemento." #: libraries/rte/rte_events.lib.php:631 msgid "You must provide an event definition." -msgstr "Debe proporcionar unha definición do acontecemento." +msgstr "Debe indicar unha definición do acontecemento." #: libraries/rte/rte_footer.lib.php:91 msgid "OFF" @@ -8875,6 +8918,10 @@ msgid "" "fail![/strong] Please use the improved 'mysqli' extension to avoid any " "problems." msgstr "" +"Está a empregar a extensión obsoleta de PHP «mysql», que non pode xestionar " +"consultas múltiples. [strong]A execución de varias rutinas almacenadas pode " +"fallar![/strong] Empregue a extensión mellorada «mysqli para evitar " +"problemas." #: libraries/rte/rte_routines.lib.php:280 #: libraries/rte/rte_routines.lib.php:1079 @@ -8951,7 +8998,7 @@ msgstr "Acceso de datos SQL" #: libraries/rte/rte_routines.lib.php:1086 msgid "You must provide a routine name" -msgstr "Debe proporcionar un nome á rutina" +msgstr "Debe indicar un nome á rutina" #: libraries/rte/rte_routines.lib.php:1112 #, php-format @@ -8977,7 +9024,7 @@ msgstr "Ten que fornecer un tipo de devolución válida para a rutina." #: libraries/rte/rte_routines.lib.php:1202 msgid "You must provide a routine definition." -msgstr "Debe proporcionar unha definición da rutina." +msgstr "Debe indicar unha definición da rutina." #: libraries/rte/rte_routines.lib.php:1288 #, php-format @@ -8988,10 +9035,8 @@ msgstr "Resultados da execución da rutina %s" #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" -msgstr[0] "" -"%d fileira afectada pola última instrución de dentro do procedemento" -msgstr[1] "" -"%d fileiras afectadas pola última instrución de dentro do procedemento" +msgstr[0] "%d fileira afectada pola última instrución de dentro do procedemento" +msgstr[1] "%d fileiras afectadas pola última instrución de dentro do procedemento" #: libraries/rte/rte_routines.lib.php:1421 #: libraries/rte/rte_routines.lib.php:1429 @@ -9032,23 +9077,23 @@ msgstr "Tempo" #: libraries/rte/rte_triggers.lib.php:452 msgid "You must provide a trigger name" -msgstr "Debe proporcionar un nome ao disparador" +msgstr "Debe indicar un nome ao disparador" #: libraries/rte/rte_triggers.lib.php:459 msgid "You must provide a valid timing for the trigger" -msgstr "Debe proporcionar unha sincronización válida para o disparador" +msgstr "Debe indicar unha sincronización válida para o disparador" #: libraries/rte/rte_triggers.lib.php:466 msgid "You must provide a valid event for the trigger" -msgstr "Debe proporcionar un acontecemento válido para o disparador" +msgstr "Debe indicar un acontecemento válido para o disparador" #: libraries/rte/rte_triggers.lib.php:474 msgid "You must provide a valid table name" -msgstr "Debe proporcionar un nome de táboa válido" +msgstr "Debe indicar un nome de táboa válido" #: libraries/rte/rte_triggers.lib.php:480 msgid "You must provide a trigger definition." -msgstr "Debe proporcionar unha definición do disparador." +msgstr "Debe indicar unha definición do disparador." #: libraries/rte/rte_words.lib.php:22 msgid "Add routine" @@ -9528,7 +9573,8 @@ msgstr "Permite eliminar táboas." msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -"Permite engadir usuarios e privilexios sen recargar as táboas de privilexios." +"Permite engadir usuarios e privilexios sen recargar as táboas de " +"privilexios." #: libraries/server_privileges.lib.php:1032 msgid "Login Information" @@ -9581,7 +9627,6 @@ msgid "User has been added." msgstr "O usuario foi engadido." #: libraries/server_privileges.lib.php:1625 -#, fuzzy #| msgid "New" msgctxt "Create new user" msgid "New" @@ -9776,9 +9821,9 @@ msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" msgstr "" -"Parece que houbo un problema na súa consulta de SQL. Se máis abaixo aparece " -"unha mensaxe de erro do servidor de MySQL, isto pode axudar a diagnosticar o " -"problema" +"Parece que se produciu un erro na súa consulta de SQL. Se máis abaixo " +"aparece unha mensaxe de erro do servidor de MySQL, isto pode axudar a " +"diagnosticar o problema" #: libraries/sqlparser.lib.php:171 msgid "" @@ -9914,14 +9959,13 @@ msgid "Fulltext" msgstr "Texto completo" #: libraries/structure.lib.php:1423 libraries/structure.lib.php:1519 -#, fuzzy #| msgid "Remove column(s)" msgid "Move columns" -msgstr "Eliminar columna(s)" +msgstr "Mover columna(s)" #: libraries/structure.lib.php:1426 msgid "Move the columns by dragging them up and down." -msgstr "" +msgstr "Mova as columnas arrastrándoas para riba e para baixo." #: libraries/structure.lib.php:1460 msgid "Edit view" @@ -10008,10 +10052,9 @@ msgid "A primary key has been added on %s" msgstr "Engadiuse unha chave primaria a %s" #: libraries/structure.lib.php:2025 libraries/structure.lib.php:2096 -#, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" -msgstr "Examinar valores claramente distintos" +msgstr "Valores diferentes" #: libraries/structure.lib.php:2028 libraries/structure.lib.php:2031 msgid "Add primary key" @@ -10052,10 +10095,9 @@ msgid "Table %1$s has been altered successfully" msgstr "Alterouse a táboa %1$s sen problemas" #: libraries/structure.lib.php:2536 -#, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." -msgstr "Elimináronse sen problemas os usuarios seleccionados." +msgstr "Movéronse as columnas satisfactoriamente." #: libraries/tbl_columns_definition_form.inc.php:101 msgid "" @@ -10078,10 +10120,9 @@ msgstr "" "barras ou aspas e empregando este formato: a" #: libraries/tbl_columns_definition_form.inc.php:148 -#, fuzzy #| msgid "Remove column(s)" msgid "Move column" -msgstr "Eliminar columna(s)" +msgstr "Mover columna" #: libraries/tbl_columns_definition_form.inc.php:158 #, php-format @@ -10090,7 +10131,7 @@ msgid "" "transformations, click on %stransformation descriptions%s" msgstr "" "Para unha lista das opcións de transformación dispoñíbeis e as súas " -"transformacións de tipos MIME, prema %sdescricións das transformacións%s" +"transformacións de tipos MIME, prema %sdescricións das transformacións%s" #: libraries/tbl_columns_definition_form.inc.php:170 msgid "Transformation options" @@ -10130,10 +10171,10 @@ msgid "first" msgstr "Primeiro" #: libraries/tbl_columns_definition_form.inc.php:642 -#, fuzzy, php-format +#, php-format #| msgid "After %s" msgid "after %s" -msgstr "Despois de %s" +msgstr "despois de %s" #: libraries/tbl_columns_definition_form.inc.php:739 msgid "Table name" @@ -10200,11 +10241,11 @@ msgstr "Mostrar/Agochar o menú esquerdo" #: pmd_general.php:86 msgid "View in fullscreen" -msgstr "" +msgstr "Ver a pantalla completa" #: pmd_general.php:90 msgid "Exit fullscreen" -msgstr "" +msgstr "Saír da pantalla completa" #: pmd_general.php:95 msgid "Save position" @@ -10415,8 +10456,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Pode configurar máis opcións modificando config.inc.php, p.ex. usando o " -"%sScript de configuración%s." +"Pode configurar máis opcións modificando config.inc.php, p.ex. usando o %" +"sScript de configuración%s." #: prefs_manage.php:302 msgid "Save to browser's storage" @@ -10784,8 +10825,8 @@ msgstr "" #: server_status.php:103 msgid "This MySQL server works as slave in replication process." msgstr "" -"Este servidor funciona como escravo nun proceso de replicación." +"Este servidor funciona como escravo nun proceso de " +"replicación." #: server_status.php:109 msgid "" @@ -10826,7 +10867,7 @@ msgstr "Tentativas falidas" #: server_status.php:253 msgid "Aborted" -msgstr "Cancelado" +msgstr "Interrompido" #: server_status.php:313 msgid "ID" @@ -10875,8 +10916,8 @@ msgid "" "no clearly measurable improvement." msgstr "" "A mellor maneira de axustar o sistema sería modificar só unha opción de cada " -"vez, observar ou someter a base de datos a probas e desfacer o cambio se non " -"se apreciaron melloras medíbeis." +"vez, observar ou someter a base de datos a probas e desfacer o cambio se " +"non se apreciaron melloras medíbeis." #: server_status_monitor.php:472 msgid "Start Monitor" @@ -10991,8 +11032,8 @@ msgid "" "it is advisable to select only a small time span and to disable the " "general_log and empty its table once monitoring is not required any more." msgstr "" -"Activar general_log pode incrementar a carga do servidor entre un 5% e un " -"15%. Teña tamén en conta que xerar estatísticas a partir de rexistros é unha " +"Activar general_log pode incrementar a carga do servidor entre un 5% e un 15" +"%. Teña tamén en conta que xerar estatísticas a partir de rexistros é unha " "tarefa que require un traballo intensivo, polo que se recomenda escoller só " "un tempo limitado e desactivar general_log e baleirar a súa táboa cando non " "se requira máis esa vixilancia." @@ -11128,8 +11169,8 @@ msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -"O número de conexións que se cancelaron porque o cliente morreu sen fechar " -"axeitadamente a conexión." +"O número de conexións que se interromperon porque o cliente morreu sen " +"fechar axeitadamente a conexión." #: server_status_variables.php:335 msgid "The number of failed attempts to connect to the MySQL server." @@ -11267,9 +11308,9 @@ msgid "" "you have joins that don't use keys properly." msgstr "" "Número de peticións para ler unha fileira baseadas nunha posición fixa. Isto " -"é alto se está a realizar moitas consultas que requiran ordenar o resultado. " -"Posibelmente terá un monte de consultas que esixan que MySQL examine táboas " -"completas ou ten unións que non usan as chaves axeitadamente." +"é alto se está a realizar moitas consultas que requiran ordenar o " +"resultado. Posibelmente terá un monte de consultas que esixan que MySQL " +"examine táboas completas ou ten unións que non usan as chaves axeitadamente." #: server_status_variables.php:418 msgid "" @@ -11376,8 +11417,8 @@ msgid "" msgstr "" "Normalmente, escríbese no buffer de InnoDB como tarefa de fondo. Porén, de " "se precisar ler ou crear unha páxina e non haber páxinas limpas dispoñíbeis, " -"hai que agardar a que se limpen. Este contador vai contando cantas veces hai " -"que esperar. Se o tamaño do buffer é o axeitado, este valor debería ser " +"hai que agardar a que se limpen. Este contador vai contando cantas veces " +"hai que esperar. Se o tamaño do buffer é o axeitado, este valor debería ser " "pequeno." #: server_status_variables.php:486 @@ -11548,10 +11589,9 @@ msgstr "" "empregado." #: server_status_variables.php:597 -#, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" -msgstr "Porcentaxe de uso do límite de ficheiros abertos" +msgstr "Porcentaxe de caché chave empregada (valor calculado)" #: server_status_variables.php:600 msgid "The number of requests to read a key block from the cache." @@ -11565,13 +11605,16 @@ msgid "" msgstr "" "Número de lecturas físicas dun bloque chave desde o disco. Se key_reads for " "grande, é que, posiblemente, o valor de key_fuffer_size é demasiado baixo. A " -"relación de perdas da caché pódese calcular así: Key_reads/Key_read_requests." +"relación de perdas da caché pódese calcular así: " +"Key_reads/Key_read_requests." #: server_status_variables.php:609 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" +"A caché chave calculouse erroneamente como a proporción de lecturas físicas " +"comparada coas solicitudes de lectura (valor calculado)" #: server_status_variables.php:613 msgid "The number of requests to write a key block to the cache." @@ -11585,6 +11628,8 @@ msgstr "Número de escritas físicas dun bloque chave no disco." msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" +"Porcentaxe de escritas físicas comparada coas solicitudes de escrita (valor " +"calculado)" #: server_status_variables.php:623 msgid "" @@ -11817,10 +11862,9 @@ msgstr "" "de fíos.)" #: server_status_variables.php:759 -#, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" -msgstr "Porcentaxe de caché de fíos %%" +msgstr "Porcentaxe de impactos na caché de fíos (valor calculado)" #: server_status_variables.php:762 msgid "The number of threads that are not sleeping." @@ -11999,7 +12043,7 @@ msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" -"Produciuse un fallo ao ler a versión. Talvez non haxa conexión ou o servidor " +"Produciuse un erro ao ler a versión. Talvez non haxa conexión ou o servidor " "de actualizacións non responda." #: setup/lib/index.lib.php:165 @@ -12016,8 +12060,8 @@ msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" -"Está a empregar o sistema de versións Git; execute [kbd]git pull[/kbd] :-)" -"[br]A versión estable máis recente é %s, publicada o %s." +"Está a empregar o sistema de versións Git; execute [kbd]git pull[/kbd] " +":-)[br]A versión estable máis recente é %s, publicada o %s." #: setup/lib/index.lib.php:203 msgid "No newer stable version is available" @@ -12097,8 +12141,8 @@ msgid "" "most. Values larger than 1800 may pose a security risk such as impersonation." msgstr "" "A %svalidez das cookies de identificación%s deberíase reducir a un máximo de " -"1800 seconds (30 minutos). Os valores superiores a 1800 poden supor un risco " -"de seguranza, como a suplantación de personalidade." +"1800 seconds (30 minutos). Os valores superiores a 1800 poden supor un " +"risco de seguranza, como a suplantación de personalidade." #: setup/lib/index.lib.php:312 #, php-format @@ -12118,8 +12162,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Se pensa que é preciso, empregue opcións de protección adicionais - " -"%sautenticación do servidor%s e %slista de proxies de confianza%s. Porén, a " +"Se pensa que é preciso, empregue opcións de protección adicionais - %" +"sautenticación do servidor%s e %slista de proxies de confianza%s. Porén, a " "protección baseada no IP pode non ser de fiar se o IP pertence a un ISP ao " "que estean ligados miles de usuarios, incluído vostede." @@ -12175,8 +12219,7 @@ msgstr "A chave é curta de máis, debería ter un mínimo de oito caracteres." #: setup/lib/index.lib.php:431 msgid "Key should contain letters, numbers [em]and[/em] special characters." -msgstr "" -"A chave debería conter letras, números [em]e[/em] caracteres especiais." +msgstr "A chave debería conter letras, números [em]e[/em] caracteres especiais." #: setup/validate.php:22 msgid "Wrong data" @@ -12188,10 +12231,9 @@ msgid "Using bookmark \"%s\" as default browse query." msgstr "A empregar o marcador «%s» como consulta de navegación por omisión." #: sql.php:381 -#, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" -msgstr "Creouse o marcador %s" +msgstr "Non se creou o marcador" #: sql.php:914 msgid "Showing as PHP code" @@ -12219,10 +12261,9 @@ msgid "Label" msgstr "Etiqueta" #: tbl_chart.php:43 -#, fuzzy #| msgid "No data found" msgid "No data to display" -msgstr "Non se atoparon datos" +msgstr "Non hai datos que mostrar" #: tbl_chart.php:132 msgctxt "Chart type" @@ -12247,7 +12288,7 @@ msgstr "Curvas spline" #: tbl_chart.php:141 msgctxt "Chart type" msgid "Area" -msgstr "" +msgstr "Áreas" #: tbl_chart.php:144 msgctxt "Chart type" @@ -12255,11 +12296,10 @@ msgid "Pie" msgstr "Sectores" #: tbl_chart.php:148 -#, fuzzy #| msgid "Time" msgctxt "Chart type" msgid "Timeline" -msgstr "Tempo" +msgstr "Liña de tempo" #: tbl_chart.php:155 msgid "Stacked" @@ -12359,10 +12399,9 @@ msgstr "" "(«PRIMARIA» debe ser o nome de e só de unha chave primaria)" #: tbl_indexes.php:227 -#, fuzzy #| msgid "Comment" msgid "Comment:" -msgstr "Comentario" +msgstr "Comentario:" #: tbl_indexes.php:239 msgid "Index type:" @@ -12479,10 +12518,10 @@ msgid "Tracking statements" msgstr "Instrucións de seguimento" #: tbl_tracking.php:523 tbl_tracking.php:671 -#, fuzzy, php-format +#, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" -msgstr "Mostrar %s con datas de %s a %s polo usuario %s %s" +msgstr "Mostrar %1$s con datas de %2$s to %3$s polo usuario %4$s %5$s" #: tbl_tracking.php:531 msgid "Delete tracking data row from report" @@ -12667,8 +12706,8 @@ msgstr "" #, php-format msgid "The slow query rate should be below 5%%, your value is %s%%." msgstr "" -"A taxa de consultas lentas deberían estar por debaixo do 5%% e o valor é %s" -"%%." +"A taxa de consultas lentas deberían estar por debaixo do 5%% e o valor é %s%" +"%." #: libraries/advisory_rules.txt:70 msgid "Slow query rate" @@ -12736,7 +12775,6 @@ msgid "log_slow_queries is set to 'OFF'" msgstr "log_slow_queries esta configurado como «OFF»" #: libraries/advisory_rules.txt:95 -#, fuzzy #| msgid "" #| "Enable slow query logging by setting {log_slow_queries} to 'ON'. This " #| "will help troubleshooting badly performing queries." @@ -12744,14 +12782,13 @@ msgid "" "Enable slow query logging by setting {slow_query_log} to 'ON'. This will " "help troubleshooting badly performing queries." msgstr "" -"Active o rexistro de consultas lentas configurando {long_slow_queries} como " +"Active o rexistro de consultas lentas configurando {slow_query_log} como " "«ON». Con isto detéctanse as consultas con desempeño defectuoso." #: libraries/advisory_rules.txt:96 -#, fuzzy #| msgid "log_slow_queries is set to 'OFF'" msgid "slow_query_log is set to 'OFF'" -msgstr "log_slow_queries esta configurado como «OFF»" +msgstr "slow_query_log esta configurado como «OFF»" #: libraries/advisory_rules.txt:100 msgid "Release Series" @@ -12916,9 +12953,10 @@ msgid "" "cache, especially if you have multiple slaves." msgstr "" "Está a empregar a caché de consultas de MySQL cunha base de datos de " -"bastante tráfico. Sería boa idea considerar o uso de memcached no canto da " -"caché de consultas de MySQL, especialmente se ten varios escravos." +"bastante tráfico. Sería boa idea considerar o uso de memcached no canto da caché de consultas de MySQL, " +"especialmente se ten varios escravos." #: libraries/advisory_rules.txt:165 #, php-format @@ -13326,8 +13364,8 @@ msgstr "" "disco, independentemente do valor destas variábeis. Para eliminalas hai que " "reescribir as consultas para que eviten esas condicións (Nunha táboa " "temporal: presenza dunha columna tipo BLOB ou TEXT ou presenza dunha columna " -"maior de 512 bytes), como se menciona no comezo dun artigo do grupo " +"maior de 512 bytes), como se menciona no comezo dun artigo do grupo " "Pythian" #: libraries/advisory_rules.txt:274 @@ -13358,8 +13396,9 @@ msgstr "" "disco, independentemente do valor destas variábeis. Para eliminalas hai que " "reescribir as consultas para que eviten esas condicións (Nunha táboa " "temporal: presenza dunha columna tipo BLOB ou TEXT ou presenza dunha columna " -"maior de 512 bytes), como se menciona na documentación do MySQL" +"maior de 512 bytes), como se menciona na documentación do MySQL" #: libraries/advisory_rules.txt:281 #, php-format @@ -13656,11 +13695,11 @@ msgstr "" #: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" -msgstr "Porcentaxe de conexións canceladas" +msgstr "Porcentaxe de conexións interrompidas" #: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." -msgstr "Canceláronse demasiadas conexións." +msgstr "Interrompéronse demasiadas conexións." #: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" @@ -13669,37 +13708,37 @@ msgid "" "source-of-aborted_connects/\">This article might help you track down the " "source." msgstr "" -"As conexións son canceladas xeralmente cando non poden ser autorizadas. Este artigo podería ser de axuda para " +"As conexións son interrompidas xeralmente cando non poden ser autorizadas. " +"Este artigo podería ser de axuda para " "rastrear o motivo das mesmas." #: libraries/advisory_rules.txt:404 #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "" -"O %s%% de todas as conexións foi cancelado. Este valor debería ser inferior " -"ao 1%%" +"O %s%% de todas as conexións foi interrompido. Este valor debería ser " +"inferior ao 1%%" #: libraries/advisory_rules.txt:406 msgid "Rate of aborted connections" -msgstr "Taxa de conexións canceladas" +msgstr "Taxa de conexións interrompidas" #: libraries/advisory_rules.txt:411 #, php-format msgid "" "Aborted connections rate is at %s, this value should be less than 1 per hour" msgstr "" -"A taxa de conexións canceladas está en %s; este valor debería ser inferior a " -"1 por hora" +"A taxa de conexións interrompidas está en %s; este valor debería ser " +"inferior a 1 por hora" #: libraries/advisory_rules.txt:413 msgid "Percentage of aborted clients" -msgstr "Porcentaxe de clientes cancelados" +msgstr "Porcentaxe de clientes interrompidos" #: libraries/advisory_rules.txt:416 libraries/advisory_rules.txt:423 msgid "Too many clients are aborted." -msgstr "Demasiadas clientes foron cancelados." +msgstr "Demasiadas clientes foron interrompidos" #: libraries/advisory_rules.txt:417 libraries/advisory_rules.txt:424 msgid "" @@ -13707,27 +13746,28 @@ msgid "" "MySQL properly. This can be due to network issues or code not closing a " "database handler properly. Check your network and code." msgstr "" -"Os clientes cancélanse normalmente cando non fecharon a súa conexión a MySQL " -"axeitadamente. isto pódese deber a problemas na rede ou a que o código non " -"fecha o xestor da base de datos axeitadamente. Comprobe a rede e o código." +"Os clientes interrómpense normalmente cando non fecharon a súa conexión a " +"MySQL axeitadamente. isto pódese deber a problemas na rede ou a que o código " +"non fecha o xestor da base de datos axeitadamente. Comprobe a rede e o " +"código." #: libraries/advisory_rules.txt:418 #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "" -"O %s%% de todos os clientes foi cancelado. Este valor debería ser inferior " -"ao 2%%" +"O %s%% de todos os clientes foi interrompido. Este valor debería ser " +"inferior ao 2%%" #: libraries/advisory_rules.txt:420 msgid "Rate of aborted clients" -msgstr "Taxa de clientes cancelados" +msgstr "Taxa de clientes interrompidos" #: libraries/advisory_rules.txt:425 #, php-format msgid "Aborted client rate is at %s, this value should be less than 1 per hour" msgstr "" -"A taxa de clientes cancelados está en %s; este valor debería ser inferior a " -"1 por hora" +"A taxa de clientes interrompidos está en %s; este valor debería ser inferior " +"a 1 por hora" #: libraries/advisory_rules.txt:429 msgid "Is InnoDB disabled?" @@ -13778,9 +13818,9 @@ msgstr "" "chega simplemente con cambiar o valor desta variábel. hai que apagar o " "servidor, retirar os ficheiros de rexistro de InnoDB, configurar o novo " "valor en my.cnf, iniciar o servidor e a seguir comprobar os rexistros de " -"erro par ver que todo fose ben. Consulte tamén esta entrada de blogue" +"erro par ver que todo fose ben. Consulte tamén esta entrada de blogue" #: libraries/advisory_rules.txt:441 #, php-format @@ -13815,11 +13855,12 @@ msgstr "" "Normalmente abonda con configurar innodb_log_file_size como o 25%% do tamaño " "de {innodb_buffer_pool_size}. Un innodb_log_file moi grande enlentece " "considerabelmente o tempo de recuperación a seguir unha quebra da base de " -"datos. Consulte tamén este artigo. Hai " -"que apagar o servidor, retirar os ficheiros de rexistro de InnoDB, " -"configurar o novo valor en my.cnf, iniciar o servidor, e a seguir comprobar " -"os rexistros de erro para comprobar que todo fose ben. Consulte tamén este artigo. Hai que apagar o servidor, retirar " +"os ficheiros de rexistro de InnoDB, configurar o novo valor en my.cnf, " +"iniciar o servidor, e a seguir comprobar os rexistros de erro para comprobar " +"que todo fose ben. Consulte tamén esta entrada de blogue" @@ -13859,8 +13900,9 @@ msgstr "" "memoria dos demais servizos e as táboas que non sexan de InnoDB e configurar " "esta variábel en consecuencia. Se se configura demasiado alta, o sistema " "comezará a gravar no disco, o que reduce o desempeño de maneira " -"significativa. Consulte tamén este artigo" +"significativa. Consulte tamén este artigo" #: libraries/advisory_rules.txt:455 #, php-format @@ -13890,8 +13932,9 @@ msgid "" "refman/5.5/en/concurrent-inserts.html\">MySQL Documentation" msgstr "" "Configurar {concurrent_insert} como 1 reduce a contención entre as lecturas " -"e as escritas nunha táboa dada. Consulte tamén a documentación do MySQL" +"e as escritas nunha táboa dada. Consulte tamén a documentación do MySQL" #: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" @@ -14054,8 +14097,8 @@ msgstr "concurrent_insert está definido como 0" #~ "Target database will be completely synchronized with source database. " #~ "Source database will remain unchanged." #~ msgstr "" -#~ "A base de datos de destino sincronizarase completamente coa base de datos " -#~ "de orixe. A base de datos de orixe ficará sen alteracións." +#~ "A base de datos de destino sincronizarase completamente coa base de datos de " +#~ "orixe. A base de datos de orixe ficará sen alteracións." #, fuzzy #~| msgid "New" @@ -14064,8 +14107,7 @@ msgstr "concurrent_insert está definido como 0" #~ msgstr "Novo" #~ msgid "phpMyAdmin is more friendly with a frames-capable browser." -#~ msgstr "" -#~ "phpMyAdmin utilízase mellor cun navegador que acepte molduras." +#~ msgstr "phpMyAdmin utilízase mellor cun navegador que acepte molduras." #~ msgid "" #~ "Enabling this allows a page located on a different domain to call " @@ -14107,8 +14149,8 @@ msgstr "concurrent_insert está definido como 0" #~ "If tooltips are enabled and a database comment is set, this will flip the " #~ "comment and the real name" #~ msgstr "" -#~ "Se as mensaxes estiveren activadas e existir un comentario da base de " -#~ "datos, isto substitúe o comentario polo nome real" +#~ "Se as mensaxes estiveren activadas e existir un comentario da base de datos, " +#~ "isto substitúe o comentario polo nome real" #~ msgid "Display database comment instead of its name" #~ msgstr "Mostrar o comentario da base de datos no canto do seu nome" @@ -14119,8 +14161,8 @@ msgstr "concurrent_insert está definido como 0" #~ "['LeftFrameTableSeparator'] directive, so only the folder is called like " #~ "the alias, the table name itself stays unchanged" #~ msgstr "" -#~ "Cando isto se configura como [kbd]aniñado[/kbd], o alcume do nome da " -#~ "táboa só se emprega para partir/aniñar as táboas de acordo coa directiva " +#~ "Cando isto se configura como [kbd]aniñado[/kbd], o alcume do nome da táboa " +#~ "só se emprega para partir/aniñar as táboas de acordo coa directiva " #~ "$cfg['LeftFrameTableSeparator'], polo que só o cartafol se chama como o " #~ "alcume; o nome mesmo da táboa fica sen cambiar" @@ -14179,8 +14221,7 @@ msgstr "concurrent_insert está definido como 0" #~ "MIME types printed in italics do not have a separate transformation " #~ "function" #~ msgstr "" -#~ "Os tipos MIME en cursiva non contan cunha función de transformación " -#~ "separada" +#~ "Os tipos MIME en cursiva non contan cunha función de transformación separada" #~ msgid "rows" #~ msgstr "Visualizar" @@ -14375,8 +14416,8 @@ msgstr "concurrent_insert está definido como 0" #~ "appropriate column name." #~ msgstr "" #~ "O campo que se mostra aparece en rosa. Para indicar que un campo se " -#~ "seleccione ou non como o campo a mostrar, prema a icona \"Escoller o " -#~ "campo a mostrar\" e a seguir o nome do campo apropiado." +#~ "seleccione ou non como o campo a mostrar, prema a icona \"Escoller o campo a " +#~ "mostrar\" e a seguir o nome do campo apropiado." #~ msgid "memcached usage" #~ msgstr "Uso do espazo" @@ -14476,8 +14517,8 @@ msgstr "concurrent_insert está definido como 0" #~ "deber a que php atopou un erro nel ou a que php non puido atopar o " #~ "ficheiro.
Invoque o ficheiro de configuración directamente mediante o " #~ "vínculo que hai máis abaixo e lea a mensaxe de erro de php que reciba. Na " -#~ "maioría dos casos simplemente faltan unha aspa ou un ponto e vírcula
Se recibe unha páxina en branco é que todo está ben." +#~ "maioría dos casos simplemente faltan unha aspa ou un ponto e vírcula
Se " +#~ "recibe unha páxina en branco é que todo está ben." #~ msgid "Dropping Procedure" #~ msgstr "Procedementos" @@ -14506,8 +14547,8 @@ msgstr "concurrent_insert está definido como 0" #~ "Server traffic: These tables show the network traffic statistics " #~ "of this MySQL server since its startup." #~ msgstr "" -#~ "Tráfico do servidor: Estas táboas mostran as estatísticas do " -#~ "tráfico da rede neste servidor de MySQL desde que se iniciou." +#~ "Tráfico do servidor: Estas táboas mostran as estatísticas do tráfico " +#~ "da rede neste servidor de MySQL desde que se iniciou." #~ msgid "" #~ "Query statistics: Since its startup, %s queries have been sent to " @@ -14590,9 +14631,9 @@ msgstr "concurrent_insert está definido como 0" #~ "\\'b')." #~ msgstr "" #~ "Introduza os valores das opcións de transformación empregando este " -#~ "formato:'a', 100, b,'c'…
Se necesitar introducir unha barra para " -#~ "trás (\"\\\") ou aspas simples (\"'\") entre estes valores, precédaos de " -#~ "barra para trás (por exemplo '\\\\xyz' ou 'a\\'b')." +#~ "formato:'a', 100, b,'c'…
Se necesitar introducir unha barra para trás " +#~ "(\"\\\") ou aspas simples (\"'\") entre estes valores, precédaos de barra para " +#~ "trás (por exemplo '\\\\xyz' ou 'a\\'b')." #~ msgid "" #~ "Enter each value in a separate field. If you ever need to put a backslash " @@ -14600,9 +14641,9 @@ msgstr "concurrent_insert está definido como 0" #~ "a backslash (for example '\\\\xyz' or 'a\\'b')." #~ msgstr "" #~ "Introduza os valores das opcións de transformación empregando este " -#~ "formato:'a', 100, b,'c'…
Se necesitar introducir unha barra para " -#~ "trás (\"\\\") ou aspas simples (\"'\") entre estes valores, precédaos de " -#~ "barra para trás (por exemplo '\\\\xyz' ou 'a\\'b')." +#~ "formato:'a', 100, b,'c'…
Se necesitar introducir unha barra para trás " +#~ "(\"\\\") ou aspas simples (\"'\") entre estes valores, precédaos de barra para " +#~ "trás (por exemplo '\\\\xyz' ou 'a\\'b')." #~ msgid "New table" #~ msgstr "Sen táboas" @@ -14629,9 +14670,9 @@ msgstr "concurrent_insert está definido como 0" #~ "SQL queries settings, for SQL Query box options see [a@?page=form&" #~ "formset=main_frame#tab_Sql_box]Navigation frame[/a] settings" #~ msgstr "" -#~ "Configuración das solicitudes de SQL; para as opcións da caixa Procuras " -#~ "SQL vexa a configuración da [a@?page=form&" -#~ "formset=main_frame#tab_Sql_box]moldura de navegación[/a]" +#~ "Configuración das solicitudes de SQL; para as opcións da caixa Procuras SQL " +#~ "vexa a configuración da " +#~ "[a@?page=form&formset=main_frame#tab_Sql_box]moldura de navegación[/a]" #~ msgid "Remove carriage return/line field characters within columns" #~ msgstr "Eliminar os caracteres CRLF dentro dos campos" @@ -14646,8 +14687,7 @@ msgstr "concurrent_insert está definido como 0" #~ msgstr "lembrar o modelo" #~ msgid "Imported file compression will be automatically detected from: %s" -#~ msgstr "" -#~ "A compresión do ficheiro importado detectarase automaticamente de: %s" +#~ msgstr "A compresión do ficheiro importado detectarase automaticamente de: %s" #~ msgid "Add into comments" #~ msgstr "Engadir aos comentarios"