Merge branch 'master' of github.com:phpmyadmin/phpmyadmin

This commit is contained in:
Madhura Jayaratne 2012-12-15 07:10:39 +05:30
commit 853577f22c
42 changed files with 445 additions and 451 deletions

View File

@ -76,6 +76,8 @@ VerboseMultiSubmit, ReplaceHelpImg
+ [interface] Added "scroll to top" link in menubar
+ [designer] Fullscreen mode for the designer
3.5.6.0 (not yet released)
3.5.5.0 (not yet released)
- bug #3563824 [export] Support Apache's mod_deflate
- bug #3585523 [interface] Inline query editing broken after row update
@ -84,6 +86,9 @@ VerboseMultiSubmit, ReplaceHelpImg
- bug #3588354 [l10n] Portuguese Language not displaying correctly
- bug #3591412 [status] Live charts don't work for non-default server
- bug [core] Proxy ajax calls to pma.net to avoid browser notices
- bug #3593534 [tracking] Structure Snapshot on tracked view renders invalid
SQL
- bug #3544366 [events] Event comments not saved
3.5.4.0 (2012-11-16)
- bug #3570212 [edit] uuid_short() is a no-arguments function

View File

@ -19,6 +19,7 @@
"source": "https://github.com/phpmyadmin/phpmyadmin"
},
"require": {
"php": ">=5.2.0"
"php": ">=5.2.0",
"mysql": ">=5.0"
}
}

View File

@ -13,6 +13,8 @@ require_once 'libraries/Scripts.class.php';
require_once 'libraries/RecentTable.class.php';
require_once 'libraries/Menu.class.php';
require_once 'libraries/navigation/Navigation.class.php';
require_once 'libraries/url_generating.lib.php';
/**
* Class used to output the HTTP and HTML headers

View File

@ -4064,5 +4064,62 @@ class PMA_Util
return $values;
}
/**
* fills given tooltip arrays
*
* @param array &$tooltip_truename tooltip data
* @param array &$tooltip_aliasname tooltip data
* @param array $table tabledata
*
* @return void
*/
public static function fillTooltip(
&$tooltip_truename, &$tooltip_aliasname, $table)
{
if (strstr($table['Comment'], '; InnoDB free') === false) {
if (!strstr($table['Comment'], 'InnoDB free') === false) {
// here we have just InnoDB generated part
$table['Comment'] = '';
}
} else {
// remove InnoDB comment from end, just the minimal part
// (*? is non greedy)
$table['Comment'] = preg_replace(
'@; InnoDB free:.*?$@', '', $table['Comment']
);
}
// views have VIEW as comment so it's not a real comment put by a user
if ('VIEW' == $table['Comment']) {
$table['Comment'] = '';
}
if (empty($table['Comment'])) {
$table['Comment'] = $table['Name'];
} else {
// todo: why?
$table['Comment'] .= ' ';
}
$tooltip_truename[$table['Name']] = $table['Name'];
$tooltip_aliasname[$table['Name']] = $table['Comment'];
if (isset($table['Create_time']) && !empty($table['Create_time'])) {
$tooltip_aliasname[$table['Name']] .= ', ' . __('Creation')
. ': '
. PMA_Util::localisedDate(strtotime($table['Create_time']));
}
if (! empty($table['Update_time'])) {
$tooltip_aliasname[$table['Name']] .= ', ' . __('Last update')
. ': '
. PMA_Util::localisedDate(strtotime($table['Update_time']));
}
if (! empty($table['Check_time'])) {
$tooltip_aliasname[$table['Name']] .= ', ' . __('Last check')
. ': '
. PMA_Util::localisedDate(strtotime($table['Check_time']));
}
}
}
?>

View File

@ -29,61 +29,6 @@ if (isset($_REQUEST['pos'])) {
}
$pos = $_SESSION['tmp_user_values']['table_limit_offset'];
/**
* fills given tooltip arrays
*
* @param array &$tooltip_truename tooltip data
* @param array &$tooltip_aliasname tooltip data
* @param array $table tabledata
*
* @return void
*/
function PMA_fillTooltip(&$tooltip_truename, &$tooltip_aliasname, $table)
{
if (strstr($table['Comment'], '; InnoDB free') === false) {
if (!strstr($table['Comment'], 'InnoDB free') === false) {
// here we have just InnoDB generated part
$table['Comment'] = '';
}
} else {
// remove InnoDB comment from end, just the minimal part (*? is non greedy)
$table['Comment'] = preg_replace(
'@; InnoDB free:.*?$@', '', $table['Comment']
);
}
// views have VIEW as comment so it's not a real comment put by a user
if ('VIEW' == $table['Comment']) {
$table['Comment'] = '';
}
if (empty($table['Comment'])) {
$table['Comment'] = $table['Name'];
} else {
// why?
$table['Comment'] .= ' ';
}
$tooltip_truename[$table['Name']] = $table['Name'];
$tooltip_aliasname[$table['Name']] = $table['Comment'];
if (isset($table['Create_time']) && !empty($table['Create_time'])) {
$tooltip_aliasname[$table['Name']] .= ', ' . __('Creation')
. ': '
. PMA_Util::localisedDate(strtotime($table['Create_time']));
}
if (! empty($table['Update_time'])) {
$tooltip_aliasname[$table['Name']] .= ', ' . __('Last update')
. ': '
. PMA_Util::localisedDate(strtotime($table['Update_time']));
}
if (! empty($table['Check_time'])) {
$tooltip_aliasname[$table['Name']] .= ', ' . __('Last check')
. ': '
. PMA_Util::localisedDate(strtotime($table['Check_time']));
}
}
PMA_Util::checkParameters(array('db'));
/**
@ -164,7 +109,7 @@ if (true === $cfg['SkipLockedTables']) {
}
if ($cfg['ShowTooltip']) {
PMA_fillTooltip(
PMA_Util::fillTooltip(
$tooltip_truename, $tooltip_aliasname, $sts_tmp
);
}
@ -250,7 +195,9 @@ if (! isset($sot_ready)) {
if ($cfg['ShowTooltip']) {
foreach ($tables as $each_table) {
PMA_fillTooltip($tooltip_truename, $tooltip_aliasname, $each_table);
PMA_Util::fillTooltip(
$tooltip_truename, $tooltip_aliasname, $each_table
);
}
}
}

View File

@ -923,6 +923,8 @@ class PMA_NavigationTree
if ($title) {
$title = " title='" . htmlentities($title, ENT_QUOTES) . "'";
}
} else {
$title = '';
}
$retval .= "<a$linkClass$title href='$link'>";
$retval .= htmlspecialchars($node->real_name);

View File

@ -4,14 +4,14 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-11-21 15:59+0200\n"
"PO-Revision-Date: 2012-12-13 13:03+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Azerbaijani <http://l10n.cihar.com/projects/phpmyadmin/master/"
"az/>\n"
"Language-Team: Azerbaijani "
"<http://l10n.cihar.com/projects/phpmyadmin/master/az/>\n"
"Language: az\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: az\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.4-dev\n"
@ -9620,7 +9620,7 @@ msgid ""
"... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... istifadeçi cedvellerinden köhnesini sil ve ardından selahiyyetleri "
"... istifadeçi cedvellerinden köhnesini sil ve ardından selahiyyetleri "
"yeniden yükle."
#: libraries/server_privileges.lib.php:1948

View File

@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-11-05 10:15+0200\n"
"PO-Revision-Date: 2012-12-13 13:06+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Belarusian <http://l10n.cihar.com/projects/phpmyadmin/master/"
"be/>\n"
"Language-Team: Belarusian "
"<http://l10n.cihar.com/projects/phpmyadmin/master/be/>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: be\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 1.3-dev\n"
"X-Generator: Weblate 1.4-dev\n"
#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356
#: libraries/DisplayResults.class.php:809
@ -39,7 +39,7 @@ msgid ""
msgstr ""
"Немагчыма абнавіць мэтавае акно браўзэра. Магчыма, вы закрылі бацькоўскае "
"акно або налады бясьпекі вашага браўзэра сканфігураныя на блякаваньне "
"міжваконных ўзаемадзеяньняў"
"міжваконных ўзаемадзеяньняў."
#: browse_foreigners.php:166 libraries/Menu.class.php:263
#: libraries/Menu.class.php:352 libraries/Util.class.php:3264
@ -6940,7 +6940,7 @@ msgid ""
"The increment size for extending the size of an autoextending tablespace "
"when it becomes full."
msgstr ""
" Памер прырашчэньня для пашырэньня памеру прасторы аўтапашыральнай табліцы, "
"Памер прырашчэньня для пашырэньня памеру прасторы аўтапашыральнай табліцы, "
"калі яна запоўніцца."
#: libraries/engines/innodb.lib.php:40
@ -9715,7 +9715,7 @@ msgstr "Дазваляе зьмяняць і выдаляць праграмы,
#: libraries/server_privileges.lib.php:968 server_privileges.php:70
msgid "Allows creating, dropping and renaming user accounts."
msgstr ""
"Дазваляе ствараць, выдаляць і пераймяноўваць уліковыя запісы карыстальнікаў"
"Дазваляе ствараць, выдаляць і пераймяноўваць уліковыя запісы карыстальнікаў."
#: libraries/server_privileges.lib.php:281
#: libraries/server_privileges.lib.php:882 server_privileges.php:76
@ -9918,7 +9918,7 @@ msgid ""
"... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... выдаліць старога з табліцы карыстальнікаў і пасьля перазагрузіць "
"... выдаліць старога з табліцы карыстальнікаў і пасьля перазагрузіць "
"прывілеі."
#: libraries/server_privileges.lib.php:1948

View File

@ -4,14 +4,14 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-11-28 14:21+0200\n"
"PO-Revision-Date: 2012-12-13 13:06+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Belarusian (latin) <http://l10n.cihar.com/projects/phpmyadmin/"
"master/be@latin/>\n"
"Language-Team: Belarusian (latin) "
"<http://l10n.cihar.com/projects/phpmyadmin/master/be@latin/>\n"
"Language: be@latin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: be@latin\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Weblate 1.4-dev\n"
@ -39,7 +39,7 @@ msgid ""
msgstr ""
"Niemahčyma abnavić metavaje akno braŭzera. Mahčyma, vy zakryli baćkoŭskaje "
"akno abo nałady biaśpieki vašaha braŭzera skanfihuranyja na blakavańnie "
"mižvakonnych ŭzajemadziejańniaŭ"
"mižvakonnych ŭzajemadziejańniaŭ."
#: browse_foreigners.php:166 libraries/Menu.class.php:263
#: libraries/Menu.class.php:352 libraries/Util.class.php:3264
@ -6928,7 +6928,7 @@ msgid ""
"The increment size for extending the size of an autoextending tablespace "
"when it becomes full."
msgstr ""
" Pamier pryraščeńnia dla pašyreńnia pamieru prastory aŭtapašyralnaj tablicy, "
"Pamier pryraščeńnia dla pašyreńnia pamieru prastory aŭtapašyralnaj tablicy, "
"kali jana zapoŭnicca."
#: libraries/engines/innodb.lib.php:40
@ -9713,7 +9713,7 @@ msgstr "Dazvalaje źmianiać i vydalać pragramy, jakija zachoŭvajucca."
#: libraries/server_privileges.lib.php:968 server_privileges.php:70
msgid "Allows creating, dropping and renaming user accounts."
msgstr ""
"Dazvalaje stvarać, vydalać i pierajmianoŭvać ulikovyja zapisy karystalnikaŭ"
"Dazvalaje stvarać, vydalać i pierajmianoŭvać ulikovyja zapisy karystalnikaŭ."
#: libraries/server_privileges.lib.php:281
#: libraries/server_privileges.lib.php:882 server_privileges.php:76
@ -9917,7 +9917,7 @@ msgid ""
"... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... vydalić staroha z tablicy karystalnikaŭ i paśla pierazahruzić pryvilei."
"... vydalić staroha z tablicy karystalnikaŭ i paśla pierazahruzić pryvilei."
#: libraries/server_privileges.lib.php:1948
msgid "Change Login Information / Copy User"

View File

@ -4,14 +4,14 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-11-21 15:26+0200\n"
"PO-Revision-Date: 2012-12-13 13:03+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Bengali <http://l10n.cihar.com/projects/phpmyadmin/master/bn/"
">\n"
"Language-Team: Bengali "
"<http://l10n.cihar.com/projects/phpmyadmin/master/bn/>\n"
"Language: bn\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: bn\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.4-dev\n"
@ -9652,8 +9652,8 @@ msgid ""
"... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... ব্যাবহারকারীর টেবিলগুলো থেকে পুরাতনটি মুছে ফেল এবং এরপর সুবিধাসমূহ পুনরায় লোড "
"কর"
"... ব্যাবহারকারীর টেবিলগুলো থেকে পুরাতনটি মুছে ফেল এবং এরপর সুবিধাসমূহ "
"পুনরায় লোড কর"
#: libraries/server_privileges.lib.php:1948
msgid "Change Login Information / Copy User"

View File

@ -4,16 +4,17 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-05-17 15:21+0200\n"
"PO-Revision-Date: 2012-12-13 13:03+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: bosnian <bs@li.org>\n"
"Language-Team: Bosnian "
"<http://l10n.cihar.com/projects/phpmyadmin/master/bs/>\n"
"Language: bs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: bs\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 1.0\n"
"X-Generator: Weblate 1.4-dev\n"
#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356
#: libraries/DisplayResults.class.php:809
@ -9356,7 +9357,7 @@ msgid ""
"required for most administrative operations like setting global variables or "
"killing threads of other users."
msgstr ""
" Dozvoljava povezivanje iako je dostignut maksimalan broj dozvoljenih veza; "
"Dozvoljava povezivanje iako je dostignut maksimalan broj dozvoljenih veza; "
"Neophodno za većinu administrativnih opcija kao što su podešavanje globalnih "
"promenljivih ili prekidanje procesa ostalih korisnika."
@ -9617,7 +9618,7 @@ msgid ""
"... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... obriši starog iz tabele korisnika i zatim ponovo učitaj privilegije."
"... obriši starog iz tabele korisnika i zatim ponovo učitaj privilegije."
#: libraries/server_privileges.lib.php:1948
msgid "Change Login Information / Copy User"

View File

@ -4,14 +4,14 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-12-04 16:09+0200\n"
"Last-Translator: Roger Pueyo Centelles <cihar@rogerpueyo.com>\n"
"Language-Team: Catalan <http://l10n.cihar.com/projects/phpmyadmin/master/ca/"
">\n"
"PO-Revision-Date: 2012-12-13 13:00+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Catalan "
"<http://l10n.cihar.com/projects/phpmyadmin/master/ca/>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.4-dev\n"
@ -6744,7 +6744,7 @@ msgid ""
"The increment size for extending the size of an autoextending tablespace "
"when it becomes full."
msgstr ""
" La quantitat a incrementar per ampliar el tamany d'una taula autoextensible "
"La quantitat a incrementar per ampliar el tamany d'una taula autoextensible "
"quan estigui a punt d'omplir-se."
#: libraries/engines/innodb.lib.php:40
@ -7138,8 +7138,7 @@ msgstr "Binari"
#: libraries/insert_edit.lib.php:651
msgid "Because of its length,<br /> this column might not be editable"
msgstr ""
" A causa de la seva longitud,<br /> aquesta columna no pot ser editable"
msgstr "A causa de la seva longitud,<br /> aquesta columna no pot ser editable"
#: libraries/insert_edit.lib.php:1087
msgid "Binary - do not edit"
@ -8050,9 +8049,7 @@ msgstr ""
#: libraries/plugins/export/ExportSql.class.php:99
msgid "Additional custom header comment (\\n splits lines):"
msgstr ""
"Afegeix comentari personalitzat a la capçalera (\n"
" divideix línies):"
msgstr "Afegeix comentari personalitzat a la capçalera (\\n divideix línies):"
#: libraries/plugins/export/ExportSql.class.php:106
msgid ""
@ -9585,7 +9582,7 @@ msgid ""
"... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... esborra l'antic de les taules d'usuaris i recarrega els permisos "
"... esborra l'antic de les taules d'usuaris i recarrega els permisos "
"després."
#: libraries/server_privileges.lib.php:1948
@ -11614,7 +11611,7 @@ msgid ""
"calculated as Threads_created/Connections. If this value is red you should "
"raise your thread_cache_size."
msgstr ""
" El nombre de fils a la memòria cau de fil. L'index de memòria cau es pot "
"El nombre de fils a la memòria cau de fil. L'index de memòria cau es pot "
"comptar com Threads_created/Connections. Si aquest valor és vermell s'hauria "
"d'augmentar el valor de thread_cache_size."
@ -11629,9 +11626,10 @@ msgid ""
"doesn't give a notable performance improvement if you have a good thread "
"implementation.)"
msgstr ""
" El nombre de fils creats per gestionar connexions. Si Threads_created és "
"El nombre de fils creats per gestionar connexions. Si Threads_created és "
"gran, pots voler augmentar el valor de thread_cache_size. (Normalment això "
"no dóna una millora de rendiment notable si es té una bona aplicació de fil.)"
"no dóna una millora de rendiment notable si es té una bona aplicació de "
"fil.)"
#: server_status.php:1639
#, fuzzy

View File

@ -4,14 +4,13 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-11-22 23:06+0200\n"
"Last-Translator: Aputsiaq Niels Janussen <aj@isit.gl>\n"
"Language-Team: Danish <http://l10n.cihar.com/projects/phpmyadmin/master/da/"
">\n"
"PO-Revision-Date: 2012-12-13 13:00+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Danish <http://l10n.cihar.com/projects/phpmyadmin/master/da/>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: da\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.4-dev\n"
@ -6633,7 +6632,7 @@ msgid ""
"The increment size for extending the size of an autoextending tablespace "
"when it becomes full."
msgstr ""
" Størrelsen på den udvidelse der vil forekomme, når pladsen i en "
"Størrelsen på den udvidelse der vil forekomme, når pladsen i en "
"autoudvidende tabel udvides fordi den løber fuld."
#: libraries/engines/innodb.lib.php:40
@ -7908,9 +7907,7 @@ msgstr ""
#: libraries/plugins/export/ExportSql.class.php:99
msgid "Additional custom header comment (\\n splits lines):"
msgstr ""
"Ekstra kommentarer i headeren (\n"
" deler linjer):"
msgstr "Ekstra kommentarer i headeren (\\n deler linjer):"
#: libraries/plugins/export/ExportSql.class.php:106
msgid ""
@ -9417,7 +9414,7 @@ msgstr "... slet den gamle fra brugertabellerne."
msgid ""
"... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... tilbagekald alle aktive privilegier fra den gamle og slet den "
"... tilbagekald alle aktive privilegier fra den gamle og slet den "
"efterfølgende."
#: libraries/server_privileges.lib.php:1937
@ -9425,7 +9422,7 @@ msgid ""
"... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... slet den gamle fra brugertabellerne og genindlæs privilegierne "
"... slet den gamle fra brugertabellerne og genindlæs privilegierne "
"efterfølgende."
#: libraries/server_privileges.lib.php:1948
@ -11948,10 +11945,10 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
" Hvis du føler, at dette er nødvendigt, brug yderligere sikring - %"
"Hvis du føler, at dette er nødvendigt, brug yderligere sikring - %"
"sværtsautentifikation%s indstillinger og %sbetroet proxy liste%s. IP-baseret "
"beskyttelse er næppe pålidelig, hvis din IP-adresse hører til en udbyder med "
"mange tusinde brugere."
"beskyttelse er næppe pålidelig, hvis din IP-adresse hører til en udbyder "
"med mange tusinde brugere."
#: setup/lib/index.lib.php:316
#, php-format
@ -12638,7 +12635,7 @@ msgstr "'source' fundet i version_comment"
#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131
msgid "The MySQL manual only is accurate for official MySQL binaries."
msgstr " MySQL manualen er kun korrekt for officielle MySQL binære filer."
msgstr "MySQL manualen er kun korrekt for officielle MySQL binære filer."
#: libraries/advisory_rules.txt:125
msgid "Percona documentation is at http://www.percona.com/docs/wiki/"

View File

@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-12-09 22:43+0200\n"
"Last-Translator: Panagiotis Papazoglou <papaz_p@yahoo.com>\n"
"PO-Revision-Date: 2012-12-13 12:58+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Greek <http://l10n.cihar.com/projects/phpmyadmin/master/el/>\n"
"Language: el\n"
"MIME-Version: 1.0\n"
@ -7992,7 +7992,7 @@ msgstr ""
#: libraries/plugins/export/ExportSql.class.php:99
msgid "Additional custom header comment (\\n splits lines):"
msgstr ""
"Προσθήκη προσαρμοσμένου σχολίου στην κεφαλίδα (το \\ n χωρίζει τις γραμμές):"
"Προσθήκη προσαρμοσμένου σχολίου στην κεφαλίδα (το \\n χωρίζει τις γραμμές):"
#: libraries/plugins/export/ExportSql.class.php:106
msgid ""

View File

@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-12-09 15:40+0200\n"
"Last-Translator: Matías Bellone <matiasbellone+weblate@gmail.com>\n"
"PO-Revision-Date: 2012-12-13 12:59+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Spanish "
"<http://l10n.cihar.com/projects/phpmyadmin/master/es/>\n"
"Language: es\n"
@ -8037,9 +8037,7 @@ msgstr ""
#: libraries/plugins/export/ExportSql.class.php:99
msgid "Additional custom header comment (\\n splits lines):"
msgstr ""
"Comentario de cabecera personalizado adicional (\n"
" divide líneas):"
msgstr "Comentario de cabecera personalizado adicional (\\n divide líneas):"
#: libraries/plugins/export/ExportSql.class.php:106
msgid ""
@ -9573,14 +9571,14 @@ msgstr "...borrar el viejo de las tablas de usuario."
msgid ""
"... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ...revocar todos los privilegios activos del viejo y eliminarlo después."
"...revocar todos los privilegios activos del viejo y eliminarlo después."
#: libraries/server_privileges.lib.php:1937
msgid ""
"... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ...borrar el viejo de las tablas de usuario y luego volver a cargar los "
"...borrar el viejo de las tablas de usuario y luego volver a cargar los "
"privilegios."
# Login refers to the user account not the act of logging in

View File

@ -4,15 +4,15 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-07-02 11:20+0200\n"
"Last-Translator: aitzol berasategi <aitzol76@gmail.com>\n"
"Language-Team: basque <eu@li.org>\n"
"PO-Revision-Date: 2012-12-13 13:04+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Basque <http://l10n.cihar.com/projects/phpmyadmin/master/eu/>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: eu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.1\n"
"X-Generator: Weblate 1.4-dev\n"
#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356
#: libraries/DisplayResults.class.php:809
@ -299,7 +299,7 @@ msgstr "%s datu-basea %s-(e)ra berrizendatua izan da"
#: db_operations.php:133
#, php-format
msgid "Database %1$s has been copied to %2$s"
msgstr "%1$s datu-basea %2$s(e)ra kopiatua izan da."
msgstr "%1$s datu-basea %2$s(e)ra kopiatua izan da"
#: db_operations.php:259
#, php-format
@ -9572,14 +9572,14 @@ msgstr "... zaharra ezabatu erabiltzaileen tauletatik."
msgid ""
"... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... zaharraren pribilegio aktibo guztiak errebokatu eta ondoren ezabatu."
"... zaharraren pribilegio aktibo guztiak errebokatu eta ondoren ezabatu."
#: libraries/server_privileges.lib.php:1937
msgid ""
"... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... zaharra ezabatu erabiltzaileen tauletatik eta ondoren berkargatu "
"... zaharra ezabatu erabiltzaileen tauletatik eta ondoren berkargatu "
"pribilegioak."
#: libraries/server_privileges.lib.php:1948

View File

@ -4,14 +4,14 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-11-21 15:57+0200\n"
"PO-Revision-Date: 2012-12-13 13:02+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Persian <http://l10n.cihar.com/projects/phpmyadmin/master/fa/"
">\n"
"Language-Team: Persian "
"<http://l10n.cihar.com/projects/phpmyadmin/master/fa/>\n"
"Language: fa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: fa\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.4-dev\n"
@ -693,7 +693,7 @@ msgid ""
"However on last run no data has been parsed, this usually means phpMyAdmin "
"won't be able to finish this import unless you increase php time limits."
msgstr ""
" در آخرین اجرا هیچ داده ای پردازش نشد،این بدین معنی است که phpMyAdmin نمی "
"در آخرین اجرا هیچ داده ای پردازش نشد،این بدین معنی است که phpMyAdmin نمی "
"تواند ورود داده را تمام کند مگر اینکه شما حداکثر زمان اجرای php را افزایش "
"دهید."
@ -1013,7 +1013,7 @@ msgstr "نمودار ترافیک لحظه ای"
#: js/messages.php:63 server_status.php:860
msgid "Live conn./process chart"
msgstr " نمودار روند./اجرا لحظه ای"
msgstr "نمودار روند./اجرا لحظه ای"
#: js/messages.php:64 server_status.php:885
msgid "Live query chart"
@ -2466,7 +2466,7 @@ msgstr "كلمه(ها) يا مقدار(ها) براي جستجو (wildcard: \"%\
#: libraries/DbSearch.class.php:394
msgid "Find:"
msgstr " یافتن :"
msgstr "یافتن : "
#: libraries/DbSearch.class.php:399 libraries/DbSearch.class.php:403
msgid "Words are separated by a space character (\" \")."
@ -3021,7 +3021,7 @@ msgstr[1] ""
#: libraries/PDF.class.php:114
msgid "Error while creating PDF:"
msgstr " PDF خطا در موقع درست کردن "
msgstr "PDF خطا در موقع درست کردن "
#: libraries/RecentTable.class.php:114
msgid "Could not save recent table"
@ -3062,7 +3062,7 @@ msgstr ""
#: libraries/Table.class.php:327
msgid "unknown table status: "
msgstr " :وضعیت جدول ناشناس"
msgstr ":وضعیت جدول ناشناس"
#: libraries/Table.class.php:726
#, fuzzy, php-format
@ -3076,7 +3076,7 @@ msgstr "جستجو در پايگاه‌داده"
#: libraries/Table.class.php:1162
msgid "Invalid database"
msgstr " پایگاه داده نامعتبر "
msgstr "پایگاه داده نامعتبر "
#: libraries/Table.class.php:1176 tbl_get_field.php:30
msgid "Invalid table name"
@ -4810,7 +4810,7 @@ msgstr "استفاده از کلید واژه های محلی"
#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:266
#: libraries/config/messages.inc.php:267
msgid "Column names in first row"
msgstr " نام ستونها در اولين سطر"
msgstr "نام ستونها در اولين سطر"
#: libraries/config/messages.inc.php:259
#: libraries/plugins/import/ImportOds.class.php:82
@ -6444,7 +6444,7 @@ msgstr "افزایش خودکار گسترش"
msgid ""
"The increment size for extending the size of an autoextending tablespace "
"when it becomes full."
msgstr " را وقتی از آن می شودautoextendingافزایش حجم برای گسترش اندازه جدول ."
msgstr "را وقتی از آن می شودautoextendingافزایش حجم برای گسترش اندازه جدول ."
#: libraries/engines/innodb.lib.php:40
msgid "Buffer pool size"
@ -6464,11 +6464,11 @@ msgstr ""
#: libraries/engines/innodb.lib.php:144 server_status.php:715
msgid "InnoDB Status"
msgstr " InnoDB حالت"
msgstr "InnoDB حالت"
#: libraries/engines/innodb.lib.php:166
msgid "Buffer Pool Usage"
msgstr " مقداراستفاده از حافظه بافر"
msgstr "مقداراستفاده از حافظه بافر"
#: libraries/engines/innodb.lib.php:176
msgid "pages"
@ -12451,7 +12451,7 @@ msgstr ""
#: libraries/advisory_rules.txt:188
msgid "Query cache max size"
msgstr " حداکثر اندازه حافظه پنهان جست جو"
msgstr "حداکثر اندازه حافظه پنهان جست جو"
#: libraries/advisory_rules.txt:191
msgid ""
@ -12735,7 +12735,7 @@ msgstr ""
#: libraries/advisory_rules.txt:294
msgid "key_buffer_size is 0"
msgstr " است key_buffer_size 0"
msgstr "است key_buffer_size 0"
#: libraries/advisory_rules.txt:296
#, fuzzy, php-format

View File

@ -4,14 +4,14 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-12-08 10:55+0200\n"
"Last-Translator: Jere Vainionpää <jermakovi@hotmail.fi>\n"
"Language-Team: Finnish <http://l10n.cihar.com/projects/phpmyadmin/master/fi/"
">\n"
"PO-Revision-Date: 2012-12-13 13:04+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Finnish "
"<http://l10n.cihar.com/projects/phpmyadmin/master/fi/>\n"
"Language: fi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: fi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.4-dev\n"
@ -9593,7 +9593,7 @@ msgstr "... poista vanha käyttäjä käyttäjätauluista."
msgid ""
"... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... peruuta kaikki vanhan käyttäjän aktiiviset käyttöoikeudet ja tuhoa "
"... peruuta kaikki vanhan käyttäjän aktiiviset käyttöoikeudet ja tuhoa "
"käyttäjä sen jälkeen."
#: libraries/server_privileges.lib.php:1937
@ -9601,7 +9601,7 @@ msgid ""
"... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... poista käyttäjätauluista vanha käyttäjä ja päivitä sen jälkeen "
"... poista käyttäjätauluista vanha käyttäjä ja päivitä sen jälkeen "
"käyttöoikeudet."
#: libraries/server_privileges.lib.php:1948

View File

@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-12-09 13:19+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"PO-Revision-Date: 2012-12-13 12:58+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: French <http://l10n.cihar.com/projects/phpmyadmin/master/fr/>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
@ -7972,8 +7972,7 @@ msgstr ""
#: libraries/plugins/export/ExportSql.class.php:99
msgid "Additional custom header comment (\\n splits lines):"
msgstr ""
"Commentaires mis en en-tête (séparer les lignes par «\\» suivi de «n») : "
msgstr "Commentaires mis en en-tête (séparer les lignes par «\\n») : "
#: libraries/plugins/export/ExportSql.class.php:106
msgid ""

View File

@ -4,14 +4,14 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-11-21 15:59+0200\n"
"PO-Revision-Date: 2012-12-13 13:04+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Galician <http://l10n.cihar.com/projects/phpmyadmin/master/gl/"
">\n"
"Language-Team: Galician "
"<http://l10n.cihar.com/projects/phpmyadmin/master/gl/>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: gl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.4-dev\n"
@ -9573,14 +9573,14 @@ msgstr "... eliminar o anterior das táboas de usuarios."
msgid ""
"... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... retirarlle todos os privilexios activos ao anterior e eliminalo despois."
"... retirarlle todos os privilexios activos ao anterior e eliminalo despois."
#: libraries/server_privileges.lib.php:1937
msgid ""
"... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... eliminar o anterior das táboas de usuarios e recargar os privilexios "
"... eliminar o anterior das táboas de usuarios e recargar os privilexios "
"despois."
#: libraries/server_privileges.lib.php:1948

View File

@ -4,13 +4,13 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-11-21 16:09+0200\n"
"PO-Revision-Date: 2012-12-13 13:03+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Hindi <http://l10n.cihar.com/projects/phpmyadmin/master/hi/>\n"
"Language: hi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: hi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.4-dev\n"
@ -366,8 +366,8 @@ msgstr "पिछली जाँच"
#, php-format
msgid "%s table"
msgid_plural "%s tables"
msgstr[0] " %s टेबलें"
msgstr[1] " %s टेबल"
msgstr[0] "%s टेबलें"
msgstr[1] "%s टेबल"
#: db_qbe.php:40
msgid "You have to choose at least one column to display"
@ -6459,7 +6459,7 @@ msgstr "डाटाबेस(s)"
#: libraries/display_export.lib.php:145
msgid "Table(s):"
msgstr " टेबल(s) "
msgstr "टेबल(s) "
#: libraries/display_export.lib.php:154
msgid "Rows:"
@ -10385,8 +10385,8 @@ msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
msgstr ""
" नोट: यहां डाटाबेस के आँकडे Enable करने से webserver और MySQL के बीच में ट्रेफिक बडने की "
"संभावना है। "
"नोट: यहां डाटाबेस के आँकडे Enable करने से webserver और MySQL के बीच में "
"ट्रेफिक बडने की संभावना है। "
#: server_databases.php:345
msgid "No databases"

View File

@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-11-05 10:15+0200\n"
"PO-Revision-Date: 2012-12-13 13:03+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Croatian <http://l10n.cihar.com/projects/phpmyadmin/master/hr/"
">\n"
"Language-Team: Croatian "
"<http://l10n.cihar.com/projects/phpmyadmin/master/hr/>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: hr\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Weblate 1.3-dev\n"
"X-Generator: Weblate 1.4-dev\n"
#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356
#: libraries/DisplayResults.class.php:809
@ -6928,7 +6928,7 @@ msgid ""
"The increment size for extending the size of an autoextending tablespace "
"when it becomes full."
msgstr ""
" Veličina koraka za proširivanje veličine automatski proširujućeg prostora "
"Veličina koraka za proširivanje veličine automatski proširujućeg prostora "
"tablice u slučaju njezinog ispunjavanja."
#: libraries/engines/innodb.lib.php:40
@ -9910,7 +9910,7 @@ msgid ""
"... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... izbriši starog iz korisničkih tablica i potom ponovo učitaj privilegije."
"... izbriši starog iz korisničkih tablica i potom ponovo učitaj privilegije."
#: libraries/server_privileges.lib.php:1948
msgid "Change Login Information / Copy User"

View File

@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-11-08 18:46+0200\n"
"Last-Translator: Rouslan Placella <rouslan@placella.com>\n"
"Language-Team: Italian <http://l10n.cihar.com/projects/phpmyadmin/master/it/"
">\n"
"PO-Revision-Date: 2012-12-13 12:58+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Italian "
"<http://l10n.cihar.com/projects/phpmyadmin/master/it/>\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.3-dev\n"
"X-Generator: Weblate 1.4-dev\n"
#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356
#: libraries/DisplayResults.class.php:809
@ -8028,9 +8028,7 @@ msgstr ""
#: libraries/plugins/export/ExportSql.class.php:99
msgid "Additional custom header comment (\\n splits lines):"
msgstr ""
"Aggiunge un commento personalizzato al header (\n"
" per tornare a capo):"
msgstr "Aggiunge un commento personalizzato al header (\\n per tornare a capo):"
#: libraries/plugins/export/ExportSql.class.php:106
msgid ""

View File

@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-11-05 10:23+0200\n"
"PO-Revision-Date: 2012-12-13 13:02+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Japanese <http://l10n.cihar.com/projects/phpmyadmin/master/ja/"
">\n"
"Language-Team: Japanese "
"<http://l10n.cihar.com/projects/phpmyadmin/master/ja/>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ja\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 1.3-dev\n"
"X-Generator: Weblate 1.4-dev\n"
#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356
#: libraries/DisplayResults.class.php:809
@ -2240,7 +2240,7 @@ msgstr "calendar-year-month"
#: js/messages.php:528
msgctxt "Year suffix"
msgid "none"
msgstr " 年"
msgstr "年"
#: js/messages.php:537
msgid "Hour"

View File

@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-11-05 10:16+0200\n"
"PO-Revision-Date: 2012-12-13 13:04+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Georgian <http://l10n.cihar.com/projects/phpmyadmin/master/ka/"
">\n"
"Language-Team: Georgian "
"<http://l10n.cihar.com/projects/phpmyadmin/master/ka/>\n"
"Language: ka\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ka\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 1.3-dev\n"
"X-Generator: Weblate 1.4-dev\n"
#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356
#: libraries/DisplayResults.class.php:809
@ -109,7 +109,7 @@ msgstr ""
#: db_create.php:74
#, php-format
msgid "Database %1$s has been created."
msgstr "მონაცემთა ბაზა '%1$s' წარმატებით შეიქმნა"
msgstr "მონაცემთა ბაზა '%1$s' წარმატებით შეიქმნა."
#: db_datadict.php:48 libraries/operations.lib.php:32
msgid "Database comment: "
@ -9872,7 +9872,7 @@ msgid ""
"... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... ძველი მომხმარებლის მომხმარებლების სიიდან წაშლა და შემდეგ პრივილეგიების "
"... ძველი მომხმარებლის მომხმარებლების სიიდან წაშლა და შემდეგ პრივილეგიების "
"გადატვირთვა."
#: libraries/server_privileges.lib.php:1948

View File

@ -4,14 +4,14 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-11-21 23:22+0200\n"
"Last-Translator: Kęstutis <forkik@gmail.com>\n"
"Language-Team: Lithuanian <http://l10n.cihar.com/projects/phpmyadmin/master/"
"lt/>\n"
"PO-Revision-Date: 2012-12-13 12:59+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Lithuanian "
"<http://l10n.cihar.com/projects/phpmyadmin/master/lt/>\n"
"Language: lt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: lt\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%"
"100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Weblate 1.4-dev\n"
@ -7952,9 +7952,7 @@ msgstr ""
#: libraries/plugins/export/ExportSql.class.php:99
msgid "Additional custom header comment (\\n splits lines):"
msgstr ""
"Įterpti komentarą į antraštės sritį (eilutėms atskirti naudokite \n"
"):"
msgstr "Įterpti komentarą į antraštės sritį (eilutėms atskirti naudokite \\n):"
#: libraries/plugins/export/ExportSql.class.php:106
msgid ""
@ -9493,14 +9491,14 @@ msgstr "... pašalinti seną vartotoją iš vartotojų lentelės."
msgid ""
"... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... panaikinti visas privilegijas iš seno vartotojo ir poto jį pašalinti."
"... panaikinti visas privilegijas iš seno vartotojo ir poto jį pašalinti."
#: libraries/server_privileges.lib.php:1937
msgid ""
"... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... pašalinti seną vartotoją iš vartotojų lentelės ir poto perkrauti "
"... pašalinti seną vartotoją iš vartotojų lentelės ir poto perkrauti "
"privilegijas"
#: libraries/server_privileges.lib.php:1948

View File

@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-11-05 09:49+0200\n"
"PO-Revision-Date: 2012-12-13 13:04+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Latvian <http://l10n.cihar.com/projects/phpmyadmin/master/lv/"
">\n"
"Language-Team: Latvian "
"<http://l10n.cihar.com/projects/phpmyadmin/master/lv/>\n"
"Language: lv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: lv\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
"2);\n"
"X-Generator: Weblate 1.3-dev\n"
"X-Generator: Weblate 1.4-dev\n"
#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356
#: libraries/DisplayResults.class.php:809
@ -9550,7 +9550,7 @@ msgstr "... dzēst veco lietotāju no lietotāju tabulas."
msgid ""
"... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... atņemt vecajam lietotājam visas aktīvās privilēģijas, un pēc tam dzēst "
"... atņemt vecajam lietotājam visas aktīvās privilēģijas, un pēc tam dzēst "
"viņu."
#: libraries/server_privileges.lib.php:1937
@ -9558,7 +9558,7 @@ msgid ""
"... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... dzēst veco lietotāju no lietotāju tabulas, un pēc tam pārlādēt "
"... dzēst veco lietotāju no lietotāju tabulas, un pēc tam pārlādēt "
"privilēģijas."
#: libraries/server_privileges.lib.php:1948

View File

@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-09-05 10:32+0200\n"
"PO-Revision-Date: 2012-12-13 13:08+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Macedonian <http://l10n.cihar.com/projects/phpmyadmin/master/"
"mk/>\n"
"Language-Team: Macedonian "
"<http://l10n.cihar.com/projects/phpmyadmin/master/mk/>\n"
"Language: mk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: mk\n"
"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n"
"X-Generator: Weblate 1.2\n"
"X-Generator: Weblate 1.4-dev\n"
#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356
#: libraries/DisplayResults.class.php:809
@ -38,7 +38,7 @@ msgid ""
msgstr ""
"Одредишни прозор претраживача није могао да буде ажуриран. Можда сте "
"затворили матични прозор, или ваш претраживач онемогућава ажурирање међу "
"прозорима због сигурносних подешавања"
"прозорима због сигурносних подешавања."
#: browse_foreigners.php:166 libraries/Menu.class.php:263
#: libraries/Menu.class.php:352 libraries/Util.class.php:3264
@ -110,7 +110,7 @@ msgstr ""
#: db_create.php:74
#, php-format
msgid "Database %1$s has been created."
msgstr "Базата на податоци %1$s е креирана"
msgstr "Базата на податоци %1$s е креирана."
#: db_datadict.php:48 libraries/operations.lib.php:32
msgid "Database comment: "
@ -3008,7 +3008,7 @@ msgstr ""
#: libraries/Header.class.php:591
#: libraries/plugins/auth/AuthenticationCookie.class.php:259
msgid "Cookies must be enabled past this point."
msgstr "вашиот веб прелистувач треба да допушти cookies"
msgstr "вашиот веб прелистувач треба да допушти cookies."
#: libraries/Header.class.php:596
#: libraries/plugins/auth/AuthenticationCookie.class.php:163
@ -6815,7 +6815,7 @@ msgid ""
"The increment size for extending the size of an autoextending tablespace "
"when it becomes full."
msgstr ""
" Големина на чекорот на проширување на големината на табелите кои автоматски "
"Големина на чекорот на проширување на големината на табелите кои автоматски "
"се прошируваат кога ќе се наполнат."
#: libraries/engines/innodb.lib.php:40
@ -6908,7 +6908,7 @@ msgid ""
"tables when no MAX_ROWS option is specified."
msgstr ""
"Default големина на покажувачите во бајти, се користи при CREATE TABLE за "
"MyISAM табелите кога не е зададена опцијата MAX_ROWS"
"MyISAM табелите кога не е зададена опцијата MAX_ROWS."
#: libraries/engines/myisam.lib.php:33
msgid "Automatic recovery mode"
@ -6948,7 +6948,7 @@ msgid ""
msgstr ""
"Ако привремената податотека која се користи за брзо креирање на MyISAM "
"индекси биде поголема отколку при користење на кешот за овде зададената "
"вредност, користи го методот на кеширања на клучевите"
"вредност, користи го методот на кеширања на клучевите."
#: libraries/engines/myisam.lib.php:47
msgid "Repair threads"
@ -7620,11 +7620,11 @@ msgstr "Преименувај ја базата на податоци во"
#: libraries/operations.lib.php:107
#, php-format
msgid "Database %s has been dropped."
msgstr "Базата на податоци %s не е прифатена"
msgstr "Базата на податоци %s не е прифатена."
#: libraries/operations.lib.php:119
msgid "Remove database"
msgstr "Избриши ја базата на податоци."
msgstr "Избриши ја базата на податоци"
#: libraries/operations.lib.php:125
#, fuzzy
@ -7703,7 +7703,7 @@ msgstr "Премини на копираната табела"
#: libraries/operations.lib.php:1080
msgid "Table maintenance"
msgstr "Можете да извршите:"
msgstr "Можете да извршите"
#: libraries/operations.lib.php:1118 libraries/structure.lib.php:312
msgid "Check table"
@ -7847,7 +7847,7 @@ msgstr ""
#: libraries/plugins/auth/AuthenticationCookie.class.php:192
msgid "Server:"
msgstr "Сервер"
msgstr "Сервер:"
#: libraries/plugins/auth/AuthenticationCookie.class.php:204
msgid "Username:"
@ -8498,7 +8498,7 @@ msgid ""
"in pixels. The original aspect ratio is preserved."
msgstr ""
"Прикажува намалена слика на која е можно да се кликне; опции: ширина, висина "
"во пиксели (зачуван е оргиналнит однос)"
"во пиксели (зачуван е оргиналнит однос)."
#: libraries/plugins/transformations/abstract/LongToIPv4TransformationsPlugin.class.php:31
msgid ""
@ -9468,9 +9468,9 @@ msgid ""
"required for most administrative operations like setting global variables or "
"killing threads of other users."
msgstr ""
" Дозволува поврзување иако е постигнат макслималниот број на врски; "
"Неопходно за повеќето административни опции како што е подесување на "
"глобални променливи или прекин на процеси наостанатите корисници."
"Дозволува поврзување иако е постигнат макслималниот број на врски; Неопходно "
"за повеќето административни опции како што е подесување на глобални "
"променливи или прекин на процеси наостанатите корисници."
#: libraries/server_privileges.lib.php:227
#: libraries/server_privileges.lib.php:868 server_privileges.php:69
@ -9736,7 +9736,7 @@ msgid ""
"... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... избриши го стариот корисник од табелата на корисници а потоа повторно "
"... избриши го стариот корисник од табелата на корисници а потоа повторно "
"вчитај ги привилегиите."
#: libraries/server_privileges.lib.php:1948
@ -9851,7 +9851,7 @@ msgstr "Запамти SQL упит"
#: libraries/sql_query_form.lib.php:317 sql.php:1294
msgid "Let every user access this bookmark"
msgstr "дади дозвола на секој корисник да пристапува на овој упит."
msgstr "дади дозвола на секој корисник да пристапува на овој упит"
#: libraries/sql_query_form.lib.php:323
msgid "Replace existing bookmark of same name"
@ -9901,7 +9901,7 @@ msgstr ""
"помогне да го откриете проблемот. Ако и понатаму имате проблеми или ако "
"парсерот не успеава иако од командата линија се е во ред, испратете го "
"својот SQL упит со извештајот за грешка и делот од кодот во долната РЕЗ "
"секција до нас за да можеме да провериме за што се работи."
"секција до нас за да можеме да провериме за што се работи:"
#: libraries/sqlparser.lib.php:173
msgid "BEGIN CUT"
@ -12656,7 +12656,7 @@ msgstr "Немате право на пристап овде!"
#: user_password.php:106
msgid "The profile has been updated."
msgstr "Профилот е променет"
msgstr "Профилот е променет."
#: view_create.php:177
msgid "VIEW name"

View File

@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-09-05 10:33+0200\n"
"PO-Revision-Date: 2012-12-13 13:03+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Mongolian <http://l10n.cihar.com/projects/phpmyadmin/master/"
"mn/>\n"
"Language-Team: Mongolian "
"<http://l10n.cihar.com/projects/phpmyadmin/master/mn/>\n"
"Language: mn\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: mn\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.2\n"
"X-Generator: Weblate 1.4-dev\n"
#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356
#: libraries/DisplayResults.class.php:809
@ -9731,7 +9731,7 @@ msgid ""
"... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... хэрэглэгчийн хүснэгтүүдээс нэгийг устгаад дараа нь онцгой эрхийг дахин "
"... хэрэглэгчийн хүснэгтүүдээс нэгийг устгаад дараа нь онцгой эрхийг дахин "
"дууд."
#: libraries/server_privileges.lib.php:1948

View File

@ -4,14 +4,14 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-11-21 15:58+0200\n"
"PO-Revision-Date: 2012-12-13 13:05+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Norwegian Bokmål <http://l10n.cihar.com/projects/phpmyadmin/"
"master/nb/>\n"
"Language-Team: Norwegian Bokmål "
"<http://l10n.cihar.com/projects/phpmyadmin/master/nb/>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: nb\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.4-dev\n"
@ -7082,7 +7082,7 @@ msgstr "Binær"
#: libraries/insert_edit.lib.php:651
msgid "Because of its length,<br /> this column might not be editable"
msgstr ""
" På grunn av sin lengde,<br /> så vil muligens denne kolonnen ikke være "
"På grunn av sin lengde,<br /> så vil muligens denne kolonnen ikke være "
"redigerbar"
#: libraries/insert_edit.lib.php:1087
@ -9601,14 +9601,14 @@ msgstr "... slett den gamle fra brukertabellene."
msgid ""
"... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... tilbakekall alle aktive privilegier fra den gamle og slett den etterpå."
"... tilbakekall alle aktive privilegier fra den gamle og slett den etterpå."
#: libraries/server_privileges.lib.php:1937
msgid ""
"... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... slett den gamle fra brukertabellene og deretter oppfrisk privilegiene."
"... slett den gamle fra brukertabellene og deretter oppfrisk privilegiene."
#: libraries/server_privileges.lib.php:1948
msgid "Change Login Information / Copy User"

View File

@ -4,14 +4,14 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-11-21 15:25+0200\n"
"PO-Revision-Date: 2012-12-13 12:55+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Portuguese <http://l10n.cihar.com/projects/phpmyadmin/master/"
"pt/>\n"
"Language-Team: Portuguese "
"<http://l10n.cihar.com/projects/phpmyadmin/master/pt/>\n"
"Language: pt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pt\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.4-dev\n"
@ -940,7 +940,7 @@ msgstr "Esta operação poderá demorar. Deseja prosseguir?"
#: js/messages.php:40
msgid "Missing value in the form!"
msgstr "Nº de dados insuficiente!\\nPreencha todas as opções!"
msgstr "Nº de dados insuficiente!"
#: js/messages.php:41
msgid "This is not a number!"
@ -981,8 +981,7 @@ msgstr "Indique a palavras-passe!"
#: js/messages.php:54 libraries/server_privileges.lib.php:1313
#: user_password.php:113
msgid "The passwords aren't the same!"
msgstr ""
"As palavras-passe são diferentes!\\nLembre-se de confirmar a palavra-passe!"
msgstr "As palavras-passe são diferentes!"
#: js/messages.php:55 libraries/server_privileges.lib.php:1444
#: libraries/server_privileges.lib.php:1636
@ -9477,15 +9476,14 @@ msgstr "... apagar o antigo das tabelas do utilizador."
#: libraries/server_privileges.lib.php:1936
msgid ""
"... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... revogar todos os privilégios activos do antigo e a seguir apagá-lo."
msgstr "... revogar todos os privilégios activos do antigo e a seguir apagá-lo."
#: libraries/server_privileges.lib.php:1937
msgid ""
"... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... apagar o antigo das tabelas do utilizador e depois recarregue os "
"... apagar o antigo das tabelas do utilizador e depois recarregue os "
"privilégios."
#: libraries/server_privileges.lib.php:1948

View File

@ -4,14 +4,14 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-11-27 04:52+0200\n"
"Last-Translator: Andrey Aires <andrey_tere@hotmail.com>\n"
"Language-Team: Portuguese (Brazil) <http://l10n.cihar.com/projects/"
"phpmyadmin/master/pt_BR/>\n"
"PO-Revision-Date: 2012-12-13 13:44+0200\n"
"Last-Translator: Rogério Munhoz <mdarogerinho@gmail.com>\n"
"Language-Team: Portuguese (Brazil) "
"<http://l10n.cihar.com/projects/phpmyadmin/master/pt_BR/>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pt_BR\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Weblate 1.4-dev\n"
@ -9468,7 +9468,7 @@ msgid ""
"... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... apagar o antigo da tabela de usuários e depois recarregar os "
"... apagar o antigo da tabela de usuários e depois recarregar os "
"privilégios."
#: libraries/server_privileges.lib.php:1948
@ -12600,7 +12600,7 @@ msgid ""
"It is suggested to set {long_query_time} to a lower value, depending on your "
"environment. Usually a value of 1-5 seconds is suggested."
msgstr ""
"Sugere-se para definir {long_query_time} para um valor inferior, dependendo "
"Sugere-se definir {long_query_time} para um valor inferior, dependendo "
"do seu ambiente. Normalmente, um valor de 1-5 segundos é sugerido."
#: libraries/advisory_rules.txt:82
@ -12624,21 +12624,23 @@ msgstr ""
#: libraries/advisory_rules.txt:89
msgid "log_slow_queries is set to 'OFF'"
msgstr "log_slow_queries está definido como 'OFF'"
msgstr "log_slow_queries está definido como 'DESLIGADO'"
#: libraries/advisory_rules.txt:93
msgid "Release Series"
msgstr "Série liberada"
msgstr "Série de Lançamento"
#: libraries/advisory_rules.txt:96
msgid "The MySQL server version less than 5.1."
msgstr ""
msgstr "A versão do servidor MySql é inferior a 5.1"
#: libraries/advisory_rules.txt:97
msgid ""
"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
"even more so."
msgstr ""
"Você deveria atualizar, uma vez que o MySQL 5.1 tem um desempenho melhor e o "
"MySQL 5.5 melhor ainda."
#: libraries/advisory_rules.txt:98 libraries/advisory_rules.txt:105
#: libraries/advisory_rules.txt:112
@ -12653,6 +12655,7 @@ msgstr "Versão Menor"
#: libraries/advisory_rules.txt:103
msgid "Version less than 5.1.30 (the first GA release of 5.1)."
msgstr ""
"Versão inferior a 5.1.30 (a primeira versão de disponibilidade geral do 5.1)"
#: libraries/advisory_rules.txt:104
msgid ""
@ -12663,6 +12666,7 @@ msgstr ""
#: libraries/advisory_rules.txt:110
msgid "Version less than 5.5.8 (the first GA release of 5.5)."
msgstr ""
"Versão inferior a 5.5.8 (a primeira versão de disponibilidade geral do 5.5)."
#: libraries/advisory_rules.txt:111
msgid "You should upgrade, to a stable version of MySQL 5.5"
@ -12676,6 +12680,7 @@ msgstr "Distribuição"
#: libraries/advisory_rules.txt:117
msgid "Version is compiled from source, not a MySQL official binary."
msgstr ""
"Varsão é compilada a partir das fontes, e não é um binário oficial do MySQL."
#: libraries/advisory_rules.txt:118
msgid ""
@ -12683,31 +12688,35 @@ msgid ""
"distribution. The MySQL manual only is accurate for official MySQL binaries, "
"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
msgstr ""
"Se você não compilou a partir do código fonte, você pode estar usando um "
"pacote modificado por uma distribuição. O manual do MySQL só é preciso com "
"relação aos binários oficiais do MySQL, não com relação aos pacotes "
"fornecidos com distribuições (como RedHat, Debian/Ubuntu etc.)."
#: libraries/advisory_rules.txt:119
msgid "'source' found in version_comment"
msgstr ""
msgstr "'source' encontrado em version_coment"
#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131
msgid "The MySQL manual only is accurate for official MySQL binaries."
msgstr ""
msgstr "O manual do MySQL só é preciso para binários oficiais MySQL."
#: libraries/advisory_rules.txt:125
msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
msgstr ""
msgstr "A documentação da Percona está em http://www.percona.com/docs/wiki/"
#: libraries/advisory_rules.txt:126
msgid "'percona' found in version_comment"
msgstr ""
msgstr "'percona' encontrado em version_coment"
#: libraries/advisory_rules.txt:132
msgid "Drizzle documentation is at http://docs.drizzle.org/"
msgstr ""
msgstr "A documentação do Drizzle está em http://docs.drizzle.org/"
#: libraries/advisory_rules.txt:133
#, php-format
msgid "Version string (%s) matches Drizzle versioning scheme"
msgstr ""
msgstr "A string de versão (%s) corresponde ao esquema de versões do Drizzle."
#: libraries/advisory_rules.txt:135
msgid "MySQL Architecture"
@ -12723,6 +12732,10 @@ msgid ""
"so MySQL might not be able to access all of your memory. You might want to "
"consider installing the 64-bit version of MySQL."
msgstr ""
"A quantidade de memória disponível é superior a 3GB (presumindo que o "
"Servidor esteja na máquina local), assim o MySQL pode não ser capaz de "
"acessar toda a memória. Você deve considerar a instalação de umva versão de "
"64 bits do MySQL."
#: libraries/advisory_rules.txt:140
#, php-format
@ -12744,10 +12757,18 @@ msgid ""
"and setting {query_cache_type} to 'ON'. <b>Note:</b> If you are using "
"memcached, ignore this recommendation."
msgstr ""
"O cache de consultas é conhecido por melhorar significativamente o "
"desempenho quando corretamente configurado. Ative-o ajustando "
"{query_cache_size} para um valor em MB com 2 dígitos e ajustando "
"{query_cache_type} para 'Ligado'.\n"
"<b>Observação:</b>Se estiver usando cache em memória (memcache), ignore esta "
"recomendação."
#: libraries/advisory_rules.txt:151
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
"query_cache_size está definido em 0 ou query_cache_type está definido em "
"'DESLIGADO'."
#: libraries/advisory_rules.txt:153
msgid "Query caching method"

View File

@ -4,14 +4,14 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-12-05 00:02+0200\n"
"Last-Translator: Stefan Ionut <ionutz4u92@gmail.com>\n"
"Language-Team: Romanian <http://l10n.cihar.com/projects/phpmyadmin/master/ro/"
">\n"
"PO-Revision-Date: 2012-12-13 13:04+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Romanian "
"<http://l10n.cihar.com/projects/phpmyadmin/master/ro/>\n"
"Language: ro\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ro\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
"20)) ? 1 : 2);;\n"
"X-Generator: Weblate 1.4-dev\n"
@ -9978,7 +9978,7 @@ msgstr "... șterge cel vechi din tabelul de utilizatori."
msgid ""
"... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ...revocă toate privilegiile active de la utilizatorul vechi și șterge-l "
"...revocă toate privilegiile active de la utilizatorul vechi și șterge-l "
"după aceea."
#: libraries/server_privileges.lib.php:1937
@ -9986,7 +9986,7 @@ msgid ""
"... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... șterge cel vechi din tabelul de utilizatori și reîncarcă privilegiile."
"... șterge cel vechi din tabelul de utilizatori și reîncarcă privilegiile."
#: libraries/server_privileges.lib.php:1948
msgid "Change Login Information / Copy User"

View File

@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-11-17 12:51+0200\n"
"Last-Translator: Victor Volkov <hanut@php-myadmin.ru>\n"
"Language-Team: Russian <http://l10n.cihar.com/projects/phpmyadmin/master/ru/"
">\n"
"PO-Revision-Date: 2012-12-13 12:58+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Russian "
"<http://l10n.cihar.com/projects/phpmyadmin/master/ru/>\n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\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%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Weblate 1.3\n"
"X-Generator: Weblate 1.4-dev\n"
#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356
#: libraries/DisplayResults.class.php:809
@ -7970,9 +7970,7 @@ msgstr ""
#: libraries/plugins/export/ExportSql.class.php:99
msgid "Additional custom header comment (\\n splits lines):"
msgstr ""
"Добавить в заголовок собственный комментарий (\n"
" для разделения строк):"
msgstr "Добавить в заголовок собственный комментарий (\\n для разделения строк):"
#: libraries/plugins/export/ExportSql.class.php:106
msgid ""

View File

@ -4,14 +4,14 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-12-04 11:55+0200\n"
"Last-Translator: Genti Ereqi <gereqi@gmail.com>\n"
"Language-Team: Albanian <http://l10n.cihar.com/projects/phpmyadmin/master/sq/"
">\n"
"PO-Revision-Date: 2012-12-13 13:03+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Albanian "
"<http://l10n.cihar.com/projects/phpmyadmin/master/sq/>\n"
"Language: sq\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: sq\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.4-dev\n"
@ -9409,7 +9409,7 @@ msgid ""
"... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... elemino të vjetrin nga tabela e përdoruesve e pastaj rilexo të drejtat."
"... elemino të vjetrin nga tabela e përdoruesve e pastaj rilexo të drejtat."
#: libraries/server_privileges.lib.php:1948
msgid "Change Login Information / Copy User"

View File

@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-09-05 13:53+0200\n"
"Last-Translator: Vojislav Pavić <vpavic@gmail.com>\n"
"Language-Team: Serbian <http://l10n.cihar.com/projects/phpmyadmin/master/sr/"
">\n"
"PO-Revision-Date: 2012-12-13 13:05+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Serbian "
"<http://l10n.cihar.com/projects/phpmyadmin/master/sr/>\n"
"Language: sr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\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%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Weblate 1.2\n"
"X-Generator: Weblate 1.4-dev\n"
#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356
#: libraries/DisplayResults.class.php:809
@ -6908,7 +6908,7 @@ msgid ""
"The increment size for extending the size of an autoextending tablespace "
"when it becomes full."
msgstr ""
" Величина корака проширења величине табела које се аутоматски проширују када "
"Величина корака проширења величине табела које се аутоматски проширују када "
"се напуне."
#: libraries/engines/innodb.lib.php:40
@ -9570,7 +9570,7 @@ msgid ""
"required for most administrative operations like setting global variables or "
"killing threads of other users."
msgstr ""
" Дозвољава повезивање иако је достигнут максималан број дозвољених веза; "
"Дозвољава повезивање иако је достигнут максималан број дозвољених веза; "
"Неопходно за већину административних опција као што су подешавање глобалних "
"променљивих или прекидање процеса осталих корисника."
@ -9828,7 +9828,7 @@ msgid ""
"... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... обриши старог из табеле корисника и затим поново учитај привилегије."
"... обриши старог из табеле корисника и затим поново учитај привилегије."
#: libraries/server_privileges.lib.php:1948
msgid "Change Login Information / Copy User"

View File

@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-11-05 10:25+0200\n"
"PO-Revision-Date: 2012-12-13 13:05+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Serbian (latin) <http://l10n.cihar.com/projects/phpmyadmin/"
"master/sr@latin/>\n"
"Language-Team: Serbian (latin) "
"<http://l10n.cihar.com/projects/phpmyadmin/master/sr@latin/>\n"
"Language: sr@latin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\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%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Weblate 1.3-dev\n"
"X-Generator: Weblate 1.4-dev\n"
#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356
#: libraries/DisplayResults.class.php:809
@ -6519,8 +6519,8 @@ msgid ""
"The increment size for extending the size of an autoextending tablespace "
"when it becomes full."
msgstr ""
" Veličina koraka proširenja veličine tabela koje se automatski proširuju "
"kada se napune."
"Veličina koraka proširenja veličine tabela koje se automatski proširuju kada "
"se napune."
#: libraries/engines/innodb.lib.php:40
msgid "Buffer pool size"
@ -8996,7 +8996,7 @@ msgid ""
"required for most administrative operations like setting global variables or "
"killing threads of other users."
msgstr ""
" Dozvoljava povezivanje iako je dostignut maksimalan broj dozvoljenih veza; "
"Dozvoljava povezivanje iako je dostignut maksimalan broj dozvoljenih veza; "
"Neophodno za većinu administrativnih opcija kao što su podešavanje globalnih "
"promenljivih ili prekidanje procesa ostalih korisnika."
@ -9247,7 +9247,7 @@ msgid ""
"... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... obriši starog iz tabele korisnika i zatim ponovo učitaj privilegije."
"... obriši starog iz tabele korisnika i zatim ponovo učitaj privilegije."
#: libraries/server_privileges.lib.php:1948
msgid "Change Login Information / Copy User"

149
po/sv.po
View File

@ -4,14 +4,14 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-12-03 11:17+0200\n"
"Last-Translator: Anders Jonsson <jonars03@student.umu.se>\n"
"Language-Team: Swedish <http://l10n.cihar.com/projects/phpmyadmin/master/sv/"
">\n"
"PO-Revision-Date: 2012-12-13 12:56+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Swedish "
"<http://l10n.cihar.com/projects/phpmyadmin/master/sv/>\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: sv\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.4-dev\n"
@ -878,7 +878,7 @@ msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
" phpMyAdmin konfigurationen är inte fullständigt konfigurerat, vissa utökade "
"phpMyAdmin konfigurationen är inte fullständigt konfigurerat, vissa utökade "
"funktioner har inaktiverats.. Föra att ta reda på varför klicka%shär%s."
#: index.php:500
@ -2763,7 +2763,7 @@ msgstr "Öppna nytt phpMyAdmin-fönster"
#: libraries/Header.class.php:385
msgid "Click on the bar to scroll to top of page"
msgstr ""
msgstr "Klicka på bommen för att förflytta dig till toppen av sidan"
#: libraries/Header.class.php:591
#: libraries/plugins/auth/AuthenticationCookie.class.php:259
@ -3777,7 +3777,7 @@ msgstr "Du bör uppgradera till %s %s eller senare."
#: libraries/common.inc.php:1039
msgid "Error: Token mismatch"
msgstr ""
msgstr "Fel: Token matchningsfel"
#: libraries/common.inc.php:1083
msgid "GLOBALS overwrite attempt"
@ -4560,16 +4560,14 @@ msgid "Databases display options"
msgstr "Visningsalternativ för databaser"
#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:19
#, fuzzy
#| msgid "Navigation frame"
msgid "Navigation panel"
msgstr "Navigeringsram"
msgstr "Navigationspanel"
#: libraries/config/messages.inc.php:180
#, fuzzy
#| msgid "Customize appearance of the navigation frame"
msgid "Customize appearance of the navigation panel"
msgstr "Anpassa navigeringsramens utseende"
msgstr "Anpassa navigationspanelens utseende"
#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:42
#: setup/frames/index.inc.php:117
@ -4585,10 +4583,9 @@ msgid "Tables display options"
msgstr "Visningsalternativ för tabeller"
#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:20
#, fuzzy
#| msgid "Main frame"
msgid "Main panel"
msgstr "Huvudram"
msgstr "Huvudpanelen"
#: libraries/config/messages.inc.php:186
msgid "Microsoft Office"
@ -4701,16 +4698,14 @@ msgid "Customize import defaults"
msgstr "Anpassa standardvärden för import"
#: libraries/config/messages.inc.php:211
#, fuzzy
#| msgid "Customize navigation frame"
msgid "Customize navigation panel"
msgstr "Anpassa navigeringsram"
msgstr "Anpassa navigeringspanelen"
#: libraries/config/messages.inc.php:212
#, fuzzy
#| msgid "Customize main frame"
msgid "Customize main panel"
msgstr "Anpassa huvudram"
msgstr "Anpassa huvudpanelen"
#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218
#: setup/frames/menu.inc.php:18
@ -5053,20 +5048,18 @@ msgid "Memory limit"
msgstr "Minnesgräns"
#: libraries/config/messages.inc.php:299
#, fuzzy
#| msgid "Show logo in left frame"
msgid "Show logo in navigation panel"
msgstr "Visa logo i vänster ram"
msgstr "Visa logotypen i navigeringspanelen"
#: libraries/config/messages.inc.php:300
msgid "Display logo"
msgstr "Visa logo"
#: libraries/config/messages.inc.php:301
#, fuzzy
#| msgid "URL where logo in the navigation frame will point to"
msgid "URL where logo in the navigation panel will point to"
msgstr "URL där logotyp i navigeringsramen kommer att peka till"
msgstr "URL som navigationspanelens logotyp pekar mot"
#: libraries/config/messages.inc.php:302
msgid "Logo link URL"
@ -5085,10 +5078,9 @@ msgid "Logo link target"
msgstr "Logo-länk mål"
#: libraries/config/messages.inc.php:305
#, fuzzy
#| msgid "Display server choice at the top of the left frame"
msgid "Display server choice at the top of the navigation panel"
msgstr "Visa val av server högst upp i vänstra ramen"
msgstr "Visa val av server högst upp i navigationspanelen"
#: libraries/config/messages.inc.php:306
msgid "Display servers selection"
@ -5099,25 +5091,24 @@ msgid "Target for quick access icon"
msgstr "Mål för snabbåtkomst-ikon"
#: libraries/config/messages.inc.php:308
#, fuzzy
#| msgid "Minimum number of tables to display the table filter box"
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
msgstr "Minsta antal tabeller för att visa tabellen filter box"
msgstr ""
"Definierar minsta antal objekt (tabeller, vyer, rutiner och händelser) för "
"att visa filterboxen."
#: libraries/config/messages.inc.php:309
#, fuzzy
#| msgid "Minimum number of tables to display the table filter box"
msgid "Minimum number of items to display the filter box"
msgstr "Minsta antal tabeller för att visa tabellen filter box"
msgstr "Minsta antal objekt för att visa filterboxen"
#: libraries/config/messages.inc.php:310
msgid "Minimum number of databases to display the database filter box"
msgstr "Minsta antal databaser för att visa databasens filter box"
#: libraries/config/messages.inc.php:311
#, fuzzy
#| msgid ""
#| "Only light version; display databases in a tree (determined by the "
#| "separator defined below)"
@ -5125,12 +5116,12 @@ msgid ""
"Group items in the navigation tree (determined by the separator defined "
"below)"
msgstr ""
"Endast lätt version; visa databaser i ett träd (bestämt av avskiljaren "
"definierad nedan)"
"Grupperar objekt i navigationsträdet (bestäms av avskiljaren definierad "
"nedan)"
#: libraries/config/messages.inc.php:312
msgid "Group items in the tree"
msgstr ""
msgstr "Grupperar objekt i trädet"
#: libraries/config/messages.inc.php:313
msgid "String that separates databases into different tree levels"
@ -5243,8 +5234,8 @@ msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected"
msgstr ""
"Inaktivera standardvarning vilken visas om mcrypt saknas för cookie "
"autentisering"
"Inaktivera standardvarningen som visas när en skillnad mellan MySQL "
"biblioteket och servern är upptäckt"
#: libraries/config/messages.inc.php:337
msgid "Server/library difference warning"
@ -5340,10 +5331,9 @@ msgid "Grid editing: trigger action"
msgstr ""
#: libraries/config/messages.inc.php:361
#, fuzzy
#| msgid "Save all edited cells at once"
msgid "Grid editing: save all edited cells at once"
msgstr "Spara alla redigerade celler omedelbart"
msgstr "Rutnäts-redigering: spara alla redigerade celler omedelbart"
#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
@ -5408,7 +5398,6 @@ msgid "Authentication type"
msgstr "Autentiseringstyp"
#: libraries/config/messages.inc.php:376
#, fuzzy
#| msgid ""
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/"
#| "a] support, suggested: [kbd]pma_bookmark[/kbd]"
@ -5416,15 +5405,15 @@ msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
"Lämna tomt för inget stöd för [a@http://wiki.phpmyadmin.net/pma/bookmark]"
"bokmärken[/a], förslag: [kbd]pma_bookmark[/kbd]"
"Lämna tomt för att stänga av "
"[a@http://wiki.phpmyadmin.net/pma/bookmark]bokmärken[/a], förslag: "
"[kbd]pma_bookmark[/kbd]"
#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "Tabell för bokmärken"
#: libraries/config/messages.inc.php:378
#, fuzzy
#| msgid ""
#| "Leave blank for no column comments/mime types, suggested: [kbd]"
#| "pma_column_info[/kbd]"
@ -5432,8 +5421,8 @@ msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"Lämna tomt för inget stöd för kolumnkommentarer/mime-typer, förslag: [kbd]"
"pma_column_info[/kbd]"
"Lämna tomt för att stänga av kolumnkommentarer/mime-typer, förslag: "
"[kbd]pma_column_info[/kbd]"
#: libraries/config/messages.inc.php:379
msgid "Column information table"
@ -5493,7 +5482,6 @@ msgid "Count tables"
msgstr "Räkna tabeller"
#: libraries/config/messages.inc.php:391
#, fuzzy
#| msgid ""
#| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
#| "kbd]"
@ -5501,8 +5489,8 @@ msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/"
"kbd]"
msgstr ""
"Lämna tomt för inget stöd för Designer, förslag: [kbd]pma_designer_coords[/"
"kbd]"
"Lämna tomt för avstängt Designer stöd, förslag: "
"[kbd]pma_designer_coords[/kbd]"
#: libraries/config/messages.inc.php:392
msgid "Designer table"
@ -5538,7 +5526,6 @@ msgid "Hide databases"
msgstr "Dölj databaser"
#: libraries/config/messages.inc.php:399
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history"
#| "[/kbd]"
@ -5546,8 +5533,8 @@ msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]"
msgstr ""
"Lämna blankt för inget stöd för SQL-frågehistorik, förslag: [kbd]pma_history"
"[/kbd]"
"Lämna blankt för att stänga av SQL-frågehistoriks stöd, förslag: "
"[kbd]pma_history[/kbd]"
#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
@ -5612,13 +5599,13 @@ msgid "Password for config auth"
msgstr "Löseenord för config auth"
#: libraries/config/messages.inc.php:412
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]"
msgstr ""
"Lämna blankt för inget stöd för PDF-schema, förslag: [kbd]pma_pdf_pages[/kbd]"
"Lämna blankt för att stänga av stöd för PDF-schema, förslag: "
"[kbd]pma_pdf_pages[/kbd]"
#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
@ -5647,7 +5634,6 @@ msgid "Server port"
msgstr "Serverport"
#: libraries/config/messages.inc.php:418
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
#| "suggested: [kbd]pma_recent[/kbd]"
@ -5655,15 +5641,14 @@ msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]"
msgstr ""
"Lämna tomt för iatt inte spara nyligen använda användarinställningar "
"tabeller för alla sessioner i databasen, förslag: [kbd]pma_config[/kbd]"
"Lämna tomt för att stänga av \"ihållande\" nyligen använda tabeller över "
"sessioner, förslag: [kbd]pma__recent[/kbd]"
#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr "Nyligen använd tabell"
#: libraries/config/messages.inc.php:420
#, fuzzy
#| msgid ""
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
#| "links[/a] support, suggested: [kbd]pma_relation[/kbd]"
@ -5671,8 +5656,9 @@ msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"Lämna tomt för inget stöd för [a@http://wiki.phpmyadmin.net/pma/relation]"
"relationslänkar[/a], förslag: [kbd]pma_relation[/kbd]"
"Lämna tomt för avstängt stöd för "
"[a@http://wiki.phpmyadmin.net/pma/relation]relationslänkar[/a], förslag: "
"[kbd]pma_relation[/kbd]"
#: libraries/config/messages.inc.php:421
msgid "Relation table"
@ -5719,7 +5705,6 @@ msgid "Use SSL"
msgstr "Använd SSL"
#: libraries/config/messages.inc.php:431
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/"
#| "kbd]"
@ -5727,8 +5712,8 @@ msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]"
msgstr ""
"Lämna tomt för inget stöd för PDF-schema, förslag: [kbd]pma_table_coords[/"
"kbd]"
"Lämna tomt för avstängt stöd för PDF-schema, förslag: "
"[kbd]pma_table_coords[/kbd]"
#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
@ -5743,8 +5728,8 @@ msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]"
msgstr ""
"Tabell för att beskriva fält att visa, lämna tomt för inget stöd; förslag: "
"[kbd]pma_table_info[/kbd]"
"Tabell för att beskriva visnings kolumnerna, lämna tomt för avstängt stöd; "
"förslag: [kbd]pma_table_info[/kbd]"
#: libraries/config/messages.inc.php:434
msgid "Display columns table"
@ -5759,8 +5744,8 @@ msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]"
msgstr ""
"Lämna tomt för iatt inte spara nyligen använda användarinställningstabeller "
"för alla sessioner, förslag: [kbd]pma_config[/kbd]"
"Lämna tomt för att stänga av \"ihållande\" tabellers' UI preferenser som "
"sparas över sessioner, förslag: [kbd]pma_config[/kbd]"
#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
@ -5821,8 +5806,8 @@ msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"Lämna tomt för inget stöd för SQL-frågehistorik, förslag: [kbd]pma_history[/"
"kbd]"
"Lämna tomt för avstängt stöd för SQL-förfrågnings spårning, förslag: "
"[kbd]pma_history[/kbd]"
#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
@ -5841,7 +5826,6 @@ msgid "Automatically create versions"
msgstr "Automatiskt skapa versioner"
#: libraries/config/messages.inc.php:449
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma_userconfig[/kbd]"
@ -5849,7 +5833,7 @@ msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"Lämna tomt för att inga användarinställningar ska lagras i databasen, "
"Lämna tomt för att stänga av lagring av användarpreferenser i databasen, "
"förslag: [kbd]pma_userconfig[/kbd]"
#: libraries/config/messages.inc.php:450
@ -7400,23 +7384,20 @@ msgstr[0] ""
msgstr[1] ""
#: libraries/navigation/NavigationTree.class.php:1025
#, fuzzy
#| msgid "Filter databases by name"
msgid "filter databases by name"
msgstr "Filtrera databaser efter namn"
msgstr "filtrera databaser efter namn"
#: libraries/navigation/NavigationTree.class.php:1026
#: libraries/navigation/NavigationTree.class.php:1052
#, fuzzy
#| msgid "Clear series"
msgid "Clear Fast Filter"
msgstr "Rensa serie"
msgstr "Rensa snabbfilter"
#: libraries/navigation/NavigationTree.class.php:1051
#, fuzzy
#| msgid "Filter tables by name"
msgid "filter items by name"
msgstr "Filtrera tabeller efter namn"
msgstr "filtrera tabeller efter namn"
#. l10n: The word "Node" must not be translated here
#: libraries/navigation/NodeFactory.class.php:40
@ -7435,14 +7416,12 @@ msgid "Columns"
msgstr "Kolumn"
#: libraries/navigation/Nodes/Node_Column_Container.class.php:38
#, fuzzy
#| msgid "New"
msgctxt "Create new column"
msgid "New"
msgstr "Ny"
#: libraries/navigation/Nodes/Node_Event_Container.class.php:36
#, fuzzy
#| msgid "New"
msgctxt "Create new event"
msgid "New"
@ -7455,14 +7434,12 @@ msgid "Functions"
msgstr "Funktioner"
#: libraries/navigation/Nodes/Node_Function_Container.class.php:36
#, fuzzy
#| msgid "New"
msgctxt "Create new function"
msgid "New"
msgstr "Ny"
#: libraries/navigation/Nodes/Node_Index_Container.class.php:38
#, fuzzy
#| msgid "New"
msgctxt "Create new index"
msgid "New"
@ -7476,21 +7453,18 @@ msgstr "Procedurer"
#: libraries/navigation/Nodes/Node_Procedure_Container.class.php:36
#: libraries/rte/rte_footer.lib.php:29
#, fuzzy
#| msgid "New"
msgctxt "Create new procedure"
msgid "New"
msgstr "Ny"
#: libraries/navigation/Nodes/Node_Table_Container.class.php:40
#, fuzzy
#| msgid "New"
msgctxt "Create new table"
msgid "New"
msgstr "Ny"
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:36
#, fuzzy
#| msgid "New"
msgctxt "Create new trigger"
msgid "New"
@ -7502,7 +7476,6 @@ msgid "Views"
msgstr "Vy"
#: libraries/navigation/Nodes/Node_View_Container.class.php:36
#, fuzzy
#| msgid "New"
msgctxt "Create new view"
msgid "New"
@ -7980,9 +7953,7 @@ msgstr ""
#: libraries/plugins/export/ExportSql.class.php:99
msgid "Additional custom header comment (\\n splits lines):"
msgstr ""
"Ytterligare Anpassa sidhuvud kommentar (\n"
" delar rader):"
msgstr "Ytterligare Anpassa sidhuvud kommentar (\\n delar rader):"
#: libraries/plugins/export/ExportSql.class.php:106
msgid ""
@ -9446,7 +9417,6 @@ msgid "User has been added."
msgstr "En användare har skapats."
#: libraries/server_privileges.lib.php:1625
#, fuzzy
#| msgid "New"
msgctxt "Create new user"
msgid "New"
@ -9495,14 +9465,14 @@ msgstr "... ta bort den gamla från användartabellerna."
msgid ""
"... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... upphäv alla aktiva privilegier från dan gamla och ta bort den efteråt."
"... upphäv alla aktiva privilegier från dan gamla och ta bort den efteråt."
#: libraries/server_privileges.lib.php:1937
msgid ""
"... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... ta bort den gamla från användartabellerna och ladda om privilegierna "
"... ta bort den gamla från användartabellerna och ladda om privilegierna "
"efteråt."
#: libraries/server_privileges.lib.php:1948
@ -12121,10 +12091,9 @@ msgid "The columns have been moved successfully."
msgstr "Kolumnerna har flyttats framgångsrikt."
#: tbl_chart.php:41
#, fuzzy
#| msgid "No data found"
msgid "No data to display"
msgstr "Inga data hittades"
msgstr "Ingen data att visa"
#: tbl_chart.php:130
msgctxt "Chart type"
@ -12769,7 +12738,7 @@ msgstr ""
#: libraries/advisory_rules.txt:153
msgid "Query caching method"
msgstr " Frågecache metod"
msgstr "Frågecache metod"
#: libraries/advisory_rules.txt:156
msgid "Suboptimal caching method."

View File

@ -4,14 +4,14 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-11-21 15:21+0200\n"
"PO-Revision-Date: 2012-12-13 13:03+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Ukrainian <http://l10n.cihar.com/projects/phpmyadmin/master/"
"uk/>\n"
"Language-Team: Ukrainian "
"<http://l10n.cihar.com/projects/phpmyadmin/master/uk/>\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: uk\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Weblate 1.4-dev\n"
@ -9426,7 +9426,7 @@ msgstr "... знищити старого з таблиці користувач
msgid ""
"... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... анулювати всі активні права старого користувача, знищивши його після "
"... анулювати всі активні права старого користувача, знищивши його після "
"того."
#: libraries/server_privileges.lib.php:1937
@ -9434,7 +9434,7 @@ msgid ""
"... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... знищити старого з таблиці користувачів та перевантажити права після "
"... знищити старого з таблиці користувачів та перевантажити права після "
"того."
#: libraries/server_privileges.lib.php:1948

View File

@ -4,15 +4,15 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-11-05 10:16+0200\n"
"PO-Revision-Date: 2012-12-13 13:08+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Uzbek <http://l10n.cihar.com/projects/phpmyadmin/master/uz/>\n"
"Language: uz\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: uz\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 1.3-dev\n"
"X-Generator: Weblate 1.4-dev\n"
#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356
#: libraries/DisplayResults.class.php:809
@ -36,7 +36,7 @@ msgid ""
"cross-window updates."
msgstr ""
"Браузернинг нишондаги ойнасини янгилаб бўлмади. Эҳтимол, бош ойна ёпилган "
"ёки браузер хавфсизлик юзасидан ойналараро янгилашни блокировка қилмоқда"
"ёки браузер хавфсизлик юзасидан ойналараро янгилашни блокировка қилмоқда."
#: browse_foreigners.php:166 libraries/Menu.class.php:263
#: libraries/Menu.class.php:352 libraries/Util.class.php:3264
@ -375,7 +375,7 @@ msgstr[1] "Жадваллар сони: \"%s\""
#: db_qbe.php:40
msgid "You have to choose at least one column to display"
msgstr "Сўровни бажариш учун, майдон/майдонлар танланган бўлиши керак."
msgstr "Сўровни бажариш учун, майдон/майдонлар танланган бўлиши керак"
#: db_qbe.php:60
#, fuzzy, php-format
@ -1954,7 +1954,7 @@ msgstr "Максимум бажарилиш вақти"
#: libraries/DisplayResults.class.php:729
#, php-format
msgid "%d is not valid row number."
msgstr "%d сони тўғри қатор рақами эмас!"
msgstr "%d сони тўғри қатор рақами эмас."
#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394
#: libraries/insert_edit.lib.php:1460
@ -3046,15 +3046,15 @@ msgstr ""
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"Юкланаётган файл ҳажми PHP конфигурацион файлида (php.ini) кўрсатилган "
"\"upload_max_filesize\" директиваси қийматидан катта!"
"\"upload_max_filesize\" директиваси қийматидан катта."
#: libraries/File.class.php:282
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr ""
"Юкланаётган файл ҳажми HTML формада кўрсатилган \"MAX_FILE_SIZE\" "
"директиваси қийматидан катта!"
"Юкланаётган файл ҳажми HTML формада кўрсатилган \"MAX_FILE_SIZE\" директиваси "
"қийматидан катта."
#: libraries/File.class.php:285
msgid "The uploaded file was only partially uploaded."
@ -3951,13 +3951,13 @@ msgstr "Муолажалар"
#: libraries/Util.class.php:2651
#, php-format
msgid "Jump to database &quot;%s&quot;."
msgstr "\"%s\" маълумотлар базасига ўтиш"
msgstr "\"%s\" маълумотлар базасига ўтиш."
#: libraries/Util.class.php:2675
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
" \"%s\" параметрининг иши маълум хатоликка олиб келиши мумкин, батафсил "
"\"%s\" параметрининг иши маълум хатоликка олиб келиши мумкин, батафсил "
"маълумот учун қаранг \"%s\""
#: libraries/Util.class.php:2851
@ -4050,7 +4050,7 @@ msgstr "Репликация (захира нусха кўчириш)"
#: libraries/build_html_for_db.lib.php:170
#, php-format
msgid "Check privileges for database &quot;%s&quot;."
msgstr "\"%s\" маълумотлар базасининг привилегияларни текшириш"
msgstr "\"%s\" маълумотлар базасининг привилегияларни текшириш."
#: libraries/build_html_for_db.lib.php:175
msgid "Check Privileges"
@ -4096,7 +4096,7 @@ msgstr "Сервер рақами нотўғри: \"%s\""
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
" %1$s сервери учун нотўғри хост номи кўрсатилган. phpMyAdmin конфигурацион "
"%1$s сервери учун нотўғри хост номи кўрсатилган. phpMyAdmin конфигурацион "
"файлида белгиланган созлашларни тўғирланг."
#: libraries/common.inc.php:843
@ -5376,7 +5376,7 @@ msgid ""
"and will be deleted as soon as you close the browser window. This is "
"recommended for non-trusted environments."
msgstr ""
" cookie-логин усули қанча вақт (секундларда) браузерда сақланиши кераклигини "
"cookie-логин усули қанча вақт (секундларда) браузерда сақланиши кераклигини "
"белгиланг. Асл қиймати 0 бўлиб, унга кўра cookie фақат жорий сессия учун "
"сақланади ва браузер ойнаси ёпилган заҳоти ўчирилади. Бу қиймат ишончсиз "
"муҳитлар учун тавсия этилади."
@ -13293,7 +13293,7 @@ msgstr "Жадвалларни кўрсатиш"
#, php-format
msgid "Error creating foreign key on %1$s (check data types)"
msgstr ""
" %1$s да ташқи калит (FOREIGN KEY) тузишда хатолик (маълумот турини "
"%1$s да ташқи калит (FOREIGN KEY) тузишда хатолик (маълумот турини "
"текширинг)"
#: tbl_relation.php:364

View File

@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2012-12-09 07:12-0500\n"
"PO-Revision-Date: 2012-11-05 10:18+0200\n"
"PO-Revision-Date: 2012-12-13 13:07+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Uzbek (latin) <http://l10n.cihar.com/projects/phpmyadmin/"
"master/uz@latin/>\n"
"Language-Team: Uzbek (latin) "
"<http://l10n.cihar.com/projects/phpmyadmin/master/uz@latin/>\n"
"Language: uz@latin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: uz@latin\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 1.3-dev\n"
"X-Generator: Weblate 1.4-dev\n"
#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356
#: libraries/DisplayResults.class.php:809
@ -3967,7 +3967,7 @@ msgstr "\"%s\" ma`lumotlar bazasiga otish"
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
" \"%s\" parametrining ishi ma`lum xatolikka olib kelishi mumkin, batafsil "
"\"%s\" parametrining ishi ma`lum xatolikka olib kelishi mumkin, batafsil "
"ma`lumot uchun qarang \"%s\""
#: libraries/Util.class.php:2851
@ -4106,7 +4106,7 @@ msgstr "Server raqami notogri: \"%s\""
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
" %1$s serveri uchun notogri xost nomi korsatilgan. phpMyAdmin "
"%1$s serveri uchun notogri xost nomi korsatilgan. phpMyAdmin "
"konfiguratsion faylida belgilangan sozlashlarni togirlang."
#: libraries/common.inc.php:843
@ -5390,7 +5390,7 @@ msgid ""
"and will be deleted as soon as you close the browser window. This is "
"recommended for non-trusted environments."
msgstr ""
" cookie-login usuli qancha vaqt (sekundlarda) brauzerda saqlanishi "
"cookie-login usuli qancha vaqt (sekundlarda) brauzerda saqlanishi "
"kerakligini belgilang. Asl qiymati 0 bolib, unga kora cookie faqat joriy "
"sessiya uchun saqlanadi va brauzer oynasi yopilgan zahoti ochiriladi. Bu "
"qiymat ishonchsiz muhitlar uchun tavsiya etiladi."
@ -13354,7 +13354,7 @@ msgstr "Jadvallarni korsatish"
#, php-format
msgid "Error creating foreign key on %1$s (check data types)"
msgstr ""
" %1$s da tashqi kalit (FOREIGN KEY) tuzishda xatolik (ma`lumot turini "
"%1$s da tashqi kalit (FOREIGN KEY) tuzishda xatolik (ma`lumot turini "
"tekshiring)"
#: tbl_relation.php:364

View File

@ -193,7 +193,11 @@ if (isset($_REQUEST['submit_create_version'])) {
$tracking_set = rtrim($tracking_set, ',');
$versionCreated = PMA_Tracker::createVersion(
$GLOBALS['db'], $GLOBALS['table'], $_REQUEST['version'], $tracking_set
$GLOBALS['db'],
$GLOBALS['table'],
$_REQUEST['version'],
$tracking_set,
PMA_Table::isView($GLOBALS['db'], $GLOBALS['table'])
);
if ($versionCreated) {
$msg = PMA_Message::success(
@ -292,10 +296,11 @@ if (isset($_REQUEST['snapshot'])) {
$_REQUEST['db'], $_REQUEST['table'], $_REQUEST['version']
);
// Get first DROP TABLE and CREATE TABLE statements
// Get first DROP TABLE/VIEW and CREATE TABLE/VIEW statements
$drop_create_statements = $data['ddlog'][0]['statement'];
if (strstr($data['ddlog'][0]['statement'], 'DROP TABLE')) {
if (strstr($data['ddlog'][0]['statement'], 'DROP TABLE')
|| strstr($data['ddlog'][0]['statement'], 'DROP VIEW')) {
$drop_create_statements .= $data['ddlog'][1]['statement'];
}
// Print SQL code