Merge remote branch 'origin/master'

Conflicts:
	po/fr.po
This commit is contained in:
Michal Čihař
2010-04-01 15:09:01 +02:00
65 changed files with 1159 additions and 560 deletions

View File

@@ -57,6 +57,7 @@ $Id$
+ patch #2967320 [designer] Colored relations based on the primary key, + patch #2967320 [designer] Colored relations based on the primary key,
thanks to GreenRover - greenrover thanks to GreenRover - greenrover
- [core] Provide way for vendors to easily change paths to config files. - [core] Provide way for vendors to easily change paths to config files.
+ patch #2979922, rfe #2804874 [interface] Add inline query editing, thanks to Muhammd Adnan.
3.3.2.0 (not yet released) 3.3.2.0 (not yet released)
- patch #2969449 [core] Name for MERGE engine varies depending on the - patch #2969449 [core] Name for MERGE engine varies depending on the

View File

@@ -1654,3 +1654,27 @@ function changeMIMEType(db, table, reference, mime_type)
var chgRequest = new Request({ method: 'post', url: mime_chg_url, data: params, evalScripts: true }); var chgRequest = new Request({ method: 'post', url: mime_chg_url, data: params, evalScripts: true });
chgRequest.send(); chgRequest.send();
} }
/**
* Jquery Coding for inline editing SQL_QUERY
*/
$(document).ready(function(){
var $oldText,$db,$table,$token,$sql_query;
$oldText=$(".syntax").html();
$("#inline_edit").click(function(){
$db=$("input[name='db']").val();
$table=$("input[name='table']").val();
$token=$("input[name='token']").val();
$sql_query=$("input[name='sql_query']").val();
$(".syntax").replaceWith("<textarea name=\"sql_query_edit\" id=\"sql_query_edit\">"+ $sql_query +"</textarea><input type=\"button\" id=\"btnSave\" value=\"" + PMA_messages['strGo'] + "\"><input type=\"button\" id=\"btnDiscard\" value=\"" + PMA_messages['strCancel'] + "\">");
return false;
});
$("#btnSave").live("click",function(){
window.location.replace("import.php?db="+$db+"&table="+$table+"&sql_query="+$("#sql_query_edit").val()+"&show_query=1&token="+$token+"");
});
$("#btnDiscard").live("click",function(){
$(".sql").html("<span class=\"syntax\">"+$oldText+"</span>");
});
});

View File

@@ -1270,7 +1270,12 @@ function PMA_showMessage($message, $sql_query = null, $type = 'notice', $is_view
if (! empty($refresh_link)) { if (! empty($refresh_link)) {
PMA_profilingCheckbox($sql_query); PMA_profilingCheckbox($sql_query);
} }
echo $edit_link . $explain_link . $php_link . $refresh_link . $validate_link; $inline_edit = "<script language=\"javascript\">document.write('[<a href=\"#\" title=\"" .
PMA_escapeJsString(__('Click here to Inline Edit Your SQL Query.')) .
"\" id=\"inline_edit\">" .
PMA_escapeJsString(__('Inline')) .
"</a>]');</script>";
echo $inline_edit . $edit_link . $explain_link . $php_link . $refresh_link . $validate_link;
echo '</div>'; echo '</div>';
} }
echo '</div><br />' . "\n"; echo '</div><br />' . "\n";

View File

@@ -104,6 +104,9 @@ if (in_array('server_privileges.js', $GLOBALS['js_include'])) {
$GLOBALS['js_messages']['strPasswordNotSame'] = $GLOBALS['strPasswordNotSame']; $GLOBALS['js_messages']['strPasswordNotSame'] = $GLOBALS['strPasswordNotSame'];
} }
$GLOBALS['js_messages']['strGo'] = __('Go');
$GLOBALS['js_messages']['strCancel'] = __('Cancel');
$GLOBALS['js_include'][] = 'tooltip.js'; $GLOBALS['js_include'][] = 'tooltip.js';
$GLOBALS['js_events'][] = array( $GLOBALS['js_events'][] = array(

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-30 23:04+0200\n" "PO-Revision-Date: 2010-03-30 23:04+0200\n"
"Last-Translator: Michal <michal@cihar.com>\n" "Last-Translator: Michal <michal@cihar.com>\n"
"Language-Team: afrikaans <af@li.org>\n" "Language-Team: afrikaans <af@li.org>\n"
@@ -41,6 +41,22 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "en" msgstr "en"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
msgid "Inline"
msgstr ""
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Gaan"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -600,10 +616,6 @@ msgstr "\"ge-bzip\""
msgid "Calendar" msgid "Calendar"
msgstr "" msgstr ""
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1650,10 +1662,6 @@ msgstr "Geen Regte"
msgid "Global value" msgid "Global value"
msgstr "" msgstr ""
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Gaan"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: arabic <ar@li.org>\n" "Language-Team: arabic <ar@li.org>\n"
@@ -42,6 +42,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "" msgstr ""
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "محركات"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "&nbsp;تنفيذ&nbsp;"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "ألغ"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -592,10 +610,6 @@ msgstr "\"bzipped\""
msgid "Calendar" msgid "Calendar"
msgstr "نتيجة" msgstr "نتيجة"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "ألغ"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1631,10 +1645,6 @@ msgstr "صلاحيات عامة"
msgid "Global value" msgid "Global value"
msgstr "قيمة عامة" msgstr "قيمة عامة"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "&nbsp;تنفيذ&nbsp;"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
msgid "Go to database" msgid "Go to database"
msgstr "" msgstr ""

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: azerbaijani <az@li.org>\n" "Language-Team: azerbaijani <az@li.org>\n"
@@ -41,6 +41,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "Gönderildi" msgstr "Gönderildi"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Motorlar"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Davam"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -602,10 +620,6 @@ msgstr "\"bzip\"lenmiş"
msgid "Calendar" msgid "Calendar"
msgstr "" msgstr ""
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1670,10 +1684,6 @@ msgstr "Qlobal selahiyyetler"
msgid "Global value" msgid "Global value"
msgstr "Qlobal deyer" msgstr "Qlobal deyer"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Davam"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: belarusian_cyrillic <be@li.org>\n" "Language-Team: belarusian_cyrillic <be@li.org>\n"
@@ -47,6 +47,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "Адпраўлена" msgstr "Адпраўлена"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Машыны"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Панеслася"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Скасаваць"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "%1$d row(s) affected." #| msgid "%1$d row(s) affected."
@@ -609,10 +627,6 @@ msgstr "сьціскаць у bzip"
msgid "Calendar" msgid "Calendar"
msgstr "Каляндар" msgstr "Каляндар"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Скасаваць"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1675,10 +1689,6 @@ msgstr "Глябальныя прывілеі"
msgid "Global value" msgid "Global value"
msgstr "Глябальнае значэньне" msgstr "Глябальнае значэньне"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Панеслася"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n" "PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal <michal@cihar.com>\n" "Last-Translator: Michal <michal@cihar.com>\n"
"Language-Team: belarusian_latin <be@latin@li.org>\n" "Language-Team: belarusian_latin <be@latin@li.org>\n"
@@ -48,6 +48,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "en" msgstr "en"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Mašyny"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Paniesłasia"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Skasavać"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "%1$d row(s) affected." #| msgid "%1$d row(s) affected."
@@ -604,10 +622,6 @@ msgstr "ściskać u bzip"
msgid "Calendar" msgid "Calendar"
msgstr "Kalandar" msgstr "Kalandar"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Skasavać"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1666,10 +1680,6 @@ msgstr "Hlabalnyja pryvilei"
msgid "Global value" msgid "Global value"
msgstr "Hlabalnaje značeńnie" msgstr "Hlabalnaje značeńnie"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Paniesłasia"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
msgid "Go to database" msgid "Go to database"
msgstr "" msgstr ""

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: bulgarian <bg@li.org>\n" "Language-Team: bulgarian <bg@li.org>\n"
@@ -45,6 +45,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "Изпратени" msgstr "Изпратени"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Хранилища"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Изпълнение"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -607,10 +625,6 @@ msgstr "\"bzip-нато\""
msgid "Calendar" msgid "Calendar"
msgstr "Календар" msgstr "Календар"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1674,10 +1688,6 @@ msgstr "Глобални привилегии"
msgid "Global value" msgid "Global value"
msgstr "Глобална стойност" msgstr "Глобална стойност"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Изпълнение"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: bangla <bn@li.org>\n" "Language-Team: bangla <bn@li.org>\n"
@@ -46,6 +46,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "bn" msgstr "bn"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "ইঞ্জিনসমূহ"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Go"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -608,10 +626,6 @@ msgstr "\"bzipped\""
msgid "Calendar" msgid "Calendar"
msgstr "ক্যালেন্ডার" msgstr "ক্যালেন্ডার"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "এক্সপোর্ট প্লাগ ইন লোড করা যায়নি, আপনার ইন্সষ্টলেশন পরীক্ষা করুন" msgstr "এক্সপোর্ট প্লাগ ইন লোড করা যায়নি, আপনার ইন্সষ্টলেশন পরীক্ষা করুন"
@@ -1680,10 +1694,6 @@ msgstr "Global privileges"
msgid "Global value" msgid "Global value"
msgstr "Global value" msgstr "Global value"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Go"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: bosnian <bs@li.org>\n" "Language-Team: bosnian <bs@li.org>\n"
@@ -45,6 +45,22 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "Poslato" msgstr "Poslato"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
msgid "Inline"
msgstr ""
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Kreni"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -608,10 +624,6 @@ msgstr "\"bzip-ovano\""
msgid "Calendar" msgid "Calendar"
msgstr "" msgstr ""
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1669,10 +1681,6 @@ msgstr "Globalne privilegije"
msgid "Global value" msgid "Global value"
msgstr "Globalna vrednost" msgstr "Globalna vrednost"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Kreni"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:13+0100\n" "PO-Revision-Date: 2010-03-12 09:13+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: catalan <ca@li.org>\n" "Language-Team: catalan <ca@li.org>\n"
@@ -47,6 +47,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "Enviat" msgstr "Enviat"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Motors"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Executa"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Cancel.lar"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "%1$d row(s) affected." #| msgid "%1$d row(s) affected."
@@ -608,10 +626,6 @@ msgstr "\"comprimit amb bzip\""
msgid "Calendar" msgid "Calendar"
msgstr "Calendari" msgstr "Calendari"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Cancel.lar"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1672,10 +1686,6 @@ msgstr "Permisos generals"
msgid "Global value" msgid "Global value"
msgstr "Valor global" msgstr "Valor global"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Executa"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
msgid "Go to database" msgid "Go to database"
msgstr "Vés a la base de dades" msgstr "Vés a la base de dades"

View File

@@ -4,7 +4,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-30 15:48+0200\n" "PO-Revision-Date: 2010-03-30 15:48+0200\n"
"Last-Translator: Michal <michal@cihar.com>\n" "Last-Translator: Michal <michal@cihar.com>\n"
"Language-Team: czech <cs@li.org>\n" "Language-Team: czech <cs@li.org>\n"
@@ -48,6 +48,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "en" msgstr "en"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Úložiště"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Proveď"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Zrušit"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -606,10 +624,6 @@ msgstr "„zabzipováno“"
msgid "Calendar" msgid "Calendar"
msgstr "Kalendář" msgstr "Kalendář"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Zrušit"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1666,10 +1680,6 @@ msgstr "Globální oprávnění"
msgid "Global value" msgid "Global value"
msgstr "Globální hodnota" msgstr "Globální hodnota"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Proveď"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
msgid "Go to database" msgid "Go to database"
msgstr "Přejít na databázi" msgstr "Přejít na databázi"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:13+0100\n" "PO-Revision-Date: 2010-03-12 09:13+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: danish <da@li.org>\n" "Language-Team: danish <da@li.org>\n"
@@ -45,6 +45,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "en" msgstr "en"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Lagre"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Udfør"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Annuller"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -600,10 +618,6 @@ msgstr "\"bzipped\""
msgid "Calendar" msgid "Calendar"
msgstr "Kalender" msgstr "Kalender"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Annuller"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "Kunne ikke indlæse eksportplugins, check venligst din installation!" msgstr "Kunne ikke indlæse eksportplugins, check venligst din installation!"
@@ -1657,10 +1671,6 @@ msgstr "Globale privilegier"
msgid "Global value" msgid "Global value"
msgstr "Global værdi" msgstr "Global værdi"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Udfør"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
msgid "Go to database" msgid "Go to database"
msgstr "" msgstr ""

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-23 21:07+0200\n" "PO-Revision-Date: 2010-03-23 21:07+0200\n"
"Last-Translator: <me@michaelkeck.de>\n" "Last-Translator: <me@michaelkeck.de>\n"
"Language-Team: german <de@li.org>\n" "Language-Team: german <de@li.org>\n"
@@ -49,6 +49,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "en" msgstr "en"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Formate"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "OK"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Abbrechen"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "%1$d row(s) affected." #| msgid "%1$d row(s) affected."
@@ -610,10 +628,6 @@ msgstr "BZip-komprimiert"
msgid "Calendar" msgid "Calendar"
msgstr "Kalender" msgstr "Kalender"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Abbrechen"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1687,10 +1701,6 @@ msgstr "Globale Rechte"
msgid "Global value" msgid "Global value"
msgstr "Globaler Wert" msgstr "Globaler Wert"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "OK"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
msgid "Go to database" msgid "Go to database"
msgstr "Gehe zur Datenbank" msgstr "Gehe zur Datenbank"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-30 23:16+0200\n" "PO-Revision-Date: 2010-03-30 23:16+0200\n"
"Last-Translator: Michal <michal@cihar.com>\n" "Last-Translator: Michal <michal@cihar.com>\n"
"Language-Team: greek <el@li.org>\n" "Language-Team: greek <el@li.org>\n"
@@ -48,6 +48,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "en" msgstr "en"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Μηχανές"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Εκτέλεση"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Άκυρο"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "%1$d row(s) affected." #| msgid "%1$d row(s) affected."
@@ -605,10 +623,6 @@ msgstr "συμπίεση «bzip»"
msgid "Calendar" msgid "Calendar"
msgstr "Ημερολόγιο" msgstr "Ημερολόγιο"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Άκυρο"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "Αδύνατη η φόρτωση προσθέτων εξαγωγής. Ελέξτε την εγκατάστασή σας!" msgstr "Αδύνατη η φόρτωση προσθέτων εξαγωγής. Ελέξτε την εγκατάστασή σας!"
@@ -1673,10 +1687,6 @@ msgstr "Γενικά δικαιώματα"
msgid "Global value" msgid "Global value"
msgstr "Προεπιλεγμένη τιμή" msgstr "Προεπιλεγμένη τιμή"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Εκτέλεση"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
msgid "Go to database" msgid "Go to database"
msgstr "Μετάβαση στη βάση δεδομένων" msgstr "Μετάβαση στη βάση δεδομένων"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-30 16:04+0200\n" "PO-Revision-Date: 2010-03-30 16:04+0200\n"
"Last-Translator: Michal <michal@cihar.com>\n" "Last-Translator: Michal <michal@cihar.com>\n"
"Language-Team: english-gb <en_GB@li.org>\n" "Language-Team: english-gb <en_GB@li.org>\n"
@@ -47,6 +47,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "en" msgstr "en"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Engines"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Go"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Cancel"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -602,10 +620,6 @@ msgstr "\"bzipped\""
msgid "Calendar" msgid "Calendar"
msgstr "Calendar" msgstr "Calendar"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Cancel"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "Could not load export plug-ins, please check your installation!" msgstr "Could not load export plug-ins, please check your installation!"
@@ -1660,10 +1674,6 @@ msgstr "Global privileges"
msgid "Global value" msgid "Global value"
msgstr "Global value" msgstr "Global value"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Go"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
msgid "Go to database" msgid "Go to database"
msgstr "Go to database" msgstr "Go to database"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 11:23+0200\n" "PO-Revision-Date: 2010-03-12 11:23+0200\n"
"Last-Translator: Michal <michal@cihar.com>\n" "Last-Translator: Michal <michal@cihar.com>\n"
"Language-Team: spanish <es@li.org>\n" "Language-Team: spanish <es@li.org>\n"
@@ -47,6 +47,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "es" msgstr "es"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Motores"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Continuar"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Cancelar"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "%1$d row(s) affected." #| msgid "%1$d row(s) affected."
@@ -612,10 +630,6 @@ msgstr "\"Comprimido con bzip\""
msgid "Calendar" msgid "Calendar"
msgstr "Calendario" msgstr "Calendario"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Cancelar"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1695,10 +1709,6 @@ msgstr "Privilegios globales"
msgid "Global value" msgid "Global value"
msgstr "Valor global" msgstr "Valor global"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Continuar"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: estonian <et@li.org>\n" "Language-Team: estonian <et@li.org>\n"
@@ -47,6 +47,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "Saadetud" msgstr "Saadetud"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Mootor"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Mine"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Katkesta"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -609,10 +627,6 @@ msgstr "\"bzipitud\""
msgid "Calendar" msgid "Calendar"
msgstr "Kalender" msgstr "Kalender"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Katkesta"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "Viga eksportimis moodulite laadimisel, palun kontrolli seadeid!" msgstr "Viga eksportimis moodulite laadimisel, palun kontrolli seadeid!"
@@ -1672,10 +1686,6 @@ msgstr "Globaalsed privileegid"
msgid "Global value" msgid "Global value"
msgstr "Üldine väärtus" msgstr "Üldine väärtus"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Mine"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -3,14 +3,14 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-31 10:40+0200\n" "PO-Revision-Date: 2010-03-31 10:40+0200\n"
"Last-Translator: <hey_neken@mundurat.net>\n" "Last-Translator: <hey_neken@mundurat.net>\n"
"Language-Team: basque <eu@li.org>\n" "Language-Team: basque <eu@li.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Language: eu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n" "X-Generator: Pootle 2.0.1\n"
@@ -45,6 +45,22 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "en" msgstr "en"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
msgid "Inline"
msgstr ""
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Joan"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -604,10 +620,6 @@ msgstr "\"Bzip-ez trinkotua\""
msgid "Calendar" msgid "Calendar"
msgstr "" msgstr ""
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1672,10 +1684,6 @@ msgstr "Pribilegio orokorrak"
msgid "Global value" msgid "Global value"
msgstr "Balio orokorra" msgstr "Balio orokorra"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Joan"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: persian <fa@li.org>\n" "Language-Team: persian <fa@li.org>\n"
@@ -39,6 +39,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "" msgstr ""
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "موتور"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "تاييد"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -599,10 +617,6 @@ msgstr "\"bzipped\""
msgid "Calendar" msgid "Calendar"
msgstr "تقویم" msgstr "تقویم"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1645,10 +1659,6 @@ msgstr ""
msgid "Global value" msgid "Global value"
msgstr "" msgstr ""
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "تاييد"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: finnish <fi@li.org>\n" "Language-Team: finnish <fi@li.org>\n"
@@ -47,6 +47,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "Lähetetty" msgstr "Lähetetty"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Moottorit"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Siirry"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Peruuta"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "%1$d row(s) affected." #| msgid "%1$d row(s) affected."
@@ -607,10 +625,6 @@ msgstr "\"bzip-pakkaus\""
msgid "Calendar" msgid "Calendar"
msgstr "Kalenteri" msgstr "Kalenteri"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Peruuta"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "Vientiin tarvittavia lisäosia ei voitu ladata; tarkista asetukset!" msgstr "Vientiin tarvittavia lisäosia ei voitu ladata; tarkista asetukset!"
@@ -1666,10 +1680,6 @@ msgstr "Globaalit käyttöoikeudet"
msgid "Global value" msgid "Global value"
msgstr "Globaali arvo" msgstr "Globaali arvo"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Siirry"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
msgid "Go to database" msgid "Go to database"
msgstr "Siirry tietokantaan" msgstr "Siirry tietokantaan"

View File

@@ -3,14 +3,14 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-04-01 14:39+0200\n" "PO-Revision-Date: 2010-04-01 14:39+0200\n"
"Last-Translator: Marc <marc@infomarc.info>\n" "Last-Translator: Marc <marc@infomarc.info>\n"
"Language-Team: french <fr@li.org>\n" "Language-Team: french <fr@li.org>\n"
"Language: fr\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Pootle 2.0.1\n" "X-Generator: Pootle 2.0.1\n"
@@ -47,6 +47,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "fr" msgstr "fr"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Moteurs"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Exécuter"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Annuler"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -63,7 +81,6 @@ msgstr[1] "%1$d enregistrements supprimés."
#: libraries/Message.class.php:320 #: libraries/Message.class.php:320
#, php-format #, php-format
#| msgid "%1$d row(s) inserted."
msgid "%1$d row inserted." msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted." msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d enregistrement inséré." msgstr[0] "%1$d enregistrement inséré."
@@ -605,10 +622,6 @@ msgstr "\"bzippé\""
msgid "Calendar" msgid "Calendar"
msgstr "Calendrier" msgstr "Calendrier"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Annuler"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "Erreur lors du chargement des modules d'exportation!" msgstr "Erreur lors du chargement des modules d'exportation!"
@@ -1675,10 +1688,6 @@ msgstr "Privilèges globaux"
msgid "Global value" msgid "Global value"
msgstr "Valeur globale" msgstr "Valeur globale"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Exécuter"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
msgid "Go to database" msgid "Go to database"
msgstr "Aller à la base de données" msgstr "Aller à la base de données"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: galician <gl@li.org>\n" "Language-Team: galician <gl@li.org>\n"
@@ -47,6 +47,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "Enviado" msgstr "Enviado"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Motores"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Executar"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Cancelar"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "%1$d row(s) affected." #| msgid "%1$d row(s) affected."
@@ -608,10 +626,6 @@ msgstr "comprimido no formato \"bzip\""
msgid "Calendar" msgid "Calendar"
msgstr "Calendario" msgstr "Calendario"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Cancelar"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1670,10 +1684,6 @@ msgstr "Privilexios globais"
msgid "Global value" msgid "Global value"
msgstr "Valor global" msgstr "Valor global"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Executar"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
msgid "Go to database" msgid "Go to database"
msgstr "Ir á base de datos" msgstr "Ir á base de datos"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n" "PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: hebrew <he@li.org>\n" "Language-Team: hebrew <he@li.org>\n"
@@ -44,6 +44,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "נשלח" msgstr "נשלח"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "מנועים"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "סע"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -603,10 +621,6 @@ msgstr "\"bzipped\""
msgid "Calendar" msgid "Calendar"
msgstr "לוח שנה" msgstr "לוח שנה"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1651,10 +1665,6 @@ msgstr "הרשאות גלובליות"
msgid "Global value" msgid "Global value"
msgstr "ערך גלובלי" msgstr "ערך גלובלי"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "סע"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n" "PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: hindi <hi@li.org>\n" "Language-Team: hindi <hi@li.org>\n"
@@ -39,6 +39,22 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "" msgstr ""
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
msgid "Inline"
msgstr ""
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr ""
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -589,10 +605,6 @@ msgstr ""
msgid "Calendar" msgid "Calendar"
msgstr "" msgstr ""
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1609,10 +1621,6 @@ msgstr ""
msgid "Global value" msgid "Global value"
msgstr "" msgstr ""
#: libraries/messages.inc.php:368
msgid "Go"
msgstr ""
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
msgid "Go to database" msgid "Go to database"
msgstr "" msgstr ""

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:13+0100\n" "PO-Revision-Date: 2010-03-12 09:13+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: croatian <hr@li.org>\n" "Language-Team: croatian <hr@li.org>\n"
@@ -47,6 +47,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "Poslano" msgstr "Poslano"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Pogoni"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Kreni"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Odustani"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "%1$d row(s) affected." #| msgid "%1$d row(s) affected."
@@ -609,10 +627,6 @@ msgstr "\"bzipano\""
msgid "Calendar" msgid "Calendar"
msgstr "Kalendar" msgstr "Kalendar"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Odustani"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "Nije moguće učitati dodatke za izvoz. Provjerite svoju instalaciju!" msgstr "Nije moguće učitati dodatke za izvoz. Provjerite svoju instalaciju!"
@@ -1671,10 +1685,6 @@ msgstr "Opće privilegije"
msgid "Global value" msgid "Global value"
msgstr "Opća vrijednost" msgstr "Opća vrijednost"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Kreni"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n" "PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: hungarian <hu@li.org>\n" "Language-Team: hungarian <hu@li.org>\n"
@@ -46,6 +46,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "en" msgstr "en"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Motorok"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Indítás"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Mégse"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "%1$d row(s) affected." #| msgid "%1$d row(s) affected."
@@ -607,10 +625,6 @@ msgstr "\"bzip tömörítés\""
msgid "Calendar" msgid "Calendar"
msgstr "Naptár" msgstr "Naptár"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Mégse"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1682,10 +1696,6 @@ msgstr "Globális jogok"
msgid "Global value" msgid "Global value"
msgstr "Globális változó" msgstr "Globális változó"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Indítás"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-28 13:56+0200\n" "PO-Revision-Date: 2010-03-28 13:56+0200\n"
"Last-Translator: Azhari Harahap <azhari.harahap@yahoo.com>\n" "Last-Translator: Azhari Harahap <azhari.harahap@yahoo.com>\n"
"Language-Team: indonesian <id@li.org>\n" "Language-Team: indonesian <id@li.org>\n"
@@ -46,6 +46,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "id" msgstr "id"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Mesin"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Go"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Batal"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -598,10 +616,6 @@ msgstr "\"Dikompress dengan BZip\""
msgid "Calendar" msgid "Calendar"
msgstr "Kalender" msgstr "Kalender"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Batal"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "Tidak dapat memuat plugin export, silahkan periksa instalasi Anda!" msgstr "Tidak dapat memuat plugin export, silahkan periksa instalasi Anda!"
@@ -1651,10 +1665,6 @@ msgstr "Hak Istimewa (Privileges) Global"
msgid "Global value" msgid "Global value"
msgstr "Nilai Global" msgstr "Nilai Global"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Go"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -3,14 +3,14 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-31 18:42+0200\n" "PO-Revision-Date: 2010-03-31 18:42+0200\n"
"Last-Translator: <fantonifabio@tiscali.it>\n" "Last-Translator: <fantonifabio@tiscali.it>\n"
"Language-Team: italian <it@li.org>\n" "Language-Team: italian <it@li.org>\n"
"Language: it\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n" "X-Generator: Pootle 2.0.1\n"
@@ -47,9 +47,26 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "en" msgstr "en"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Motori"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Esegui"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Annulla"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
#| msgid "%1$d row(s) affected."
msgid "%1$d row affected." msgid "%1$d row affected."
msgid_plural "%1$d rows affected." msgid_plural "%1$d rows affected."
msgstr[0] "%1$d riga modificata." msgstr[0] "%1$d riga modificata."
@@ -57,7 +74,6 @@ msgstr[1] "%1$d righe modificate."
#: libraries/Message.class.php:301 #: libraries/Message.class.php:301
#, php-format #, php-format
#| msgid "%1$d row(s) deleted."
msgid "%1$d row deleted." msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted." msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d riga cancellata." msgstr[0] "%1$d riga cancellata."
@@ -65,7 +81,6 @@ msgstr[1] "%1$d righe cancellate."
#: libraries/Message.class.php:320 #: libraries/Message.class.php:320
#, php-format #, php-format
#| msgid "%1$d row(s) inserted."
msgid "%1$d row inserted." msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted." msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d riga inserita." msgstr[0] "%1$d riga inserita."
@@ -605,10 +620,6 @@ msgstr "\"compresso con bzip\""
msgid "Calendar" msgid "Calendar"
msgstr "Calendario" msgstr "Calendario"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Annulla"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1675,10 +1686,6 @@ msgstr "Privilegi globali"
msgid "Global value" msgid "Global value"
msgstr "Valore globale" msgstr "Valore globale"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Esegui"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
msgid "Go to database" msgid "Go to database"
msgstr "Vai al database" msgstr "Vai al database"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 11:22+0200\n" "PO-Revision-Date: 2010-03-12 11:22+0200\n"
"Last-Translator: Michal <michal@cihar.com>\n" "Last-Translator: Michal <michal@cihar.com>\n"
"Language-Team: japanese <jp@li.org>\n" "Language-Team: japanese <jp@li.org>\n"
@@ -46,6 +46,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "en" msgstr "en"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "エンジン"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "実行する"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "キャンセル"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "%1$d row(s) affected." #| msgid "%1$d row(s) affected."
@@ -600,10 +618,6 @@ msgstr "\"bzip 形式\""
msgid "Calendar" msgid "Calendar"
msgstr "カレンダー" msgstr "カレンダー"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "キャンセル"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1657,10 +1671,6 @@ msgstr "グローバル特権"
msgid "Global value" msgid "Global value"
msgstr "グローバル値" msgstr "グローバル値"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "実行する"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
msgid "Go to database" msgid "Go to database"
msgstr "" msgstr ""

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: georgian <ka@li.org>\n" "Language-Team: georgian <ka@li.org>\n"
@@ -46,6 +46,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "ka" msgstr "ka"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "ძრავები"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "გადასვლა"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "გაუქმება"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "%1$d row(s) affected." #| msgid "%1$d row(s) affected."
@@ -608,10 +626,6 @@ msgstr "\"bzip-ით დაარქივებული\""
msgid "Calendar" msgid "Calendar"
msgstr "კალენდარი" msgstr "კალენდარი"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "გაუქმება"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "Could not load export plugins, please check your installation!" msgstr "Could not load export plugins, please check your installation!"
@@ -1673,10 +1687,6 @@ msgstr "გლობალური პრივილეგიები"
msgid "Global value" msgid "Global value"
msgstr "გლობალური მნიშვნელობა" msgstr "გლობალური მნიშვნელობა"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "გადასვლა"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: korean <ko@li.org>\n" "Language-Team: korean <ko@li.org>\n"
@@ -41,6 +41,22 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "보냄" msgstr "보냄"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
msgid "Inline"
msgstr ""
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "실행"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -603,10 +619,6 @@ msgstr "\"bz 압축\""
msgid "Calendar" msgid "Calendar"
msgstr "" msgstr ""
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1652,10 +1664,6 @@ msgstr "전체적 권한"
msgid "Global value" msgid "Global value"
msgstr "" msgstr ""
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "실행"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-30 20:28+0200\n" "PO-Revision-Date: 2010-03-30 20:28+0200\n"
"Last-Translator: Rytis <rytis.s@gmail.com>\n" "Last-Translator: Rytis <rytis.s@gmail.com>\n"
"Language-Team: lithuanian <lt@li.org>\n" "Language-Team: lithuanian <lt@li.org>\n"
@@ -48,6 +48,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "en" msgstr "en"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Varikliai"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Vykdyti"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Atšaukti"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -608,10 +626,6 @@ msgstr "\"bzip\""
msgid "Calendar" msgid "Calendar"
msgstr "Kalendorius" msgstr "Kalendorius"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Atšaukti"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1675,10 +1689,6 @@ msgstr "Globalios teisės"
msgid "Global value" msgid "Global value"
msgstr "Globali reikšmė" msgstr "Globali reikšmė"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Vykdyti"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
msgid "Go to database" msgid "Go to database"
msgstr "Eiti į duomenų bazę" msgstr "Eiti į duomenų bazę"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: latvian <lv@li.org>\n" "Language-Team: latvian <lv@li.org>\n"
@@ -45,6 +45,22 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "Nosūtīts" msgstr "Nosūtīts"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
msgid "Inline"
msgstr ""
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Aiziet!"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -605,10 +621,6 @@ msgstr "Arhivēts ar bzip"
msgid "Calendar" msgid "Calendar"
msgstr "Kalendārs" msgstr "Kalendārs"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1668,10 +1680,6 @@ msgstr "Globālās privilēģijas"
msgid "Global value" msgid "Global value"
msgstr "Globālā vērtība" msgstr "Globālā vērtība"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Aiziet!"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: macedonian_cyrillic <mk@li.org>\n" "Language-Team: macedonian_cyrillic <mk@li.org>\n"
@@ -45,6 +45,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "Пратено" msgstr "Пратено"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Складишта"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "OK"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -607,10 +625,6 @@ msgstr "\"bzip\""
msgid "Calendar" msgid "Calendar"
msgstr "Календар" msgstr "Календар"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1672,10 +1686,6 @@ msgstr "Глобални привилегии"
msgid "Global value" msgid "Global value"
msgstr "Глобална вредност" msgstr "Глобална вредност"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "OK"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: mongolian <mn@li.org>\n" "Language-Team: mongolian <mn@li.org>\n"
@@ -43,6 +43,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "" msgstr ""
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Хөдөлгүүрүүд"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Яв"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Болих"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -598,10 +616,6 @@ msgstr "bzip-ээр шахагдсан"
msgid "Calendar" msgid "Calendar"
msgstr "Цагалбар" msgstr "Цагалбар"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Болих"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1642,10 +1656,6 @@ msgstr "Глобал онцгой эрх"
msgid "Global value" msgid "Global value"
msgstr "Глобал утга" msgstr "Глобал утга"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Яв"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
msgid "Go to database" msgid "Go to database"
msgstr "" msgstr ""

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: malay <ms@li.org>\n" "Language-Team: malay <ms@li.org>\n"
@@ -41,6 +41,22 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "Hantar" msgstr "Hantar"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
msgid "Inline"
msgstr ""
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Pergi"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -602,10 +618,6 @@ msgstr "bzipped"
msgid "Calendar" msgid "Calendar"
msgstr "" msgstr ""
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1653,10 +1665,6 @@ msgstr "Tiada Privilej"
msgid "Global value" msgid "Global value"
msgstr "Nilai Global" msgstr "Nilai Global"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Pergi"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-30 23:13+0200\n" "PO-Revision-Date: 2010-03-30 23:13+0200\n"
"Last-Translator: Michal <michal@cihar.com>\n" "Last-Translator: Michal <michal@cihar.com>\n"
"Language-Team: norwegian <no@li.org>\n" "Language-Team: norwegian <no@li.org>\n"
@@ -47,6 +47,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "en" msgstr "en"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Motorer"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Utfør"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Avbryt"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "%1$d row(s) affected." #| msgid "%1$d row(s) affected."
@@ -604,10 +622,6 @@ msgstr "Komprimert (bz2)"
msgid "Calendar" msgid "Calendar"
msgstr "Kalender" msgstr "Kalender"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Avbryt"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "Kunne ikke laste eksporttillegg, kontroller din innstallasjon!" msgstr "Kunne ikke laste eksporttillegg, kontroller din innstallasjon!"
@@ -1663,10 +1677,6 @@ msgstr "Globale privilegier"
msgid "Global value" msgid "Global value"
msgstr "Global verdi" msgstr "Global verdi"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Utfør"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
msgid "Go to database" msgid "Go to database"
msgstr "Gå til database" msgstr "Gå til database"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-26 15:46+0200\n" "PO-Revision-Date: 2010-03-26 15:46+0200\n"
"Last-Translator: <rink@initfour.nl>\n" "Last-Translator: <rink@initfour.nl>\n"
"Language-Team: dutch <nl@li.org>\n" "Language-Team: dutch <nl@li.org>\n"
@@ -47,6 +47,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "en" msgstr "en"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Engines"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Start"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Annuleren"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "%1$d row(s) affected." #| msgid "%1$d row(s) affected."
@@ -607,10 +625,6 @@ msgstr "\"ge-bzipt\""
msgid "Calendar" msgid "Calendar"
msgstr "Kalender" msgstr "Kalender"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Annuleren"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1679,10 +1693,6 @@ msgstr "Globale privileges"
msgid "Global value" msgid "Global value"
msgstr "Globale waarde" msgstr "Globale waarde"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Start"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
msgid "Go to database" msgid "Go to database"
msgstr "Ga naar database" msgstr "Ga naar database"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -44,6 +44,22 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "" msgstr ""
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
msgid "Inline"
msgstr ""
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr ""
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, possible-php-format #, possible-php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -594,10 +610,6 @@ msgstr ""
msgid "Calendar" msgid "Calendar"
msgstr "" msgstr ""
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1612,10 +1624,6 @@ msgstr ""
msgid "Global value" msgid "Global value"
msgstr "" msgstr ""
#: libraries/messages.inc.php:368
msgid "Go"
msgstr ""
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
msgid "Go to database" msgid "Go to database"
msgstr "" msgstr ""

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: polish <pl@li.org>\n" "Language-Team: polish <pl@li.org>\n"
@@ -47,6 +47,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "Wysłane" msgstr "Wysłane"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Mechanizmy"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Wykonaj"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Anuluj"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "%1$d row(s) affected." #| msgid "%1$d row(s) affected."
@@ -607,10 +625,6 @@ msgstr "\".bz2\""
msgid "Calendar" msgid "Calendar"
msgstr "Kalendarz" msgstr "Kalendarz"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Anuluj"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "Nie udało się załadować modułów eksportu, proszę sprawdzić instalację!" msgstr "Nie udało się załadować modułów eksportu, proszę sprawdzić instalację!"
@@ -1674,10 +1688,6 @@ msgstr "Globalne uprawnienia"
msgid "Global value" msgid "Global value"
msgstr "Wartość globalna" msgstr "Wartość globalna"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Wykonaj"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: portuguese <pt@li.org>\n" "Language-Team: portuguese <pt@li.org>\n"
@@ -45,6 +45,22 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "pt" msgstr "pt"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
msgid "Inline"
msgstr ""
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Executa"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -607,10 +623,6 @@ msgstr "\"Compressão bzip\""
msgid "Calendar" msgid "Calendar"
msgstr "" msgstr ""
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1677,10 +1689,6 @@ msgstr "Privilégios Globais"
msgid "Global value" msgid "Global value"
msgstr "Valor Global" msgstr "Valor Global"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Executa"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-21 05:17+0200\n" "PO-Revision-Date: 2010-03-21 05:17+0200\n"
"Last-Translator: Maurício Meneghini Fauth <mauriciofauth@gmail.com>\n" "Last-Translator: Maurício Meneghini Fauth <mauriciofauth@gmail.com>\n"
"Language-Team: brazilian_portuguese <pt_BR@li.org>\n" "Language-Team: brazilian_portuguese <pt_BR@li.org>\n"
@@ -47,6 +47,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "en" msgstr "en"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Engines"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Executar"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Cancelar"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "%1$d row(s) affected." #| msgid "%1$d row(s) affected."
@@ -603,10 +621,6 @@ msgstr "\"compactado com bzip\""
msgid "Calendar" msgid "Calendar"
msgstr "Calendário" msgstr "Calendário"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Cancelar"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "Não pode carregar exportação dos plugins, verifique sua instalação!" msgstr "Não pode carregar exportação dos plugins, verifique sua instalação!"
@@ -1664,10 +1678,6 @@ msgstr "Privilégios globais"
msgid "Global value" msgid "Global value"
msgstr "Valor global" msgstr "Valor global"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Executar"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-13 00:41+0200\n" "PO-Revision-Date: 2010-03-13 00:41+0200\n"
"Last-Translator: <ronaldinia@yahoo.com>\n" "Last-Translator: <ronaldinia@yahoo.com>\n"
"Language-Team: romanian <ro@li.org>\n" "Language-Team: romanian <ro@li.org>\n"
@@ -50,6 +50,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "en" msgstr "en"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Motoare"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Execută"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Renunță"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "%1$d row(s) affected." #| msgid "%1$d row(s) affected."
@@ -613,10 +631,6 @@ msgstr "cu „bzip2”"
msgid "Calendar" msgid "Calendar"
msgstr "Calendar" msgstr "Calendar"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Renunță"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1682,10 +1696,6 @@ msgstr "Privilegii globale"
msgid "Global value" msgid "Global value"
msgstr "Valoare globală" msgstr "Valoare globală"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Execută"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -3,14 +3,14 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-30 23:23+0200\n" "PO-Revision-Date: 2010-03-30 23:23+0200\n"
"Last-Translator: Michal <michal@cihar.com>\n" "Last-Translator: Michal <michal@cihar.com>\n"
"Language-Team: russian <ru@li.org>\n" "Language-Team: russian <ru@li.org>\n"
"Language: ru\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Language: ru\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.1\n" "X-Generator: Pootle 2.0.1\n"
@@ -48,6 +48,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "en" msgstr "en"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Типы таблиц"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "OK"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Отмена"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "%1$d row(s) affected." #| msgid "%1$d row(s) affected."
@@ -606,10 +624,6 @@ msgstr "bzip"
msgid "Calendar" msgid "Calendar"
msgstr "Календарь" msgstr "Календарь"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Отмена"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1674,10 +1688,6 @@ msgstr "Глобальные привилегии"
msgid "Global value" msgid "Global value"
msgstr "Глобальное значение" msgstr "Глобальное значение"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "OK"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
msgid "Go to database" msgid "Go to database"
msgstr "Перейти к базе данных" msgstr "Перейти к базе данных"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n" "PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal <michal@cihar.com>\n" "Last-Translator: Michal <michal@cihar.com>\n"
"Language-Team: sinhala <si@li.org>\n" "Language-Team: sinhala <si@li.org>\n"
@@ -46,6 +46,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "en" msgstr "en"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "යන්ත්‍රයන්"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "යන්න"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -608,10 +626,6 @@ msgstr "\"bzipp ගතකරන ලදි\""
msgid "Calendar" msgid "Calendar"
msgstr "දින දර්ශනය" msgstr "දින දර්ශනය"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "Could not load export plugins, please check your installation!" msgstr "Could not load export plugins, please check your installation!"
@@ -1669,10 +1683,6 @@ msgstr "ගෝලීය වරප්‍රසාද"
msgid "Global value" msgid "Global value"
msgstr "ගෝලීය අගය" msgstr "ගෝලීය අගය"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "යන්න"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -3,14 +3,14 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-30 23:47+0200\n" "PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal <michal@cihar.com>\n" "Last-Translator: Michal <michal@cihar.com>\n"
"Language-Team: slovak <sk@li.org>\n" "Language-Team: slovak <sk@li.org>\n"
"Language: sk\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Language: sk\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Pootle 2.0.1\n" "X-Generator: Pootle 2.0.1\n"
@@ -46,6 +46,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "en" msgstr "en"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Systémy"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Vykonaj"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Zrušiť"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "%1$d row(s) affected." #| msgid "%1$d row(s) affected."
@@ -607,10 +625,6 @@ msgstr "\"bzipped\""
msgid "Calendar" msgid "Calendar"
msgstr "Kalendár" msgstr "Kalendár"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Zrušiť"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1666,10 +1680,6 @@ msgstr "Globálne práva"
msgid "Global value" msgid "Global value"
msgstr "Globálna hodnota" msgstr "Globálna hodnota"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Vykonaj"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
msgid "Go to database" msgid "Go to database"
msgstr "Prejsť do databázy" msgstr "Prejsť do databázy"

View File

@@ -3,16 +3,16 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-30 23:47+0200\n" "PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal <michal@cihar.com>\n" "Last-Translator: Michal <michal@cihar.com>\n"
"Language-Team: slovenian <sl@li.org>\n" "Language-Team: slovenian <sl@li.org>\n"
"Language: sl\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " "Language: sl\n"
"n%100==4 ? 2 : 3);\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
"%100==4 ? 2 : 3);\n"
"X-Generator: Pootle 2.0.1\n" "X-Generator: Pootle 2.0.1\n"
#: libraries/auth/config.auth.lib.php:107 #: libraries/auth/config.auth.lib.php:107
@@ -45,6 +45,22 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "en" msgstr "en"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
msgid "Inline"
msgstr ""
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Izvedi"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -607,10 +623,6 @@ msgstr "\"bzipano\""
msgid "Calendar" msgid "Calendar"
msgstr "Koledar" msgstr "Koledar"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1667,10 +1679,6 @@ msgstr "Globalni privilegiji"
msgid "Global value" msgid "Global value"
msgstr "Skupna vrednost" msgstr "Skupna vrednost"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Izvedi"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-30 23:08+0200\n" "PO-Revision-Date: 2010-03-30 23:08+0200\n"
"Last-Translator: Michal <michal@cihar.com>\n" "Last-Translator: Michal <michal@cihar.com>\n"
"Language-Team: albanian <sq@li.org>\n" "Language-Team: albanian <sq@li.org>\n"
@@ -45,6 +45,22 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "en" msgstr "en"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
msgid "Inline"
msgstr ""
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Zbato"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -609,10 +625,6 @@ msgstr "\"kompresuar me bzip2\""
msgid "Calendar" msgid "Calendar"
msgstr "Kalendari" msgstr "Kalendari"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1670,10 +1682,6 @@ msgstr "Të drejtat e përgjithshme"
msgid "Global value" msgid "Global value"
msgstr "Vlerë Globale" msgstr "Vlerë Globale"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Zbato"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -3,14 +3,14 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-30 23:47+0200\n" "PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal <michal@cihar.com>\n" "Last-Translator: Michal <michal@cihar.com>\n"
"Language-Team: serbian_cyrillic <sr@li.org>\n" "Language-Team: serbian_cyrillic <sr@li.org>\n"
"Language: sr\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Language: sr\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.1\n" "X-Generator: Pootle 2.0.1\n"
@@ -48,6 +48,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "en" msgstr "en"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Складиштења"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Крени"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Откажи"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -610,10 +628,6 @@ msgstr "\"бзип-овано\""
msgid "Calendar" msgid "Calendar"
msgstr "Календар" msgstr "Календар"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Откажи"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1673,10 +1687,6 @@ msgstr "Глобалне привилегије"
msgid "Global value" msgid "Global value"
msgstr "Глобална вредност" msgstr "Глобална вредност"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Крени"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -3,14 +3,14 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-30 23:47+0200\n" "PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal <michal@cihar.com>\n" "Last-Translator: Michal <michal@cihar.com>\n"
"Language-Team: serbian_latin <sr@latin@li.org>\n" "Language-Team: serbian_latin <sr@latin@li.org>\n"
"Language: sr@latin\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Language: sr@latin\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.1\n" "X-Generator: Pootle 2.0.1\n"
@@ -48,6 +48,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "en" msgstr "en"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Skladištenja"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Kreni"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Otkaži"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -610,10 +628,6 @@ msgstr "\"bzip-ovano\""
msgid "Calendar" msgid "Calendar"
msgstr "Kalendar" msgstr "Kalendar"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Otkaži"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1673,10 +1687,6 @@ msgstr "Globalne privilegije"
msgid "Global value" msgid "Global value"
msgstr "Globalna vrednost" msgstr "Globalna vrednost"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Kreni"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: swedish <sv@li.org>\n" "Language-Team: swedish <sv@li.org>\n"
@@ -47,6 +47,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "Skickade" msgstr "Skickade"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Motorer"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Kör"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Avbryt"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "%1$d row(s) affected." #| msgid "%1$d row(s) affected."
@@ -606,10 +624,6 @@ msgstr "\"bzippad\""
msgid "Calendar" msgid "Calendar"
msgstr "Kalender" msgstr "Kalender"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Avbryt"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "Kunde inte ladda export-tillägg. Kontrollera din installation." msgstr "Kunde inte ladda export-tillägg. Kontrollera din installation."
@@ -1670,10 +1684,6 @@ msgstr "Globala privilegier"
msgid "Global value" msgid "Global value"
msgstr "Globalt värde" msgstr "Globalt värde"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Kör"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-24 16:47+0200\n" "PO-Revision-Date: 2010-03-24 16:47+0200\n"
"Last-Translator: <veeven@gmail.com>\n" "Last-Translator: <veeven@gmail.com>\n"
"Language-Team: Telugu <te@li.org>\n" "Language-Team: Telugu <te@li.org>\n"
@@ -44,6 +44,22 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "" msgstr ""
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
msgid "Inline"
msgstr ""
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "వెళ్ళు"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -606,10 +622,6 @@ msgstr ""
msgid "Calendar" msgid "Calendar"
msgstr "" msgstr ""
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1636,10 +1648,6 @@ msgstr ""
msgid "Global value" msgid "Global value"
msgstr "" msgstr ""
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "వెళ్ళు"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
msgid "Go to database" msgid "Go to database"
msgstr "" msgstr ""

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: thai <th@li.org>\n" "Language-Team: thai <th@li.org>\n"
@@ -41,6 +41,22 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "ถูกส่ง" msgstr "ถูกส่ง"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
msgid "Inline"
msgstr ""
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "ลงมือ"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -605,10 +621,6 @@ msgstr "\"bzipped\""
msgid "Calendar" msgid "Calendar"
msgstr "ปฏิทิน" msgstr "ปฏิทิน"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1649,10 +1661,6 @@ msgstr "สิทธิแบบโกลบอล"
msgid "Global value" msgid "Global value"
msgstr "ค่าแบบโกลบอล" msgstr "ค่าแบบโกลบอล"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "ลงมือ"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: turkish <tr@li.org>\n" "Language-Team: turkish <tr@li.org>\n"
@@ -46,6 +46,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "tr" msgstr "tr"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Motorlar"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Git"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "İptal"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "%1$d row(s) affected." #| msgid "%1$d row(s) affected."
@@ -609,10 +627,6 @@ msgstr "\"bzip olarak\""
msgid "Calendar" msgid "Calendar"
msgstr "Takvim" msgstr "Takvim"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "İptal"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1672,10 +1686,6 @@ msgstr "Genel yetkiler"
msgid "Global value" msgid "Global value"
msgstr "Genel değer" msgstr "Genel değer"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Git"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
msgid "Go to database" msgid "Go to database"
msgstr "Veritabanına git" msgstr "Veritabanına git"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-30 23:14+0200\n" "PO-Revision-Date: 2010-03-30 23:14+0200\n"
"Last-Translator: Michal <michal@cihar.com>\n" "Last-Translator: Michal <michal@cihar.com>\n"
"Language-Team: tatarish <tt@li.org>\n" "Language-Team: tatarish <tt@li.org>\n"
@@ -45,6 +45,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "en" msgstr "en"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Engine"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Äydä"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -605,10 +623,6 @@ msgstr "\"bziple\""
msgid "Calendar" msgid "Calendar"
msgstr "Täqwim" msgstr "Täqwim"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
#, fuzzy #, fuzzy
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
@@ -1666,10 +1680,6 @@ msgstr "Töp xoquq"
msgid "Global value" msgid "Global value"
msgstr "Töp bäyä" msgstr "Töp bäyä"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Äydä"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: ukrainian <uk@li.org>\n" "Language-Team: ukrainian <uk@li.org>\n"
@@ -43,6 +43,22 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "" msgstr ""
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
msgid "Inline"
msgstr ""
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "Вперед"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -593,10 +609,6 @@ msgstr "запакувати в \"bzip\""
msgid "Calendar" msgid "Calendar"
msgstr "" msgstr ""
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1641,10 +1653,6 @@ msgstr "Глобальні права"
msgid "Global value" msgid "Global value"
msgstr "Загальне значення" msgstr "Загальне значення"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "Вперед"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
msgid "Go to database" msgid "Go to database"
msgstr "" msgstr ""

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:20+0100\n" "PO-Revision-Date: 2010-03-12 09:20+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: uzbek_cyrillic <uz@li.org>\n" "Language-Team: uzbek_cyrillic <uz@li.org>\n"
@@ -46,6 +46,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "Юборилди" msgstr "Юборилди"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Жадвал турлари"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "OK"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Бекор қилиш"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "%1$d row(s) affected." #| msgid "%1$d row(s) affected."
@@ -609,10 +627,6 @@ msgstr "bzip ёрдамида сиқилган"
msgid "Calendar" msgid "Calendar"
msgstr "Тақвим" msgstr "Тақвим"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Бекор қилиш"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1679,10 +1693,6 @@ msgstr "Глобал привилегиялар"
msgid "Global value" msgid "Global value"
msgstr "Глобал қиймат" msgstr "Глобал қиймат"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "OK"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
msgid "Go to database" msgid "Go to database"
msgstr "Ушбу базага ўтиш" msgstr "Ушбу базага ўтиш"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:20+0100\n" "PO-Revision-Date: 2010-03-12 09:20+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: uzbek_latin <uz@latin@li.org>\n" "Language-Team: uzbek_latin <uz@latin@li.org>\n"
@@ -46,6 +46,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "Yuborildi" msgstr "Yuborildi"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Jadval turlari"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "OK"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Bekor qilish"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "%1$d row(s) affected." #| msgid "%1$d row(s) affected."
@@ -610,10 +628,6 @@ msgstr "bzip yordamida siqilgan"
msgid "Calendar" msgid "Calendar"
msgstr "Taqvim" msgstr "Taqvim"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "Bekor qilish"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "" msgstr ""
@@ -1686,10 +1700,6 @@ msgstr "Global privilegiyalar"
msgid "Global value" msgid "Global value"
msgstr "Global qiymat" msgstr "Global qiymat"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "OK"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
msgid "Go to database" msgid "Go to database"
msgstr "Ushbu bazaga otish" msgstr "Ushbu bazaga otish"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-19 03:34+0200\n" "PO-Revision-Date: 2010-03-19 03:34+0200\n"
"Last-Translator: shanyan baishui <Siramizu@gmail.com>\n" "Last-Translator: shanyan baishui <Siramizu@gmail.com>\n"
"Language-Team: chinese_simplified <zh_CN@li.org>\n" "Language-Team: chinese_simplified <zh_CN@li.org>\n"
@@ -44,6 +44,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "zh" msgstr "zh"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "引擎"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "执行"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr "取消"
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, fuzzy, php-format #, fuzzy, php-format
#| msgid "%1$d row(s) affected." #| msgid "%1$d row(s) affected."
@@ -597,10 +615,6 @@ msgstr "bzip 压缩"
msgid "Calendar" msgid "Calendar"
msgstr "日历" msgstr "日历"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr "取消"
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
msgstr "无法加载导出插件,请检查安装!" msgstr "无法加载导出插件,请检查安装!"
@@ -1637,10 +1651,6 @@ msgstr "全局权限"
msgid "Global value" msgid "Global value"
msgstr "全局值" msgstr "全局值"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "执行"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
msgid "Go to database" msgid "Go to database"
msgstr "转到数据库" msgstr "转到数据库"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-03-30 23:18+0200\n" "POT-Creation-Date: 2010-04-01 14:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n" "PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n" "Last-Translator: Automatically generated\n"
"Language-Team: chinese_traditional <zh_TW@li.org>\n" "Language-Team: chinese_traditional <zh_TW@li.org>\n"
@@ -44,6 +44,24 @@ msgctxt "$mysql_5_0_doc_lang"
msgid "en" msgid "en"
msgstr "zh" msgstr "zh"
#: libraries/common.lib.php:1274
msgid "Click here to Inline Edit Your SQL Query."
msgstr ""
#: libraries/common.lib.php:1276
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "引擎"
#: libraries/header_scripts.inc.php:107 libraries/messages.inc.php:368
msgid "Go"
msgstr "執行"
#: libraries/header_scripts.inc.php:108 libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/Message.class.php:282 #: libraries/Message.class.php:282
#, php-format #, php-format
msgid "%1$d row affected." msgid "%1$d row affected."
@@ -603,10 +621,6 @@ msgstr "\"bzipped\""
msgid "Calendar" msgid "Calendar"
msgstr "日曆" msgstr "日曆"
#: libraries/messages.inc.php:127
msgid "Cancel"
msgstr ""
#: libraries/messages.inc.php:128 #: libraries/messages.inc.php:128
#, fuzzy #, fuzzy
msgid "Could not load export plugins, please check your installation!" msgid "Could not load export plugins, please check your installation!"
@@ -1645,10 +1659,6 @@ msgstr "整體權限"
msgid "Global value" msgid "Global value"
msgstr "整體值" msgstr "整體值"
#: libraries/messages.inc.php:368
msgid "Go"
msgstr "執行"
#: libraries/messages.inc.php:369 #: libraries/messages.inc.php:369
#, fuzzy #, fuzzy
msgid "Go to database" msgid "Go to database"

View File

@@ -981,7 +981,11 @@ textarea#sqlquery {
width: 100%; width: 100%;
/* height: 100%; */ /* height: 100%; */
} }
textarea#sql_query_edit{
height:7em;
width: 95%;
display:block;
}
div#queryboxcontainer div#bookmarkoptions { div#queryboxcontainer div#bookmarkoptions {
margin-top: 0.5em; margin-top: 0.5em;
} }

View File

@@ -929,7 +929,11 @@ textarea#sqlquery {
width: 100%; width: 100%;
/* height: 100%; */ /* height: 100%; */
} }
textarea#sql_query_edit{
height:7em;
width: 95%;
display:block;
}
div#queryboxcontainer div#bookmarkoptions { div#queryboxcontainer div#bookmarkoptions {
margin-top: 0.5em; margin-top: 0.5em;
} }