The branch, master has been updated via e13ddb2bf60f9056bbd1a34673f8036582df2780 (commit) via 89014777e1b3ff667ac1a3fc36b45a8a38c7f88d (commit) from d2873126e10eff11ad68d2b4fb113379174dd4f7 (commit)
- Log ----------------------------------------------------------------- commit e13ddb2bf60f9056bbd1a34673f8036582df2780 Author: Michal Čihař mcihar@novell.com Date: Fri Apr 9 11:52:21 2010 +0200
Update po files.
commit 89014777e1b3ff667ac1a3fc36b45a8a38c7f88d Author: Michal Čihař mcihar@novell.com Date: Fri Apr 9 11:48:49 2010 +0200
Convert to PHP code and use pgettext to provide context.
We already use Insert/Update/Delete in other places and this one might have to be translated differently.
-----------------------------------------------------------------------
Summary of changes: libraries/sql_query_form.lib.php | 12 +++---- po/af.po | 41 +++++++++++++++++++-- po/ar.po | 41 +++++++++++++++++++-- po/az.po | 41 +++++++++++++++++++-- po/be.po | 41 +++++++++++++++++++-- po/be@latin.po | 41 +++++++++++++++++++-- po/bg.po | 41 +++++++++++++++++++-- po/bn.po | 41 +++++++++++++++++++-- po/bs.po | 41 +++++++++++++++++++-- po/ca.po | 41 +++++++++++++++++++-- po/cs.po | 46 ++++++++++++++++++++---- po/da.po | 41 +++++++++++++++++++-- po/de.po | 41 +++++++++++++++++++-- po/el.po | 41 +++++++++++++++++++-- po/en_GB.po | 64 ++++++++++++++++++++++---------- po/es.po | 41 +++++++++++++++++++-- po/et.po | 41 +++++++++++++++++++-- po/eu.po | 41 +++++++++++++++++++-- po/fa.po | 41 +++++++++++++++++++-- po/fi.po | 41 +++++++++++++++++++-- po/fr.po | 75 +++++++++++++++++++++++++------------- po/gl.po | 41 +++++++++++++++++++-- po/he.po | 41 +++++++++++++++++++-- po/hi.po | 41 +++++++++++++++++++-- po/hr.po | 41 +++++++++++++++++++-- po/hu.po | 41 +++++++++++++++++++-- po/id.po | 41 +++++++++++++++++++-- po/it.po | 41 +++++++++++++++++++-- po/ja.po | 41 +++++++++++++++++++-- po/ka.po | 41 +++++++++++++++++++-- po/ko.po | 41 +++++++++++++++++++-- po/lt.po | 43 ++++++++++++++++++++-- po/lv.po | 41 +++++++++++++++++++-- po/mk.po | 41 +++++++++++++++++++-- po/mn.po | 41 +++++++++++++++++++-- po/ms.po | 41 +++++++++++++++++++-- po/nb.po | 59 ++++++++++++++++++++---------- po/nl.po | 41 +++++++++++++++++++-- po/phpmyadmin.pot | 31 ++++++++++++++-- po/pl.po | 41 +++++++++++++++++++-- po/pt.po | 41 +++++++++++++++++++-- po/pt_BR.po | 41 +++++++++++++++++++-- po/ro.po | 41 +++++++++++++++++++-- po/ru.po | 41 +++++++++++++++++++-- po/si.po | 41 +++++++++++++++++++-- po/sk.po | 41 +++++++++++++++++++-- po/sl.po | 41 +++++++++++++++++++-- po/sq.po | 41 +++++++++++++++++++-- po/sr.po | 41 +++++++++++++++++++-- po/sr@latin.po | 41 +++++++++++++++++++-- po/sv.po | 41 +++++++++++++++++++-- po/te.po | 41 +++++++++++++++++++-- po/th.po | 41 +++++++++++++++++++-- po/tr.po | 46 ++++++++++++++++++++---- po/tt.po | 41 +++++++++++++++++++-- po/uk.po | 41 +++++++++++++++++++-- po/uz.po | 41 +++++++++++++++++++-- po/uz@latin.po | 41 +++++++++++++++++++-- po/zh_CN.po | 66 +++++++++++++++++++++------------ po/zh_TW.po | 41 +++++++++++++++++++-- 60 files changed, 2263 insertions(+), 270 deletions(-)
diff --git a/libraries/sql_query_form.lib.php b/libraries/sql_query_form.lib.php index 2ba0490..fe9c273 100644 --- a/libraries/sql_query_form.lib.php +++ b/libraries/sql_query_form.lib.php @@ -298,13 +298,11 @@ function PMA_sqlQueryFormInsert($query = '', $is_querywindow = false, $delimiter .$auto_sel . $locking . '>' . htmlspecialchars($query) . '</textarea>' . "\n"; // Add buttons to generate query easily for select all,single select,insert,update and delete if(count($fields_list)) { - ?> - <input type='button' value='<?php echo __('Select all'); ?>' id='selectall' onclick='insertQuery(this.id)' /> - <input type='button' value='<?php echo __('Select'); ?>' id='select' onclick='insertQuery(this.id)' /> - <input type='button' value='<?php echo __('Insert'); ?>' id='insert' onclick='insertQuery(this.id)' /> - <input type='button' value='<?php echo __('Update'); ?>' id='update' onclick='insertQuery(this.id)' /> - <input type='button' value='<?php echo __('Delete'); ?>' id='delete' onclick='insertQuery(this.id)' /> - <?php + echo '<input type="button" value="' . _pgettext('Create SELECT * query', 'Select all') . '" id="selectall" onclick="insertQuery(this.id)" />'; + echo '<input type="button" value="' . _pgettext('Create SELECT ... query', 'Select') . '" id="select" onclick="insertQuery(this.id)" />'; + echo '<input type="button" value="' . _pgettext('Create INSERT query', 'Insert') . '" id="insert" onclick="insertQuery(this.id)" />'; + echo '<input type="button" value="' . _pgettext('Create UPDATE query', 'Update') . '" id="update" onclick="insertQuery(this.id)" />'; + echo '<input type="button" value="' . _pgettext('Create DELETE query', 'Delete') . '" id="delete" onclick="insertQuery(this.id)" />'; } echo '</div>' . "\n";
diff --git a/po/af.po b/po/af.po index b165d17..8ad6ff4 100644 --- a/po/af.po +++ b/po/af.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-30 23:04+0200\n" "Last-Translator: Michal michal@cihar.com\n" "Language-Team: afrikaans af@li.org\n" @@ -14,11 +14,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Gaan"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr ""
@@ -5728,6 +5728,41 @@ msgstr "" msgid ""zipped"" msgstr ""ge-zip""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Kies Alles" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Kies Alles" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Voeg by" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Verander Navraag" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Verwyder" + #: navigation.php:318 msgid "Filter" msgstr "" diff --git a/po/ar.po b/po/ar.po index e5233c4..5cd1d9c 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: arabic ar@li.org\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr " تنفيذ "
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "ألغ"
@@ -5687,6 +5687,41 @@ msgstr "ملاحظة: تغيير هذه الخيارات للرقم 0 )صفر( msgid ""zipped"" msgstr ""مضغوط""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "تحديد الكل" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "تحديد الكل" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "إدخال" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Updated" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "محدث" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "حذف" + #: navigation.php:318 msgid "Filter" msgstr "" diff --git a/po/az.po b/po/az.po index 903d711..47fd6f0 100644 --- a/po/az.po +++ b/po/az.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: azerbaijani az@li.org\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Davam"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr ""
@@ -5794,6 +5794,41 @@ msgstr "Qeyd: Bu variantları 0 (sıfır)-a çevirmek hüdudu (limiti) qaldırac msgid ""zipped"" msgstr ""zip"lenmiş"
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Hamısını Seç" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Hamısını Seç" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Elave et" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Sorğunu Yenile" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Sil" + #: navigation.php:318 msgid "Filter" msgstr "" diff --git a/po/be.po b/po/be.po index 00e537f..96e594a 100644 --- a/po/be.po +++ b/po/be.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: belarusian_cyrillic be@li.org\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Панеслася"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "Скасаваць"
@@ -6039,6 +6039,41 @@ msgstr "Заўвага: Пазначэньне гэтых опцыяў як 0 ( msgid ""zipped"" msgstr "архіваваны ў zip"
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Выбраць усё" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Выбраць усё" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Уставіць" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Абнавіць запыт" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Выдаліць" + #: navigation.php:318 #, fuzzy msgid "Filter" diff --git a/po/be@latin.po b/po/be@latin.po index 5bcb119..c6c0ba7 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-30 23:09+0200\n" "Last-Translator: Michal michal@cihar.com\n" "Language-Team: belarusian_latin <be@latin@li.org>\n" @@ -15,11 +15,11 @@ msgstr "" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Paniesłasia"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "Skasavać"
@@ -6009,6 +6009,41 @@ msgstr "Zaŭvaha: Paznačeńnie hetych opcyjaŭ jak 0 (nul) zdymaje abmiežavań msgid ""zipped"" msgstr "archivavany ŭ zip"
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Vybrać usio" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Vybrać usio" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Ustavić" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Abnavić zapyt" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Vydalić" + #: navigation.php:318 msgid "Filter" msgstr "" diff --git a/po/bg.po b/po/bg.po index cf334a4..5b10851 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bulgarian bg@li.org\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Изпълнение"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr ""
@@ -5826,6 +5826,41 @@ msgstr "" msgid ""zipped"" msgstr ""zip-нато""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Селектиране на всичко" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Селектиране на всичко" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Вмъкване" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Допълни Запитването" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Изтриване" + #: navigation.php:318 msgid "Filter" msgstr "" diff --git a/po/bn.po b/po/bn.po index d5bab0f..2962dc8 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bangla bn@li.org\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Go"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr ""
@@ -5962,6 +5962,41 @@ msgstr "Note: Setting these options to 0 (zero) removes the limit." msgid ""zipped"" msgstr ""zipped""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "সব সিলেক্ট করুন" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "সব সিলেক্ট করুন" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Insert" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Update Query" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "মুছে ফেল" + #: navigation.php:318 #, fuzzy msgid "Filter" diff --git a/po/bs.po b/po/bs.po index 73614e6..d0b0002 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bosnian bs@li.org\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Kreni"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr ""
@@ -5791,6 +5791,41 @@ msgstr "Napomena: Postavljanje ovih opcija na 0 (nulu) uklanja limite." msgid ""zipped"" msgstr ""zipovano""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Izaberi sve" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Izaberi sve" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Novi zapis" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Ažuriraj upit" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Obriši" + #: navigation.php:318 msgid "Filter" msgstr "" diff --git a/po/ca.po b/po/ca.po index 2704c86..a4c1d54 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-0 9 11:51+0200\n" "PO-Revision-Date: 2010-03-12 09:13+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: catalan ca@li.org\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Executa"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "Cancel.lar"
@@ -6038,6 +6038,41 @@ msgstr "Nota: Es treu el limit establint aquestes opcions a 0 (zero)." msgid ""zipped"" msgstr ""comprimit amb zip""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Tria Tot" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Tria Tot" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Insereix" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Updated" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Actualitzat" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Esborra" + #: navigation.php:318 msgid "Filter" msgstr "Filtre" diff --git a/po/cs.po b/po/cs.po index baec2a0..1cceb3a 100644 --- a/po/cs.po +++ b/po/cs.po @@ -4,22 +4,22 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-04-06 13:55+0200\n" "Last-Translator: Michal michal@cihar.com\n" "Language-Team: czech cs@li.org\n" -"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Proveď"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "Zrušit"
@@ -5956,6 +5956,41 @@ msgstr "Poznámka: Nastavení těchto parametrů na 0 (nulu) odstraní omezení. msgid ""zipped"" msgstr "„zazipováno“"
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Vybrat vše" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Vybrat vše" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Vložit" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Updated" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Aktualizováno" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Odstranit" + #: navigation.php:318 msgid "Filter" msgstr "Filtr" @@ -7222,7 +7257,6 @@ msgstr "" "pma_table_pages[/kbd]"
#: setup/lib/messages.inc.php:280 -#| msgid "SQL query history table" msgid "SQL query tracking table" msgstr "Tabulka pro sledování SQL dotazů"
@@ -7336,7 +7370,6 @@ msgid "" msgstr ""
#: setup/lib/messages.inc.php:304 -#| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Automaticky vytvářet verze"
@@ -7345,7 +7378,6 @@ msgid "Defines the list of statements the auto-creation uses for new versions." msgstr ""
#: setup/lib/messages.inc.php:306 -#| msgid "Statements" msgid "Statements to track" msgstr "Sledované příkazy"
diff --git a/po/da.po b/po/da.po index 319f39e..057c568 100644 --- a/po/da.po +++ b/po/da.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-12 09:13+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: danish da@li.org\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Udfør"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "Annuller"
@@ -5925,6 +5925,41 @@ msgstr "" msgid ""zipped"" msgstr ""zippet""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Vælg alle" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Vælg alle" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Indsæt" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Opdater forespørgsel" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Slet" + #: navigation.php:318 msgid "Filter" msgstr "" diff --git a/po/de.po b/po/de.po index c12c93b..53541ad 100644 --- a/po/de.po +++ b/po/de.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-23 21:07+0200\n" "Last-Translator: me@michaelkeck.de\n" "Language-Team: german de@li.org\n" @@ -14,11 +14,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "OK"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "Abbrechen"
@@ -6084,6 +6084,41 @@ msgstr "Der Wert 0 (null) entfernt die Beschränkung." msgid ""zipped"" msgstr "Zip-komprimiert"
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Alle auswählen" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Alle auswählen" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Einfügen" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Updated" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Aktualisiert" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Löschen" + #: navigation.php:318 #, fuzzy msgid "Filter" diff --git a/po/el.po b/po/el.po index 2cd1633..5093ef9 100644 --- a/po/el.po +++ b/po/el.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-30 23:16+0200\n" "Last-Translator: Michal michal@cihar.com\n" "Language-Team: greek el@li.org\n" @@ -14,11 +14,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Εκτέλεση"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "Άκυρο"
@@ -6106,6 +6106,41 @@ msgstr "" msgid ""zipped"" msgstr "συμπίεση «zip»"
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Επιλογή όλων" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Επιλογή όλων" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Προσθήκη" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Updated" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Ενημερώθηκε" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Διαγραφή" + #: navigation.php:318 msgid "Filter" msgstr "Φίλτρο" diff --git a/po/en_GB.po b/po/en_GB.po index ae4689b..365ecb9 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-30 16:04+0200\n" "Last-Translator: Michal michal@cihar.com\n" "Language-Team: english-gb en_GB@li.org\n" @@ -14,11 +14,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Go"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "Cancel"
@@ -60,7 +60,6 @@ msgid "Inline edit of this query" msgstr "Inline edit of this query"
#: libraries/common.lib.php:1278 -#| msgid "Engines" msgid "Inline" msgstr "Inline"
@@ -5984,6 +5983,41 @@ msgstr "Note: Setting these options to 0 (zero) removes the limit." msgid ""zipped"" msgstr ""zipped""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Select All" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Select All" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Insert" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Updated" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Updated" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Delete" + #: navigation.php:318 msgid "Filter" msgstr "Filter" @@ -6517,7 +6551,8 @@ msgstr "PMA database"
#: setup/lib/messages.inc.php:133 msgid "Tracking of changes made in database. Requires configured PMA database." -msgstr "Tracking of changes made in database. Requires configured PMA database." +msgstr "" +"Tracking of changes made in database. Requires configured PMA database."
#: setup/lib/messages.inc.php:134 msgid "Changes tracking" @@ -7230,18 +7265,14 @@ msgid "SQL query history table" msgstr "SQL query history table"
#: setup/lib/messages.inc.php:279 -#| msgid "" -#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" -#| "[/kbd]" msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -"Leave blank for no SQL query tracking support, suggested: " -"[kbd]pma_tracking[/kbd]" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" +"kbd]"
#: setup/lib/messages.inc.php:280 -#| msgid "SQL query history table" msgid "SQL query tracking table" msgstr "SQL query tracking table"
@@ -7350,9 +7381,6 @@ msgid "Signon URL" msgstr "Signon URL"
#: setup/lib/messages.inc.php:303 -#| msgid "" -#| "Whether the tracking mechanism creates versions for tables and views " -#| "automatically. Default value is false." msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -7361,19 +7389,15 @@ msgstr "" "automatically."
#: setup/lib/messages.inc.php:304 -#| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Automatically create versions"
#: setup/lib/messages.inc.php:305 -#| msgid "" -#| "Defines the list of statements the auto-creation uses for new versions. " -#| "Default value is" msgid "Defines the list of statements the auto-creation uses for new versions." -msgstr "Defines the list of statements the auto-creation uses for new versions." +msgstr "" +"Defines the list of statements the auto-creation uses for new versions."
#: setup/lib/messages.inc.php:306 -#| msgid "Statements" msgid "Statements to track" msgstr "Statements to track"
diff --git a/po/es.po b/po/es.po index 93068b8..f361af0 100644 --- a/po/es.po +++ b/po/es.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-12 11:23+0200\n" "Last-Translator: Michal michal@cihar.com\n" "Language-Team: spanish es@li.org\n" @@ -14,11 +14,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Continuar"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "Cancelar"
@@ -6106,6 +6106,41 @@ msgstr "" msgid ""zipped"" msgstr ""comprimido con zip""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Seleccionar todo" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Seleccionar todo" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Insertar" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Modificar la consulta" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Borrar" + #: navigation.php:318 #, fuzzy msgid "Filter" diff --git a/po/et.po b/po/et.po index 3d534de..f159297 100644 --- a/po/et.po +++ b/po/et.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: estonian et@li.org\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Mine"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "Katkesta"
@@ -5941,6 +5941,41 @@ msgstr "Märkus: Märkides antud seaded 0 (null), eemaldate limiidi." msgid ""zipped"" msgstr ""zipitud""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Märgista kõik" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Märgista kõik" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Lisa" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Uuenda päringut" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Kustuta" + #: navigation.php:318 #, fuzzy msgid "Filter" diff --git a/po/eu.po b/po/eu.po index a00b6f6..0262422 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-31 10:40+0200\n" "Last-Translator: hey_neken@mundurat.net\n" "Language-Team: basque eu@li.org\n" @@ -14,11 +14,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Joan"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr ""
@@ -5818,6 +5818,41 @@ msgstr "Oharra: Aukera hauek zerora ezarriz gero muga kentzen da." msgid ""zipped"" msgstr ""zipatuta""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Dena hautatu" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Dena hautatu" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Txertatu" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Kontsulta eguneratu" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Ezabatu" + #: navigation.php:318 msgid "Filter" msgstr "" diff --git a/po/fa.po b/po/fa.po index ad7a125..971d333 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: persian fa@li.org\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "تاييد"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr ""
@@ -5707,6 +5707,41 @@ msgstr "" msgid ""zipped"" msgstr ""zipped""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "انتخاب همه" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "انتخاب همه" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "درج" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "بههنگام سازي پرس و جو" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "حذف" + #: navigation.php:318 msgid "Filter" msgstr "" diff --git a/po/fi.po b/po/fi.po index 02ef217..7bda6eb 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: finnish fi@li.org\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Siirry"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "Peruuta"
@@ -6023,6 +6023,41 @@ msgstr "Huom: Näiden valintojen asettaminen nollaksi (0) poistaa rajoituksen." msgid ""zipped"" msgstr ""zip-pakattu""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Valitse kaikki" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Valitse kaikki" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Lisää rivi" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Updated" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Päivitetty" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Poista" + #: navigation.php:318 msgid "Filter" msgstr "Suodatin" diff --git a/po/fr.po b/po/fr.po index eaa4308..04639bd 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,22 +3,22 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-04-02 16:23+0200\n" "Last-Translator: Marc marc@infomarc.info\n" "Language-Team: french fr@li.org\n" -"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Exécuter"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "Annuler"
@@ -640,8 +640,8 @@ msgid "" "Cannot load [a@http://php.net/%1$s@Documentation%5D%5Bem%5D%1$s%5B/em%5D%5B/a] " "extension. Please check your PHP configuration." msgstr "" -"PHP ne peut charger l'extension [a@http://php.net/%1$s@Documentation%5D%5Bem%5D%" -"1$s[/em][/a]. Veuillez vérifier votre configuration de PHP." +"PHP ne peut charger l'extension [a@http://php.net/%1$s@Documentation%5D%5Bem%5D%1$s" +"[/em][/a]. Veuillez vérifier votre configuration de PHP."
#: libraries/messages.inc.php:136 msgid "" @@ -849,9 +849,9 @@ msgstr "" "phpMyAdmin n'a pu lire votre fichier de configuration!<br />Il est possible " "qu'il contienne une erreur de syntaxe, ou que PHP soit incapable de le " "trouver.<br />À l'aide du lien suivant, vous pouvez vérifier le message " -"d'erreur généré par PHP.<br />La plupart du temps, un apostrophe ou un " -"point-virgule sont manquants.<br />Si vous recevez une page blanche, aucune " -"erreur n'a été détectée." +"d'erreur généré par PHP.<br />La plupart du temps, un apostrophe ou un point-" +"virgule sont manquants.<br />Si vous recevez une page blanche, aucune erreur " +"n'a été détectée."
#: libraries/messages.inc.php:179 #, php-format @@ -5691,9 +5691,9 @@ msgid "" "third options are the width and the height in pixels." msgstr "" "Affiche une image et un lien, le champ contient le nom du fichier. La " -"première option est un préfixe URL tel que "http://domaine.com/%5C". La seconde " -"option est la largeur en pixels et la troisième option est la hauteur en " -"pixels." +"première option est un préfixe URL tel que "http://domaine.com/%5C". La " +"seconde option est la largeur en pixels et la troisième option est la " +"hauteur en pixels."
#: libraries/messages.inc.php:1199 msgid "" @@ -6079,6 +6079,41 @@ msgstr "Note: Une valeur de 0 (zero) enlève la limite." msgid ""zipped"" msgstr ""zippé""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Tout sélectionner" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Tout sélectionner" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Insérer" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Updated" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Mis à jour" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Effacer" + #: navigation.php:318 msgid "Filter" msgstr "Filtre" @@ -7336,18 +7371,14 @@ msgid "SQL query history table" msgstr "Tables pour historique des requêtes SQL"
#: setup/lib/messages.inc.php:279 -#| msgid "" -#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" -#| "[/kbd]" msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -"Laisser vider pour désactiver le suivi des changements SQL, valeur suggérée " -": [kbd]pma_tracking[/kbd]" +"Laisser vider pour désactiver le suivi des changements SQL, valeur " +"suggérée : [kbd]pma_tracking[/kbd]"
#: setup/lib/messages.inc.php:280 -#| msgid "SQL query history table" msgid "SQL query tracking table" msgstr "Table pour le suivi des changements SQL"
@@ -7459,9 +7490,6 @@ msgid "Signon URL" msgstr "URL pour connexion"
#: setup/lib/messages.inc.php:303 -#| msgid "" -#| "Whether the tracking mechanism creates versions for tables and views " -#| "automatically. Default value is false." msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -7470,21 +7498,16 @@ msgstr "" "tables et les vues."
#: setup/lib/messages.inc.php:304 -#| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Création automatique de versions"
#: setup/lib/messages.inc.php:305 -#| msgid "" -#| "Defines the list of statements the auto-creation uses for new versions. " -#| "Default value is" msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Définit la liste des énoncés que le mécanisme d'auto-création utilise pour " "les nouvelles versions."
#: setup/lib/messages.inc.php:306 -#| msgid "Statements" msgid "Statements to track" msgstr "Énoncés à suivre"
diff --git a/po/gl.po b/po/gl.po index 00a76e9..c7c782a 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: galician gl@li.org\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Executar"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "Cancelar"
@@ -6044,6 +6044,41 @@ msgstr "Nota: Se estas opcións se configuran como 0 (cero) elimínase o límite msgid ""zipped"" msgstr "comprimido no formato "zip""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Seleccionar todo" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Seleccionar todo" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Inserir" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Updated" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Actualizada" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Eliminar" + #: navigation.php:318 msgid "Filter" msgstr "Filtro" diff --git a/po/he.po b/po/he.po index a1f2b23..5684c49 100644 --- a/po/he.po +++ b/po/he.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-12 09:15+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: hebrew he@li.org\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "סע"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr ""
@@ -5716,6 +5716,41 @@ msgstr "הערה: הגדרת אפשרויות אלו אל 0 (אפס) יבטלו msgid ""zipped"" msgstr ""zipped""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "בחירת הכל" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "בחירת הכל" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "הכנסה" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "עדכון שאילתה" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "מחיקה" + #: navigation.php:318 msgid "Filter" msgstr "" diff --git a/po/hi.po b/po/hi.po index 17cc081..c17122b 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-12 09:15+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: hindi hi@li.org\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr ""
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr ""
@@ -5609,6 +5609,41 @@ msgstr "" msgid ""zipped"" msgstr ""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr " सभी को सेल्कट करें" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr " सभी को सेल्कट करें" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "इनसर्ट" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr " क्वरी अपडेट करो" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "डिलीट" + #: navigation.php:318 msgid "Filter" msgstr "" diff --git a/po/hr.po b/po/hr.po index 4ab2dc7..da4b0d2 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-12 09:13+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: croatian hr@li.org\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Kreni"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "Odustani"
@@ -6017,6 +6017,41 @@ msgstr "" msgid ""zipped"" msgstr ""zipano""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Odaberi sve" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Odaberi sve" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Umetni" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Ažuriraj upit" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Izbriši" + #: navigation.php:318 #, fuzzy msgid "Filter" diff --git a/po/hu.po b/po/hu.po index a0c3497..4a045a3 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-12 09:15+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: hungarian hu@li.org\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Indítás"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "Mégse"
@@ -6044,6 +6044,41 @@ msgstr "" msgid ""zipped"" msgstr ""zip tömörítés""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Mind kijelölése" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Mind kijelölése" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Beszúrás" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Lekérdezés frissítése" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Törlés" + #: navigation.php:318 #, fuzzy msgid "Filter" diff --git a/po/id.po b/po/id.po index 1604d01..3adad1d 100644 --- a/po/id.po +++ b/po/id.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-28 13:56+0200\n" "Last-Translator: Azhari Harahap azhari.harahap@yahoo.com\n" "Language-Team: indonesian id@li.org\n" @@ -14,11 +14,11 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Go"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "Batal"
@@ -5834,6 +5834,41 @@ msgstr "" msgid ""zipped"" msgstr "Dikompress dengan Zip"
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Pilih semua" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Pilih semua" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Sisipkan" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Updated" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Diperbarui" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Hapus" + #: navigation.php:318 msgid "Filter" msgstr "" diff --git a/po/it.po b/po/it.po index 85dbfde..c3aa93d 100644 --- a/po/it.po +++ b/po/it.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-31 18:42+0200\n" "Last-Translator: fantonifabio@tiscali.it\n" "Language-Team: italian it@li.org\n" @@ -14,11 +14,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Esegui"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "Annulla"
@@ -6050,6 +6050,41 @@ msgstr "N.B.: 0 (zero) significa nessun limite." msgid ""zipped"" msgstr ""compresso con zip""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Seleziona tutto" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Seleziona tutto" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Inserisci" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Aggiorna Query" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Elimina" + #: navigation.php:318 #, fuzzy msgid "Filter" diff --git a/po/ja.po b/po/ja.po index 4e51f6e..5942333 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-12 11:22+0200\n" "Last-Translator: Michal michal@cihar.com\n" "Language-Team: japanese jp@li.org\n" @@ -14,11 +14,11 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "実行する"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "キャンセル"
@@ -5905,6 +5905,41 @@ msgstr "注意: オプションを 0 (ゼロ)に設定すると制限を解除 msgid ""zipped"" msgstr ""zip 形式""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "全選択" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "全選択" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "挿入" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "クエリを更新する" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "削除" + #: navigation.php:318 msgid "Filter" msgstr "" diff --git a/po/ka.po b/po/ka.po index e46c193..cb5cde4 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: georgian ka@li.org\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "გადასვლა"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "გაუქმება"
@@ -5995,6 +5995,41 @@ msgstr "Note: Setting these options to 0 (zero) removes the limit." msgid ""zipped"" msgstr ""zip-ით შეკუმშული""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "ყველას მონიშნვა" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "ყველას მონიშნვა" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "ჩასმა" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "მოთხოვნის განახლება" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "წაშლა" + #: navigation.php:318 #, fuzzy msgid "Filter" diff --git a/po/ko.po b/po/ko.po index 1741a01..96d10cb 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: korean ko@li.org\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "실행"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr ""
@@ -5724,6 +5724,41 @@ msgstr "주의: 이 옵션을 0으로 하면 제한이 없어집니다." msgid ""zipped"" msgstr "zip 압축"
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "모두 선택" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "모두 선택" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "삽입" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "질의 업데이트" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "삭제" + #: navigation.php:318 msgid "Filter" msgstr "" diff --git a/po/lt.po b/po/lt.po index 21408aa..363e789 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,23 +3,23 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-04-02 18:26+0200\n" "Last-Translator: edgaras.janusauskas@gmail.com\n" "Language-Team: lithuanian lt@li.org\n" -"Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%" "100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Vykdyti"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "Atšaukti"
@@ -5832,6 +5832,41 @@ msgstr "Pastaba: nėra jokių apribojimų jeigu reikšmė nurodyta lygi 0 (nuliu msgid ""zipped"" msgstr ""zip""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Pažymėti visus" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Pažymėti visus" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Įterpti" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Updated" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Atnaujinta" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Trinti" + #: navigation.php:318 msgid "Filter" msgstr "Filtras" diff --git a/po/lv.po b/po/lv.po index f20bd57..05f6b5e 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: latvian lv@li.org\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Aiziet!"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr ""
@@ -5798,6 +5798,41 @@ msgstr "Piezīme: Šo opciju uzstādīšana uz 0 (nulli) atceļ ierobežojumus." msgid ""zipped"" msgstr "Arhivēts ar zip"
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Iezīmēt visu" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Iezīmēt visu" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Pievienot" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Atjaunot vaicājumu" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Dzēst" + #: navigation.php:318 msgid "Filter" msgstr "" diff --git a/po/mk.po b/po/mk.po index 7c36753..f868cfb 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: macedonian_cyrillic mk@li.org\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "OK"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr ""
@@ -5844,6 +5844,41 @@ msgstr "" msgid ""zipped"" msgstr ""zip""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "избери се" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "избери се" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Нов запис" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Ажурирај" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "избриши" + #: navigation.php:318 msgid "Filter" msgstr "" diff --git a/po/mn.po b/po/mn.po index e04534a..1a687f4 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: mongolian mn@li.org\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Яв"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "Болих"
@@ -5787,6 +5787,41 @@ msgstr "Тэмдэглэл: Тохируулгын сонголтыг 0 (тэг msgid ""zipped"" msgstr "zip-ээр шахах"
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Бүгдийг сонгох" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Бүгдийг сонгох" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Оруулах" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Update асуулт" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Устгах" + #: navigation.php:318 msgid "Filter" msgstr "" diff --git a/po/ms.po b/po/ms.po index 92e2913..19848fe 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: malay ms@li.org\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Pergi"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr ""
@@ -5735,6 +5735,41 @@ msgstr "" msgid ""zipped"" msgstr ""zipped""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Sila pilih pangkalan data" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Sila pilih pangkalan data" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Selit" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Kemaskini Kueri" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Padam" + #: navigation.php:318 msgid "Filter" msgstr "" diff --git a/po/nb.po b/po/nb.po index 55d42c9..5cd9558 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,22 +3,22 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-04-06 14:28+0200\n" "Last-Translator: sven.erik.andersen@gmail.com\n" "Language-Team: norwegian no@li.org\n" -"Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Utfør"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "Avbryt"
@@ -60,13 +60,11 @@ msgid "Inline edit of this query" msgstr "Inline redigering av denne spørringa"
#: libraries/common.lib.php:1278 -#| msgid "Engines" msgid "Inline" msgstr "Inline"
#: libraries/Message.class.php:282 #, php-format -#| msgid "%1$d row(s) affected." msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d rad berørt." @@ -74,7 +72,6 @@ msgstr[1] "%1$d rader berørt."
#: libraries/Message.class.php:301 #, php-format -#| msgid "%1$d row(s) deleted." msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "%1$d rader slettet." @@ -82,7 +79,6 @@ msgstr[1] "%1$d rader slettet."
#: libraries/Message.class.php:320 #, php-format -#| msgid "%1$d row(s) inserted." msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." msgstr[0] "%1$d rader innsatt." @@ -6000,6 +5996,41 @@ msgstr "Merk: Ved å sette disse til 0 (null) fjernes begrensningen." msgid ""zipped"" msgstr "Komprimert (zip)"
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Velg alle" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Velg alle" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Sett inn" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Updated" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Oppdatert" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Slett" + #: navigation.php:318 msgid "Filter" msgstr "Filter" @@ -7251,18 +7282,13 @@ msgid "SQL query history table" msgstr "SQL spørringshistorietabell"
#: setup/lib/messages.inc.php:279 -#| msgid "" -#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" -#| "[/kbd]" msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -"La stå tom for ingen SQL spørringshistorie, anbefalt: " -"[kbd]pma_tracking[/kbd]" +"La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]"
#: setup/lib/messages.inc.php:280 -#| msgid "SQL query history table" msgid "SQL query tracking table" msgstr "SQL spørringssporingstabell"
@@ -7379,7 +7405,6 @@ msgstr "" "automatisk."
#: setup/lib/messages.inc.php:304 -#| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Automatisk opprette versjoner"
@@ -7389,7 +7414,6 @@ msgstr "" "Definerer lista med spørringer autoopprettinga bruker for nye versjoner."
#: setup/lib/messages.inc.php:306 -#| msgid "Statements" msgid "Statements to track" msgstr "Spørringer som skal spores"
@@ -7710,9 +7734,6 @@ msgstr ""
#: setup/lib/messages.inc.php:372 #, php-format -#| msgid "" -#| "You are using subversion version, run [kbd]svn update[/kbd] :-)[br]The " -#| "latest stable version is %s, released on %s." msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." diff --git a/po/nl.po b/po/nl.po index d4447f7..b0fd559 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-26 15:46+0200\n" "Last-Translator: rink@initfour.nl\n" "Language-Team: dutch nl@li.org\n" @@ -14,11 +14,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Start"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "Annuleren"
@@ -6065,6 +6065,41 @@ msgstr "" msgid ""zipped"" msgstr ""Gezipt""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Selecteer alles" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Selecteer alles" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Invoegen" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Updated" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Bijgewerkt" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Verwijderen" + #: navigation.php:318 msgid "Filter" msgstr "Filter" diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index cf4abd3..20cf76e 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME EMAIL@ADDRESS\n" "Language-Team: LANGUAGE LL@li.org\n" @@ -17,11 +17,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr ""
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr ""
@@ -5606,6 +5606,31 @@ msgstr "" msgid ""zipped"" msgstr ""
+#: libraries/sql_query_form.lib.php:301 +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "" + +#: libraries/sql_query_form.lib.php:302 +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "" + +#: libraries/sql_query_form.lib.php:303 +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "" + +#: libraries/sql_query_form.lib.php:304 +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "" + +#: libraries/sql_query_form.lib.php:305 +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "" + #: navigation.php:318 msgid "Filter" msgstr "" diff --git a/po/pl.po b/po/pl.po index 0da40ca..d79a823 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: polish pl@li.org\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Wykonaj"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "Anuluj"
@@ -6013,6 +6013,41 @@ msgstr "Uwaga: Ustawienie tych opcji na 0 (zero) usuwa ograniczenie." msgid ""zipped"" msgstr "".zip""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Zaznacz wszystkie" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Zaznacz wszystkie" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Dodaj" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Zmień zapytanie" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Usuń" + #: navigation.php:318 #, fuzzy msgid "Filter" diff --git a/po/pt.po b/po/pt.po index 6fee755..40b81bf 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: portuguese pt@li.org\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Executa"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr ""
@@ -5795,6 +5795,41 @@ msgstr "Nota: Configurar estas opções para 0 (zero) remove o limite." msgid ""zipped"" msgstr ""Compressão zip""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Selecciona Todas" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Selecciona Todas" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Insere" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Actualiza Comando SQL" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Apagar" + #: navigation.php:318 #, fuzzy msgid "Filter" diff --git a/po/pt_BR.po b/po/pt_BR.po index afce651..d1f449e 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-21 05:17+0200\n" "Last-Translator: Maurício Meneghini Fauth mauriciofauth@gmail.com\n" "Language-Team: brazilian_portuguese pt_BR@li.org\n" @@ -14,11 +14,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Executar"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "Cancelar"
@@ -5973,6 +5973,41 @@ msgstr "Nota: Ajustar essa opção para 0 (zero) remove os limites." msgid ""zipped"" msgstr ""compactado com zip""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Selecionar Todos" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Selecionar Todos" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Inserir" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Atualizar a consulta SQL" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Remover" + #: navigation.php:318 msgid "Filter" msgstr "Filtro" diff --git a/po/ro.po b/po/ro.po index 2d2eb2d..f1e0c2b 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-13 00:41+0200\n" "Last-Translator: ronaldinia@yahoo.com\n" "Language-Team: romanian ro@li.org\n" @@ -15,11 +15,11 @@ msgstr "" "20)) ? 1 : 2);;\n" "X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Execută"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "Renunță"
@@ -6015,6 +6015,41 @@ msgstr "" msgid ""zipped"" msgstr "„arhivat”"
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Selectează tot" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Selectează tot" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Inserare" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Reînnoire comandă" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Șterge" + #: navigation.php:318 #, fuzzy msgid "Filter" diff --git a/po/ru.po b/po/ru.po index 0563633..c015d98 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-30 23:23+0200\n" "Last-Translator: Michal michal@cihar.com\n" "Language-Team: russian ru@li.org\n" @@ -15,11 +15,11 @@ msgstr "" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\ n" "X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "OK"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "Отмена"
@@ -6065,6 +6065,41 @@ msgstr "" msgid ""zipped"" msgstr "zip"
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Выделить все" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Выделить все" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Вставить" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Updated" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Обновлён" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Удалить" + #: navigation.php:318 msgid "Filter" msgstr "Фильтр" diff --git a/po/si.po b/po/si.po index 84992fa..9e1c174 100644 --- a/po/si.po +++ b/po/si.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-30 23:09+0200\n" "Last-Translator: Michal michal@cihar.com\n" "Language-Team: sinhala si@li.org\n" @@ -13,11 +13,11 @@ msgstr "" "Language: si\n" "X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "යන්න"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr ""
@@ -5947,6 +5947,41 @@ msgstr "සටහන: මෙම විකල්පය 0 (බිංදුවට) msgid ""zipped"" msgstr ""සිප්ගත කරන ලද""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "සියල්ල තෝරන්න" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "සියල්ල තෝරන්න" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "ඇතුල් කරන්න" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Update Query" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "ඉවත් කරන්න" + #: navigation.php:318 #, fuzzy msgid "Filter" diff --git a/po/sk.po b/po/sk.po index 3ed7a98..9dfaf27 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-30 23:47+0200\n" "Last-Translator: Michal michal@cihar.com\n" "Language-Team: slovak sk@li.org\n" @@ -14,11 +14,11 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Vykonaj"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "Zrušiť"
@@ -5956,6 +5956,41 @@ msgstr "" msgid ""zipped"" msgstr ""zozipované""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Označiť všetko" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Označiť všetko" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Vložiť" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Aktualizovať dopyt" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Zmazať" + #: navigation.php:318 msgid "Filter" msgstr "Filter" diff --git a/po/sl.po b/po/sl.po index 90d7831..bd8e11a 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-30 23:47+0200\n" "Last-Translator: Michal michal@cihar.com\n" "Language-Team: slovenian sl@li.org\n" @@ -15,11 +15,11 @@ msgstr "" "%100==4 ? 2 : 3);\n" "X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Izvedi"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr ""
@@ -5797,6 +5797,41 @@ msgstr "" msgid ""zipped"" msgstr ""zipano""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Izberi vse" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Izberi vse" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Vstavi" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Osveži poizvedbo" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Izbriši" + #: navigation.php:318 msgid "Filter" msgstr "" diff --git a/po/sq.po b/po/sq.po index dcbed7c..cb4aa04 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-30 23:08+0200\n" "Last-Translator: Michal michal@cihar.com\n" "Language-Team: albanian sq@li.org\n" @@ -14,11 +14,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Zbato"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr ""
@@ -5810,6 +5810,41 @@ msgstr "" msgid ""zipped"" msgstr ""kompresuar me zip""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Zgjidh gjithçka" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Zgjidh gjithçka" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Shto" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Rifresko Query" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Fshi" + #: navigation.php:318 msgid "Filter" msgstr "" diff --git a/po/sr.po b/po/sr.po index 0b1f5b2..b0e081d 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-30 23:47+0200\n" "Last-Translator: Michal michal@cihar.com\n" "Language-Team: serbian_cyrillic sr@li.org\n" @@ -15,11 +15,11 @@ msgstr "" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Крени"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "Откажи"
@@ -5954,6 +5954,41 @@ msgstr "Напомена: Постављање ових опција на 0 (н msgid ""zipped"" msgstr ""зиповано""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Изабери све" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Изабери све" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Нови запис" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Ажурирај упит" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Обриши" + #: navigation.php:318 #, fuzzy msgid "Filter" diff --git a/po/sr@latin.po b/po/sr@latin.po index 749e099..5fbf3d6 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-30 23:47+0200\n" "Last-Translator: Michal michal@cihar.com\n" "Language-Team: serbian_latin <sr@latin@li.org>\n" @@ -15,11 +15,11 @@ msgstr "" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Kreni"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "Otkaži"
@@ -5960,6 +5960,41 @@ msgstr "Napomena: Postavljanje ovih opcija na 0 (nulu) uklanja ograničenja." msgid ""zipped"" msgstr ""zipovano""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Izaberi sve" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Izaberi sve" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Novi zapis" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Ažuriraj upit" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Obriši" + #: navigation.php:318 #, fuzzy msgid "Filter" diff --git a/po/sv.po b/po/sv.po index b28be78..47355e2 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: swedish sv@li.org\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Kör"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "Avbryt"
@@ -6007,6 +6007,41 @@ msgstr "" msgid ""zipped"" msgstr ""zippad""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Markera alla" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Markera alla" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Lägg till" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Uppdatera fråga" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Radera" + #: navigation.php:318 msgid "Filter" msgstr "Filter" diff --git a/po/te.po b/po/te.po index 677293d..d641787 100644 --- a/po/te.po +++ b/po/te.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-04-02 12:04+0200\n" "Last-Translator: veeven@gmail.com\n" "Language-Team: Telugu te@li.org\n" @@ -17,11 +17,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "వెళ్ళు"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "రద్దుచేయి"
@@ -5670,6 +5670,41 @@ msgstr "" msgid ""zipped"" msgstr ""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Delete" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "తొలగించు" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Delete" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "తొలగించు" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "User" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "వాడుకరి" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Date" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "తేదీ" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "తొలగించు" + #: navigation.php:318 msgid "Filter" msgstr "" diff --git a/po/th.po b/po/th.po index 0ec8da5..5ff8796 100644 --- a/po/th.po +++ b/po/th.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: thai th@li.org\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "ลงมือ"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr ""
@@ -5723,6 +5723,41 @@ msgstr "โปรดทราบ: ถ้าเปลี่ยนค่าเห msgid ""zipped"" msgstr ""ถูกบีบอัดอยู่ (zip)""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "เลือกทั้งหมด" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "เลือกทั้งหมด" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "แทรก" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "ปรับปรุงคำค้น" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "ลบ" + #: navigation.php:318 msgid "Filter" msgstr "" diff --git a/po/tr.po b/po/tr.po index 518603e..3400a6a 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3,22 +3,22 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-04-03 11:44+0200\n" "Last-Translator: hitowerdigit@hotmail.com\n" "Language-Team: turkish tr@li.org\n" -"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Git"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "İptal"
@@ -67,21 +67,18 @@ msgstr "Motorlar"
#: libraries/Message.class.php:282 #, php-format -#| msgid "%1$d row(s) affected." msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "%1$d satır etkilendi."
#: libraries/Message.class.php:301 #, php-format -#| msgid "%1$d row(s) deleted." msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "%1$d satır silindi."
#: libraries/Message.class.php:320 #, php-format -#| msgid "%1$d row(s) inserted." msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." msgstr[0] "%1$d satır eklendi." @@ -6032,6 +6029,41 @@ msgstr "Not: Bu seçeneklerin 0 (sıfır)'a ayarlanması sınırı kaldırır." msgid ""zipped"" msgstr ""zip olarak""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Tümünü Seç" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Tümünü Seç" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Ekle" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Updated" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Güncellendi" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Sil" + #: navigation.php:318 msgid "Filter" msgstr "Süzgeç" diff --git a/po/tt.po b/po/tt.po index b70d483..a9686d6 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-30 23:14+0200\n" "Last-Translator: Michal michal@cihar.com\n" "Language-Team: tatarish tt@li.org\n" @@ -14,11 +14,11 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Äydä"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr ""
@@ -5821,6 +5821,41 @@ msgstr "Beläse: 0 (nül) kertelgän çaqta çikläwe beterelä." msgid ""zipped"" msgstr ""ziple""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Saylap Beter" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Saylap Beter" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Östäw" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Sorawnı Yañart" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Sal" + #: navigation.php:318 #, fuzzy msgid "Filter" diff --git a/po/uk.po b/po/uk.po index f049473..b73687d 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: ukrainian uk@li.org\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "Вперед"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr ""
@@ -5711,6 +5711,41 @@ msgstr "Примітка: Встановлення цієї опції у 0 (н msgid ""zipped"" msgstr "запакувати в "zip""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Відмітити все" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Відмітити все" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Вставити" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Доповнити запит" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Видалити" + #: navigation.php:318 msgid "Filter" msgstr "" diff --git a/po/uz.po b/po/uz.po index 26cc918..635c40b 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-12 09:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: uzbek_cyrillic uz@li.org\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "OK"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "Бекор қилиш"
@@ -6072,6 +6072,41 @@ msgstr "" msgid ""zipped"" msgstr "zip"
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Барчасини белгилаш" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Барчасини белгилаш" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Қўйиш" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Updated" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Янгиланди" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "Ўчириш" + #: navigation.php:318 msgid "Filter" msgstr "Фильтр" diff --git a/po/uz@latin.po b/po/uz@latin.po index 8af0900..cbcb9c0 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-12 09:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: uzbek_latin <uz@latin@li.org>\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "OK"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "Bekor qilish"
@@ -6121,6 +6121,41 @@ msgstr "" msgid ""zipped"" msgstr "zip"
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "Barchasini belgilash" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "Barchasini belgilash" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "Qo‘yish" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Updated" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "Yangilandi" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "O‘chirish" + #: navigation.php:318 msgid "Filter" msgstr "Filtr" diff --git a/po/zh_CN.po b/po/zh_CN.po index db69e9a..73ef2d3 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,22 +3,22 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-04-08 13:06+0200\n" "Last-Translator: shanyan baishui Siramizu@gmail.com\n" "Language-Team: chinese_simplified zh_CN@li.org\n" -"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "执行"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr "取消"
@@ -57,27 +57,23 @@ msgid "Inline edit of this query" msgstr "在本页面编辑此查询"
#: libraries/common.lib.php:1278 -#| msgid "Engines" msgid "Inline" msgstr "内联"
#: libraries/Message.class.php:282 #, php-format -#| msgid "%1$d row(s) affected." msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "影响了 %1$d 行。"
#: libraries/Message.class.php:301 #, php-format -#| msgid "%1$d row(s) deleted." msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "删除了 %1$d 行。"
#: libraries/Message.class.php:320 #, php-format -#| msgid "%1$d row(s) inserted." msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." msgstr[0] "插入了 %1$d 行。" @@ -5786,6 +5782,41 @@ msgstr "注意:若将这些选项设为 0(零) 即不限制。" msgid ""zipped"" msgstr "zip 压缩"
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "全选" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "全选" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "插入" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Updated" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "更新" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "删除" + #: navigation.php:318 msgid "Filter" msgstr "快速搜索" @@ -6987,16 +7018,12 @@ msgid "SQL query history table" msgstr "SQL 查询历史表"
#: setup/lib/messages.inc.php:279 -#| msgid "" -#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" -#| "[/kbd]" msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "不使用 SQL 查询追踪功能请留空,默认:[kbd]pma_tracking[/kbd]"
#: setup/lib/messages.inc.php:280 -#| msgid "SQL query history table" msgid "SQL query tracking table" msgstr "SQL 查询追踪表"
@@ -7103,28 +7130,20 @@ msgid "Signon URL" msgstr "登录地址"
#: setup/lib/messages.inc.php:303 -#| msgid "" -#| "Whether the tracking mechanism creates versions for tables and views " -#| "automatically. Default value is false." msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "设置追踪系统是否自动为数据表和视图创建版本。"
#: setup/lib/messages.inc.php:304 -#| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "自动创建版本"
#: setup/lib/messages.inc.php:305 -#| msgid "" -#| "Defines the list of statements the auto-creation uses for new versions. " -#| "Default value is" msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "定义自动创建新版的命令列表。"
#: setup/lib/messages.inc.php:306 -#| msgid "Statements" msgid "Statements to track" msgstr "要追踪的命令"
@@ -7421,13 +7440,12 @@ msgstr "有新的 phpMyAdmin 可用,请考虑升级。最新的版本是 %s,
#: setup/lib/messages.inc.php:372 #, php-format -#| msgid "" -#| "You are using subversion version, run [kbd]svn update[/kbd] :-)[br]The " -#| "latest stable version is %s, released on %s." msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." -msgstr "你现在使用的是开发版,请通过 [kbd]git pull[/kbd] 检查更新 :-)[br]最新正式版为 %s,于 %s 发布。" +msgstr "" +"你现在使用的是开发版,请通过 [kbd]git pull[/kbd] 检查更新 :-)[br]最新正式版" +"为 %s,于 %s 发布。"
#: setup/lib/messages.inc.php:373 msgid "No newer stable version is available" diff --git a/po/zh_TW.po b/po/zh_TW.po index a026348..75d5b30 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-04-02 13:41+0200\n" +"POT-Creation-Date: 2010-04-09 11:51+0200\n" "PO-Revision-Date: 2010-03-12 09:15+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: chinese_traditional zh_TW@li.org\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:45 libraries/messages.inc.php:372 +#: js/messages.php:50 libraries/messages.inc.php:372 msgid "Go" msgstr "執行"
-#: js/messages.php:46 libraries/messages.inc.php:131 +#: js/messages.php:51 libraries/messages.inc.php:131 msgid "Cancel" msgstr ""
@@ -5728,6 +5728,41 @@ msgstr "註: 設定這些選項為 0 (零) 可解除限制." msgid ""zipped"" msgstr ""zipped""
+#: libraries/sql_query_form.lib.php:301 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT * query" +msgid "Select all" +msgstr "全選" + +#: libraries/sql_query_form.lib.php:302 +#, fuzzy +#| msgid "Select All" +msgctxt "Create SELECT ... query" +msgid "Select" +msgstr "全選" + +#: libraries/sql_query_form.lib.php:303 +#, fuzzy +#| msgid "Insert" +msgctxt "Create INSERT query" +msgid "Insert" +msgstr "新增" + +#: libraries/sql_query_form.lib.php:304 +#, fuzzy +#| msgid "Update Query" +msgctxt "Create UPDATE query" +msgid "Update" +msgstr "更新語法" + +#: libraries/sql_query_form.lib.php:305 +#, fuzzy +#| msgid "Delete" +msgctxt "Create DELETE query" +msgid "Delete" +msgstr "刪除" + #: navigation.php:318 msgid "Filter" msgstr ""
hooks/post-receive