Merge branch 'QA_3_5' of github.com:phpmyadmin/phpmyadmin into QA_3_5
This commit is contained in:
commit
aad601fa3f
@ -19,6 +19,7 @@ phpMyAdmin - ChangeLog
|
||||
- bug #3559925 [privileges] Incorrect updating of the list of users
|
||||
- bug #3561224 [edit] cell edit date field with empty date fills in current date
|
||||
- bug #3559955 [edit] current_date from function drop down fails on update
|
||||
- bug #3562472 add support for Solaris and FreeBSD system load and memory display in server status
|
||||
|
||||
3.5.2.2 (2012-08-12)
|
||||
- [security] Fixed XSS vulnerabilities, see PMASA-2012-4
|
||||
|
||||
@ -183,6 +183,45 @@ $(function() {
|
||||
}
|
||||
});
|
||||
break;
|
||||
|
||||
case 'SunOS':
|
||||
$.extend(presetCharts, {
|
||||
'cpu': {
|
||||
title: PMA_messages['strSystemCPUUsage'],
|
||||
series: [ {
|
||||
label: PMA_messages['strAverageLoad']
|
||||
} ],
|
||||
nodes: [ {
|
||||
dataPoints: [{ type: 'cpu', name: 'loadavg'}]
|
||||
} ],
|
||||
maxYLabel: []
|
||||
},
|
||||
'memory': {
|
||||
title: PMA_messages['strSystemMemory'],
|
||||
series: [
|
||||
{ label: PMA_messages['strUsedMemory'], fill:true, stackSeries: true},
|
||||
{ label: PMA_messages['strFreeMemory'], fill:true, stackSeries: true}
|
||||
],
|
||||
nodes: [
|
||||
{ dataPoints: [{ type: 'memory', name: 'MemUsed' }], valueDivisor: 1024 },
|
||||
{ dataPoints: [{ type: 'memory', name: 'MemFree' }], valueDivisor: 1024 }
|
||||
],
|
||||
maxYLabel: []
|
||||
},
|
||||
'swap': {
|
||||
title: PMA_messages['strSystemSwap'],
|
||||
series: [
|
||||
{ label: PMA_messages['strUsedSwap'], fill:true, stackSeries: true},
|
||||
{ label: PMA_messages['strFreeSwap'], fill:true, stackSeries: true}
|
||||
],
|
||||
nodes: [
|
||||
{ dataPoints: [{ type: 'memory', name: 'SwapUsed' }], valueDivisor: 1024 },
|
||||
{ dataPoints: [{ type: 'memory', name: 'SwapFree' }], valueDivisor: 1024 }
|
||||
],
|
||||
maxYLabel: []
|
||||
}
|
||||
});
|
||||
break;
|
||||
}
|
||||
|
||||
// Default setting for the chart grid
|
||||
|
||||
@ -33,7 +33,7 @@ class Advisor
|
||||
}
|
||||
// Add total memory to variables as well
|
||||
include_once 'libraries/sysinfo.lib.php';
|
||||
$sysinfo = getSysInfo();
|
||||
$sysinfo = PMA_getSysInfo();
|
||||
$memory = $sysinfo->memory();
|
||||
$this->variables['system_memory'] = $memory['MemTotal'];
|
||||
|
||||
|
||||
@ -9,24 +9,43 @@
|
||||
* @package PhpMyAdmin
|
||||
*/
|
||||
|
||||
/**
|
||||
* Wrap the PHP_OS constant
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
function PMA_getSysInfoOs()
|
||||
{
|
||||
$php_os = PHP_OS;
|
||||
|
||||
// look for common UNIX-like systems
|
||||
$unix_like = array('FreeBSD');
|
||||
if (in_array($php_os, $unix_like)) {
|
||||
$php_os = 'Linux';
|
||||
}
|
||||
|
||||
return ucfirst($php_os);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array
|
||||
*/
|
||||
function getSysInfo()
|
||||
function PMA_getSysInfo()
|
||||
{
|
||||
$supported = array('Linux', 'WINNT');
|
||||
$php_os = PMA_getSysInfoOs();
|
||||
$supported = array('Linux', 'WINNT', 'SunOS');
|
||||
|
||||
$sysinfo = array();
|
||||
|
||||
if (in_array(PHP_OS, $supported)) {
|
||||
return eval("return new ".PHP_OS."();");
|
||||
if (in_array($php_os, $supported)) {
|
||||
return eval("return new PMA_sysinfo".$php_os."();");
|
||||
}
|
||||
|
||||
return $sysinfo;
|
||||
return new PMA_Sysinfo_Default;
|
||||
}
|
||||
|
||||
|
||||
class WINNT
|
||||
class PMA_sysinfoWinnt
|
||||
{
|
||||
private $_wmi;
|
||||
|
||||
@ -104,7 +123,7 @@ class WINNT
|
||||
}
|
||||
}
|
||||
|
||||
class Linux
|
||||
class PMA_sysinfoLinux
|
||||
{
|
||||
public $os = 'Linux';
|
||||
|
||||
@ -127,3 +146,51 @@ class Linux
|
||||
return $mem;
|
||||
}
|
||||
}
|
||||
|
||||
class PMA_sysinfoSunos
|
||||
{
|
||||
public $os = 'SunOS';
|
||||
|
||||
private function _kstat($key)
|
||||
{
|
||||
if ($m = shell_exec('kstat -p d '.$key)) {
|
||||
list($key, $value) = preg_split("/\t/", trim($m), 2);
|
||||
return $value;
|
||||
} else {
|
||||
return '';
|
||||
}
|
||||
}
|
||||
|
||||
public function loadavg() {
|
||||
$load1 = $this->_kstat('unix:0:system_misc:avenrun_1min');
|
||||
|
||||
return array('loadavg' => $load1);
|
||||
}
|
||||
|
||||
public function memory() {
|
||||
preg_match_all('/^(MemTotal|MemFree|Cached|Buffers|SwapCached|SwapTotal|SwapFree):\s+(.*)\s*kB/im', file_get_contents('/proc/meminfo'), $matches);
|
||||
|
||||
$pagesize = $this->_kstat('unix:0:seg_cache:slab_size');
|
||||
$mem['MemTotal'] = $this->_kstat('unix:0:system_pages:pagestotal') * $pagesize;
|
||||
$mem['MemUsed'] = $this->_kstat('unix:0:system_pages:pageslocked') * $pagesize;
|
||||
$mem['MemFree'] = $this->_kstat('unix:0:system_pages:pagesfree') * $pagesize;
|
||||
$mem['SwapTotal'] = $this->_kstat('unix:0:vminfo:swap_avail') / 1024;
|
||||
$mem['SwapUsed'] = $this->_kstat('unix:0:vminfo:swap_alloc') / 1024;
|
||||
$mem['SwapFree'] = $this->_kstat('unix:0:vminfo:swap_free') / 1024;
|
||||
|
||||
return $mem;
|
||||
}
|
||||
}
|
||||
|
||||
class PMA_sysinfoDefault
|
||||
{
|
||||
public $os = PHP_OS;
|
||||
|
||||
public function loadavg() {
|
||||
return array('loadavg' => 0);
|
||||
}
|
||||
|
||||
public function memory() {
|
||||
return array();
|
||||
}
|
||||
}
|
||||
|
||||
6
po/ar.po
6
po/ar.po
@ -4,7 +4,7 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-09-03 16:34+0200\n"
|
||||
"PO-Revision-Date: 2012-09-04 16:55+0200\n"
|
||||
"Last-Translator: مترجم حرّ <metehyi@gmail.com>\n"
|
||||
"Language-Team: Arabic <http://l10n.cihar.com/projects/phpmyadmin/3-5/ar/>\n"
|
||||
"Language: ar\n"
|
||||
@ -1150,7 +1150,7 @@ msgstr "إضافة مستخدم"
|
||||
|
||||
#: js/messages.php:60
|
||||
msgid "Reloading Privileges"
|
||||
msgstr ""
|
||||
msgstr "إعادة تحميل الإمتيازات"
|
||||
|
||||
#: js/messages.php:61
|
||||
msgid "Removing Selected Users"
|
||||
@ -1929,7 +1929,7 @@ msgstr "إختر عمودين مختلفين"
|
||||
#: js/messages.php:314
|
||||
#| msgid "SQL result"
|
||||
msgid "Query results"
|
||||
msgstr ""
|
||||
msgstr "نتائج الاستعلام"
|
||||
|
||||
#: js/messages.php:315
|
||||
#| msgid "Table of contents"
|
||||
|
||||
13
po/be.po
13
po/be.po
@ -4,7 +4,7 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-08-28 14:42+0200\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:57+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Belarusian "
|
||||
"<http://l10n.cihar.com/projects/phpmyadmin/3-5/be/>\n"
|
||||
@ -1060,7 +1060,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Дадзеныя для імпартаваньня не атрыманыя. Альбо ніводны файл ня быў "
|
||||
"загружаны, альбо памер файла перавысіў максымальны памер, вызначаны "
|
||||
"канфігурацыяй PHP. Гл. FAQ 1.16."
|
||||
"канфігурацыяй PHP. Гл. [a@./Documentation.html#faq1_16@Documentation]FAQ "
|
||||
"1.16[/a]."
|
||||
|
||||
#: import.php:366
|
||||
msgid ""
|
||||
@ -2631,7 +2632,9 @@ msgstr "Падчас загрузкі файла адбылася невядом
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
msgstr "Памылка перамяшчэньня загружанага файла. Глядзіце разьдзел 1.11 у FAQ"
|
||||
msgstr ""
|
||||
"Памылка перамяшчэньня загружанага файла. Глядзіце разьдзел "
|
||||
"[a@./Documentation.html#faq1_11@Documentation]1.11 у FAQ[/a]"
|
||||
|
||||
#: libraries/File.class.php:508
|
||||
msgid "Error while moving uploaded file."
|
||||
@ -5804,7 +5807,9 @@ msgstr "Трыгеры"
|
||||
msgid ""
|
||||
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
|
||||
"3.11[/a]"
|
||||
msgstr "Значэньне можа быць прыблізным. Гл. FAQ 3.11"
|
||||
msgstr ""
|
||||
"Значэньне можа быць прыблізным. Гл. "
|
||||
"[a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]"
|
||||
|
||||
#: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117
|
||||
#: libraries/dbi/mysqli.dbi.lib.php:189
|
||||
|
||||
@ -4,7 +4,7 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-08-28 14:41+0200\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:38+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Belarusian (latin) "
|
||||
"<http://l10n.cihar.com/projects/phpmyadmin/3-5/be@latin/>\n"
|
||||
@ -1057,7 +1057,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Dadzienyja dla impartavańnia nie atrymanyja. Albo nivodny fajł nia byŭ "
|
||||
"zahružany, albo pamier fajła pieravysiŭ maksymalny pamier, vyznačany "
|
||||
"kanfihuracyjaj PHP. Hł. FAQ 1.16."
|
||||
"kanfihuracyjaj PHP. Hł. [a@./Documentation.html#faq1_16@Documentation]FAQ "
|
||||
"1.16[/a]."
|
||||
|
||||
#: import.php:366
|
||||
msgid ""
|
||||
@ -2644,7 +2645,8 @@ msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
msgstr ""
|
||||
"Pamyłka pieramiaščeńnia zahružanaha fajła. Hladzicie raździeł 1.11 u FAQ"
|
||||
"Pamyłka pieramiaščeńnia zahružanaha fajła. Hladzicie raździeł "
|
||||
"[a@./Documentation.html#faq1_11@Documentation]1.11 u FAQ[/a]"
|
||||
|
||||
#: libraries/File.class.php:508
|
||||
msgid "Error while moving uploaded file."
|
||||
@ -5789,7 +5791,9 @@ msgstr "Tryhiery"
|
||||
msgid ""
|
||||
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
|
||||
"3.11[/a]"
|
||||
msgstr "Značeńnie moža być prybliznym. Hł. FAQ 3.11"
|
||||
msgstr ""
|
||||
"Značeńnie moža być prybliznym. Hł. "
|
||||
"[a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]"
|
||||
|
||||
#: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117
|
||||
#: libraries/dbi/mysqli.dbi.lib.php:189
|
||||
|
||||
14
po/bg.po
14
po/bg.po
@ -4,14 +4,13 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-08-16 08:11+0200\n"
|
||||
"Last-Translator: Стоян Димитров <stoyanster@gmail.com>\n"
|
||||
"Language-Team: Bulgarian <http://l10n.cihar.com/projects/phpmyadmin/3-5/bg/"
|
||||
">\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:50+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Bulgarian <http://l10n.cihar.com/projects/phpmyadmin/3-5/bg/>\n"
|
||||
"Language: bg\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Weblate 1.2\n"
|
||||
|
||||
@ -3715,6 +3714,7 @@ msgid "Force SSL connection"
|
||||
msgstr "Налагане на SSL връзка"
|
||||
|
||||
#: libraries/config/messages.inc.php:152
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is "
|
||||
"the referenced data, [kbd]id[/kbd] is the key value"
|
||||
@ -4353,8 +4353,8 @@ msgid ""
|
||||
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
|
||||
"([kbd]0[/kbd] for no limit)"
|
||||
msgstr ""
|
||||
"Броят байтове, които скрипт може да заеме, напр. [kbd]32М /kbd] ([kbd]0[/"
|
||||
"kbd] за без ограничение)"
|
||||
"Броят байтове, които скрипт може да заеме, напр. [kbd]32М[/kbd] "
|
||||
"([kbd]0[/kbd] за без ограничение)"
|
||||
|
||||
#: libraries/config/messages.inc.php:320
|
||||
msgid "Memory limit"
|
||||
|
||||
24
po/bn.po
24
po/bn.po
@ -4,15 +4,15 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-03-27 16:56+0200\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:30+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: bangla <bn@li.org>\n"
|
||||
"Language-Team: Bengali <http://l10n.cihar.com/projects/phpmyadmin/3-5/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 0.8\n"
|
||||
"X-Generator: Weblate 1.2\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353
|
||||
#: libraries/display_tbl.lib.php:359 server_privileges.php:1679
|
||||
@ -127,7 +127,7 @@ msgstr "%1$s ডাটাবেজ মুছে ফেলা হয়েছে"
|
||||
|
||||
#: db_datadict.php:49 db_operations.php:370
|
||||
msgid "Database comment: "
|
||||
msgstr "ডাটাবেজ মন্তব্যসমূহঃ"
|
||||
msgstr "ডাটাবেজ মন্তব্যসমূহঃ "
|
||||
|
||||
#: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279
|
||||
#: libraries/tbl_properties.inc.php:661 tbl_operations.php:366
|
||||
@ -288,7 +288,7 @@ msgstr "%s ডাটাবেজ মুছে ফেলা হয়েছে"
|
||||
|
||||
#: db_operations.php:455
|
||||
msgid "Drop the database (DROP)"
|
||||
msgstr "ডাটাবেজটি ড্রপ কর (DROP) "
|
||||
msgstr "ডাটাবেজটি ড্রপ কর (DROP)"
|
||||
|
||||
#: db_operations.php:484
|
||||
msgid "Copy database to"
|
||||
@ -991,7 +991,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"No data was received to import. Either no file name was submitted, or the "
|
||||
"file size exceeded the maximum size permitted by your PHP configuration. See "
|
||||
"FAQ 1.16."
|
||||
"[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]."
|
||||
|
||||
#: import.php:366
|
||||
msgid ""
|
||||
@ -2721,7 +2721,7 @@ msgid ""
|
||||
"1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"সম্ভবত আপনি কনফিগারেশন ফাইল তৈরী করেননি। আপনি %1$ssetup script%2$s ব্যাবহার "
|
||||
"করে একটি তৈরী করতে পারেন "
|
||||
"করে একটি তৈরী করতে পারেন"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:111
|
||||
msgid ""
|
||||
@ -5649,7 +5649,9 @@ msgstr ""
|
||||
msgid ""
|
||||
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
|
||||
"3.11[/a]"
|
||||
msgstr "হয়ত আনুমানিক। FAQ ৩.১১ দেখ। "
|
||||
msgstr ""
|
||||
"হয়ত আনুমানিক। [a@./Documentation.html#faq3_11@Documentation]FAQ ৩.১১[/a] "
|
||||
"দেখ।"
|
||||
|
||||
#: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117
|
||||
#: libraries/dbi/mysqli.dbi.lib.php:189
|
||||
@ -9437,9 +9439,7 @@ msgstr ""
|
||||
#: server_privileges.php:537 server_privileges.php:689
|
||||
#: server_privileges.php:1706
|
||||
msgid "Note: MySQL privilege names are expressed in English"
|
||||
msgstr ""
|
||||
"নোটঃ MySQL সুবিধাসমূহের নাম ইংরেজীতে প্রকাশ করা হয় Note: MySQL privilege "
|
||||
"names are expressed in English "
|
||||
msgstr "নোটঃ MySQL সুবিধাসমূহের নাম ইংরেজীতে প্রকাশ করা হয়"
|
||||
|
||||
#: server_privileges.php:614
|
||||
msgid "Administration"
|
||||
|
||||
8
po/ca.po
8
po/ca.po
@ -4,13 +4,13 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-08-02 11:56+0200\n"
|
||||
"Last-Translator: Xavier Navarro <xvnavarro@gmail.com>\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:54+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Catalan <http://l10n.cihar.com/projects/phpmyadmin/3-5/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.2\n"
|
||||
|
||||
@ -4021,7 +4021,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Si voleu utilitzar el servei de SQL Validator, heu de tenir en compte que "
|
||||
"[strong]totes les instruccions SQL s'emmagatzemen de forma anònima amb fins "
|
||||
"estadístics[/ strong]. [br] [em][a http://sqlvalidator.mimer.com @ /]Mimer "
|
||||
"estadístics[/strong]. [br] [em][a http://sqlvalidator.mimer.com @ /]Mimer "
|
||||
"SQL Validator[/a], Copyright 2002 Copyright 2002 Upright Database "
|
||||
"Technology. Tots els drets reservats.[/em]"
|
||||
|
||||
|
||||
20
po/es.po
20
po/es.po
@ -4,8 +4,8 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-08-22 15:15+0200\n"
|
||||
"Last-Translator: Matías Bellone <matiasbellone@gmail.com>\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:50+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Spanish <http://l10n.cihar.com/projects/phpmyadmin/3-5/es/>\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -3328,8 +3328,8 @@ msgid ""
|
||||
"cross-frame scripting attacks"
|
||||
msgstr ""
|
||||
"Habilitar esto permite que una página en un dominio distinto llame a "
|
||||
"phpMyAdmin dentro de un frame, y es un potencial [strong]agujero de seguridad"
|
||||
"[strong] que permite ataques de cross-frame scripting"
|
||||
"phpMyAdmin dentro de un frame, y es un potencial [strong]agujero de "
|
||||
"seguridad[/strong] que permite ataques de cross-frame scripting"
|
||||
|
||||
#: libraries/config/messages.inc.php:22
|
||||
msgid "Allow third party framing"
|
||||
@ -4053,8 +4053,8 @@ msgid ""
|
||||
"strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], "
|
||||
"Copyright 2002 Upright Database Technology. All rights reserved.[/em]"
|
||||
msgstr ""
|
||||
"Si quiere usar el servicio de Validación de SQL, debería saber que [stong]"
|
||||
"todas las sentencias SQL son almacenadas de forma anónima para uso "
|
||||
"Si quiere usar el servicio de Validación de SQL, debería saber que "
|
||||
"[strong]todas las sentencias SQL son almacenadas de forma anónima para uso "
|
||||
"estadístico[/strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL "
|
||||
"Validator[/a], Copyright 2002 Upright Database Technology.Todos los derechos "
|
||||
"reservados.[/em]"
|
||||
@ -5256,10 +5256,10 @@ msgid ""
|
||||
"['LeftFrameTableSeparator'] directive, so only the folder is called like the "
|
||||
"alias, the table name itself stays unchanged"
|
||||
msgstr ""
|
||||
"Definido como [kdb]nested[/kdb], el alias de nombre de tabla es sólo "
|
||||
"utilizado para separar/anidar las tablase según la configuración $cfg"
|
||||
"['LeftFrameTableSeparator'], de forma que sólo la carpeta sea llamada como "
|
||||
"el alias, el nombre de la tabla en sí mismo permanece intacto"
|
||||
"Definido como [kbd]nested[/kbd], el alias de nombre de tabla es sólo "
|
||||
"utilizado para separar/anidar las tablase según la configuración "
|
||||
"$cfg['LeftFrameTableSeparator'], de forma que sólo la carpeta sea llamada "
|
||||
"como el alias, el nombre de la tabla en sí mismo permanece intacto"
|
||||
|
||||
#: libraries/config/messages.inc.php:480
|
||||
msgid "Display table comment instead of its name"
|
||||
|
||||
24
po/fi.po
24
po/fi.po
@ -4,15 +4,15 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-06-24 00:18+0200\n"
|
||||
"Last-Translator: Jukka Penttinen <tikkakalja@hotmail.com>\n"
|
||||
"Language-Team: finnish <fi@li.org>\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:46+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Finnish <http://l10n.cihar.com/projects/phpmyadmin/3-5/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.0\n"
|
||||
"X-Generator: Weblate 1.2\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353
|
||||
#: libraries/display_tbl.lib.php:359 server_privileges.php:1679
|
||||
@ -999,7 +999,8 @@ msgid ""
|
||||
"[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]."
|
||||
msgstr ""
|
||||
"Tuotavia tietoja ei ole. Tiedostonimeä ei joko annettu tai tiedoston koko "
|
||||
"ylitti PHP:n asetusten salliman enimmäiskoon. Katso FAQ 1.16."
|
||||
"ylitti PHP:n asetusten salliman enimmäiskoon. Katso "
|
||||
"[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]."
|
||||
|
||||
#: import.php:366
|
||||
msgid ""
|
||||
@ -2397,7 +2398,9 @@ msgstr "Tuntematon virhe tiedostoa lähetettäessä."
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
msgstr "Virhe lähetettäessä tiedostoa, katso FAQ 1.11"
|
||||
msgstr ""
|
||||
"Virhe lähetettäessä tiedostoa, katso "
|
||||
"[a@./Documentation.html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
|
||||
#: libraries/File.class.php:508
|
||||
msgid "Error while moving uploaded file."
|
||||
@ -4639,7 +4642,8 @@ msgstr "Pakkaa yhteys"
|
||||
|
||||
#: libraries/config/messages.inc.php:380
|
||||
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
|
||||
msgstr "Kuinka palvelimeen yhdistetään; käytä tcp:tä, jos olet epävarma"
|
||||
msgstr ""
|
||||
"Kuinka palvelimeen yhdistetään; käytä [kbd]tcp[/kbd]:tä, jos olet epävarma"
|
||||
|
||||
#: libraries/config/messages.inc.php:381
|
||||
msgid "Connection type"
|
||||
@ -5540,7 +5544,9 @@ msgstr "Herättimet"
|
||||
msgid ""
|
||||
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
|
||||
"3.11[/a]"
|
||||
msgstr "Saattaa olla summittainen. Katso FAQ 3.11"
|
||||
msgstr ""
|
||||
"Saattaa olla summittainen. Katso "
|
||||
"[a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]"
|
||||
|
||||
#: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117
|
||||
#: libraries/dbi/mysqli.dbi.lib.php:189
|
||||
|
||||
12
po/fr.po
12
po/fr.po
@ -4,8 +4,8 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin-docs 3.5.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-08-22 16:10+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:56+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: French <http://l10n.cihar.com/projects/phpmyadmin/3-5/fr/>\n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -4831,10 +4831,10 @@ msgid ""
|
||||
msgstr ""
|
||||
"Vous pouvez utiliser ces caractères passepartout MySQL (% et _), avec un "
|
||||
"caractère d'échappement si vous les employez de manière littérale, par "
|
||||
"exemple «ma\\_base» et non «ma_base». Ainsi vous pouvez trier la liste des "
|
||||
"bases de données en entrant leurs noms et en utilisant [kbd]*[/kbd] en fin "
|
||||
"de liste pour montrer le reste des noms de base de données en ordre "
|
||||
"alphabétique."
|
||||
"exemple [kbd]'ma\\_base'[/kbd] et non [kbd]'ma_base'[/kbd]. Ainsi vous pouvez "
|
||||
"trier la liste des bases de données en entrant leurs noms et en utilisant "
|
||||
"[kbd]*[/kbd] en fin de liste pour montrer le reste des noms de base de "
|
||||
"données en ordre alphabétique."
|
||||
|
||||
#: libraries/config/messages.inc.php:407
|
||||
msgid "Show only listed databases"
|
||||
|
||||
14
po/gl.po
14
po/gl.po
@ -4,15 +4,15 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-07-23 19:18-0000\n"
|
||||
"Last-Translator: Xullo Guerra <xullo123@hotmail.com>\n"
|
||||
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:46+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Galician <http://l10n.cihar.com/projects/phpmyadmin/3-5/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.1\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Weblate 1.2\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353
|
||||
#: libraries/display_tbl.lib.php:359 server_privileges.php:1679
|
||||
@ -4699,7 +4699,7 @@ msgstr "Comprimir a conexión"
|
||||
|
||||
#: libraries/config/messages.inc.php:380
|
||||
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
|
||||
msgstr "Como ligar co servidor; déixeo como tc se non está segura/a"
|
||||
msgstr "Como ligar co servidor; déixeo como [kbd]tcp[/kbd] se non está segura/a"
|
||||
|
||||
#: libraries/config/messages.inc.php:381
|
||||
msgid "Connection type"
|
||||
|
||||
12
po/he.po
12
po/he.po
@ -4,15 +4,15 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-05-17 15:18+0200\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:33+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: hebrew <he@li.org>\n"
|
||||
"Language-Team: Hebrew <http://l10n.cihar.com/projects/phpmyadmin/3-5/he/>\n"
|
||||
"Language: he\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Weblate 1.0\n"
|
||||
"X-Generator: Weblate 1.2\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353
|
||||
#: libraries/display_tbl.lib.php:359 server_privileges.php:1679
|
||||
@ -5625,7 +5625,9 @@ msgstr ""
|
||||
msgid ""
|
||||
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
|
||||
"3.11[/a]"
|
||||
msgstr "יכול להיות הערכה. ראה FAQ 3.11"
|
||||
msgstr ""
|
||||
"יכול להיות הערכה. ראה [a@./Documentation.html#faq3_11@Documentation]FAQ "
|
||||
"3.11[/a]"
|
||||
|
||||
#: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117
|
||||
#: libraries/dbi/mysqli.dbi.lib.php:189
|
||||
|
||||
22
po/hi.po
22
po/hi.po
@ -4,15 +4,15 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-07-19 08:56+0200\n"
|
||||
"Last-Translator: rajnikant sharma <rajtrivedi2001@gmail.com>\n"
|
||||
"Language-Team: hindi <hi@li.org>\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:51+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Hindi <http://l10n.cihar.com/projects/phpmyadmin/3-5/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.1\n"
|
||||
"X-Generator: Weblate 1.2\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353
|
||||
#: libraries/display_tbl.lib.php:359 server_privileges.php:1679
|
||||
@ -1004,9 +1004,10 @@ msgid ""
|
||||
"file size exceeded the maximum size permitted by your PHP configuration. See "
|
||||
"[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]."
|
||||
msgstr ""
|
||||
"कोई डेटा आयात करने के लिए प्राप्त नहीं किया गया. या तो कोई फ़ाइल नाम प्रस्तुत नहीं किया "
|
||||
"गया या फ़ाइल का आकार अधिकतम PHP विन्यास द्वारा अनुमति आकार के पार हो गई है. [a@./"
|
||||
"Documentation.html#faq1_16@Documentation] अकसर किये गए सवाल 1.16 [/ a] देखें."
|
||||
"कोई डेटा आयात करने के लिए प्राप्त नहीं किया गया. या तो कोई फ़ाइल नाम "
|
||||
"प्रस्तुत नहीं किया गया या फ़ाइल का आकार अधिकतम PHP विन्यास द्वारा अनुमति "
|
||||
"आकार के पार हो गई है. [a@./Documentation.html#faq1_16@Documentation] अकसर "
|
||||
"किये गए सवाल 1.16 [/a] देखें."
|
||||
|
||||
#: import.php:366
|
||||
msgid ""
|
||||
@ -2504,8 +2505,9 @@ msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
msgstr ""
|
||||
"अपलोड की गयी फाइल की जगह बदलने में त्रुटि आई है. [a@. \"Documentation.html # "
|
||||
"faq1_1 @ प्रलेखन] अकसर किये गए सवाल 1,11 [/ a] देखें."
|
||||
"अपलोड की गयी फाइल की जगह बदलने में त्रुटि आई है. "
|
||||
"[a@./Documentation.html#faq1_1@Documentation]अकसर किये गए सवाल 1,11[/a] "
|
||||
"देखें"
|
||||
|
||||
#: libraries/File.class.php:508
|
||||
msgid "Error while moving uploaded file."
|
||||
|
||||
19
po/hr.po
19
po/hr.po
@ -4,16 +4,16 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-05-17 15:21+0200\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:52+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: croatian <hr@li.org>\n"
|
||||
"Language-Team: Croatian <http://l10n.cihar.com/projects/phpmyadmin/3-5/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.0\n"
|
||||
"X-Generator: Weblate 1.2\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353
|
||||
#: libraries/display_tbl.lib.php:359 server_privileges.php:1679
|
||||
@ -1058,7 +1058,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Nisu primljeni nikakvi podaci za uvoz. Ili nije dat naziv datoteke ili "
|
||||
"veličina datoteke prelazi najveću dopuštenu veličinu od strane vaše PHP "
|
||||
"konfiguracije. Pogledajte ČPP 1.16."
|
||||
"konfiguracije. Pogledajte [a@./Documentation.html#faq1_16@Documentation]ČPP "
|
||||
"1.16[/a]."
|
||||
|
||||
#: import.php:366
|
||||
msgid ""
|
||||
@ -2629,7 +2630,9 @@ msgstr "Nepoznata pogreška tijekom učitavanja datoteke."
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
msgstr "Pogreška tijekom premještanja učitane datoteke. Pogledajte ČPP 1.11"
|
||||
msgstr ""
|
||||
"Pogreška tijekom premještanja učitane datoteke. Pogledajte "
|
||||
"[a@./Documentation.html#faq1_11@Documentation]ČPP 1.11[/a]"
|
||||
|
||||
#: libraries/File.class.php:508
|
||||
msgid "Error while moving uploaded file."
|
||||
@ -5789,7 +5792,9 @@ msgstr "Okidači"
|
||||
msgid ""
|
||||
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
|
||||
"3.11[/a]"
|
||||
msgstr "Može biti približno. Pogledajte ČPP 3.11"
|
||||
msgstr ""
|
||||
"Može biti približno. Pogledajte "
|
||||
"[a@./Documentation.html#faq3_11@Documentation]ČPP 3.11[/a]"
|
||||
|
||||
#: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117
|
||||
#: libraries/dbi/mysqli.dbi.lib.php:189
|
||||
|
||||
22
po/hu.po
22
po/hu.po
@ -4,15 +4,15 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-07-19 09:42+0200\n"
|
||||
"Last-Translator: Akos Eros <erosakos02@gmail.com>\n"
|
||||
"Language-Team: hungarian <hu@li.org>\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:47+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Hungarian <http://l10n.cihar.com/projects/phpmyadmin/3-5/hu/>\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Weblate 1.1\n"
|
||||
"X-Generator: Weblate 1.2\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353
|
||||
#: libraries/display_tbl.lib.php:359 server_privileges.php:1679
|
||||
@ -4680,7 +4680,8 @@ msgstr "A kapcsolat tömörítése"
|
||||
#: libraries/config/messages.inc.php:380
|
||||
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
|
||||
msgstr ""
|
||||
"A szerverhez csatlakozás módja, hagyja meg a tcp értéket, ha nem biztos benne"
|
||||
"A szerverhez csatlakozás módja, hagyja meg a [kbd]tcp[/kbd] értéket, ha nem "
|
||||
"biztos benne"
|
||||
|
||||
#: libraries/config/messages.inc.php:381
|
||||
msgid "Connection type"
|
||||
@ -4818,10 +4819,11 @@ msgid ""
|
||||
"alphabetical order."
|
||||
msgstr ""
|
||||
"Használhatja a MySQL-karakterhelyettesítőket (% és _), vezérelheti őket, ha "
|
||||
"akarja, a literális példányaik használatához, pl. használja a 'my\\_db' "
|
||||
"alakot, s ne a 'my_db' alakot. Ezt a lehetőséget választva rendezhet "
|
||||
"adatbázislistákat, beírva a nevüket sorrendben és használja a [kbd]*[/kbd]-t "
|
||||
"a végén, hogy a többi abc-sorrendben jelenjen meg."
|
||||
"akarja, a literális példányaik használatához, pl. használja a "
|
||||
"[kbd]'my\\_db'[/kbd] alakot, s ne a [kbd]'my_db'[/kbd] alakot. Ezt a "
|
||||
"lehetőséget választva rendezhet adatbázislistákat, beírva a nevüket "
|
||||
"sorrendben és használja a [kbd]*[/kbd]-t a végén, hogy a többi abc-"
|
||||
"sorrendben jelenjen meg."
|
||||
|
||||
#: libraries/config/messages.inc.php:407
|
||||
msgid "Show only listed databases"
|
||||
|
||||
6
po/id.po
6
po/id.po
@ -4,7 +4,7 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-08-27 11:48+0200\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:36+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Indonesian "
|
||||
"<http://l10n.cihar.com/projects/phpmyadmin/3-5/id/>\n"
|
||||
@ -3323,8 +3323,8 @@ msgid ""
|
||||
"Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
|
||||
"authentication"
|
||||
msgstr ""
|
||||
"Rahasia passphrase digunakan untuk enkripsi cookie dalam otentifikasi [kbd]"
|
||||
"cookie[kbd]"
|
||||
"Rahasia passphrase digunakan untuk enkripsi cookie dalam otentifikasi "
|
||||
"[kbd]cookie[/kbd]"
|
||||
|
||||
#: libraries/config/messages.inc.php:25
|
||||
msgid "Blowfish secret"
|
||||
|
||||
27
po/it.po
27
po/it.po
@ -4,8 +4,8 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-08-31 21:39+0200\n"
|
||||
"Last-Translator: Rouslan Placella <rouslan@placella.com>\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:37+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Italian <http://l10n.cihar.com/projects/phpmyadmin/3-5/it/>\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -3339,7 +3339,7 @@ msgid ""
|
||||
"authentication"
|
||||
msgstr ""
|
||||
"La passphrase segreta utilizzata per crittografare i cookie "
|
||||
"nell'autenticazione [kbd]cookie[/ kbd]"
|
||||
"nell'autenticazione [kbd]cookie[/kbd]"
|
||||
|
||||
#: libraries/config/messages.inc.php:25
|
||||
msgid "Blowfish secret"
|
||||
@ -4046,9 +4046,10 @@ msgid ""
|
||||
msgstr ""
|
||||
"Se si desideri utilizzare il servizio di validazione SQL, dovi essere "
|
||||
"consapevole del fatto che [strong]tutte le istruzioni SQL vengono "
|
||||
"memorizzate in forma anonima per fini statistici[/ strong].[br][em][a@http://"
|
||||
"sqlvalidator.mimer.com/]Mimer SQL Validator[/a], Copyright 2002 Upright "
|
||||
"Database Technology. Tutti i diritti riservati.[/ em]"
|
||||
"memorizzate in forma anonima per fini "
|
||||
"statistici[/strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL "
|
||||
"Validator[/a], Copyright 2002 Upright Database Technology. Tutti i diritti "
|
||||
"riservati.[/em]"
|
||||
|
||||
#: libraries/config/messages.inc.php:224
|
||||
msgid "Startup"
|
||||
@ -4858,9 +4859,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Puoi utilizzare i caratteri jolly di MySQL (% e _), prefissali con una barra "
|
||||
"rovesciata '\\' se vuoi utilizzarli nel loro senso letterale, ad esempio "
|
||||
"[kbd]'my\\_db'[/kbd] e non [kbd]'my_db'[/kbd]. Utilizzando quest'opzione "
|
||||
"puoi ordinare la lista dei database, basta inserire i loro nomi in ordine e "
|
||||
"utilizzare [kbd]*[/ kbd] alla fine per mostrare il resto in ordine "
|
||||
"[kbd]'my\\_db'[/kbd] e non [kbd]'my_db'[/kbd]. Utilizzando quest'opzione puoi "
|
||||
"ordinare la lista dei database, basta inserire i loro nomi in ordine e "
|
||||
"utilizzare [kbd]*[/kbd] alla fine per mostrare il resto in ordine "
|
||||
"alfabetico."
|
||||
|
||||
#: libraries/config/messages.inc.php:407
|
||||
@ -5136,10 +5137,10 @@ msgid ""
|
||||
"authentication mode because the password is hard coded in the configuration "
|
||||
"file; this does not limit the ability to execute the same command directly"
|
||||
msgstr ""
|
||||
"Si prega di notare che l'attivazione di questo non ha effetto con [kbd]config"
|
||||
"[/ kbd] la modalità di autenticazione perché la password è salvata nel file "
|
||||
"di configurazione; questo non limita la capacità di eseguire lo stesso "
|
||||
"comando direttamente"
|
||||
"Si prega di notare che l'attivazione di questo non ha effetto con "
|
||||
"[kbd]config[/kbd] la modalità di autenticazione perché la password è salvata "
|
||||
"nel file di configurazione; questo non limita la capacità di eseguire lo "
|
||||
"stesso comando direttamente"
|
||||
|
||||
#: libraries/config/messages.inc.php:458
|
||||
msgid "Show password change form"
|
||||
|
||||
14
po/ja.po
14
po/ja.po
@ -4,15 +4,15 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-06-04 15:32+0200\n"
|
||||
"Last-Translator: Yuichiro Takahashi <yuichiro@pop07.odn.ne.jp>\n"
|
||||
"Language-Team: japanese <jp@li.org>\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:32+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Japanese <http://l10n.cihar.com/projects/phpmyadmin/3-5/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.0\n"
|
||||
"X-Generator: Weblate 1.2\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353
|
||||
#: libraries/display_tbl.lib.php:359 server_privileges.php:1679
|
||||
@ -5558,7 +5558,9 @@ msgstr "トリガ"
|
||||
msgid ""
|
||||
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
|
||||
"3.11[/a]"
|
||||
msgstr "正確な数字とは限りません。FAQ 3.11 をご覧ください"
|
||||
msgstr ""
|
||||
"正確な数字とは限りません。[a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a] "
|
||||
"をご覧ください"
|
||||
|
||||
#: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117
|
||||
#: libraries/dbi/mysqli.dbi.lib.php:189
|
||||
|
||||
32
po/ko.po
32
po/ko.po
@ -4,15 +4,15 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-07-26 08:31+0200\n"
|
||||
"Last-Translator: Hyun-Sung Yun <bemax38@gmail.com>\n"
|
||||
"Language-Team: korean <ko@li.org>\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:01+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Korean <http://l10n.cihar.com/projects/phpmyadmin/3-5/ko/>\n"
|
||||
"Language: ko\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 1.1\n"
|
||||
"X-Generator: Weblate 1.2\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353
|
||||
#: libraries/display_tbl.lib.php:359 server_privileges.php:1679
|
||||
@ -361,7 +361,7 @@ msgstr "관계 스키마를 수정 또는 내보내기"
|
||||
#: server_privileges.php:1899 server_privileges.php:2168
|
||||
#: server_synchronize.php:436 server_synchronize.php:908 tbl_tracking.php:649
|
||||
msgid "Table"
|
||||
msgstr "테이블 "
|
||||
msgstr "테이블"
|
||||
|
||||
#: db_printview.php:102 libraries/build_html_for_db.lib.php:31
|
||||
#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:65
|
||||
@ -404,7 +404,7 @@ msgstr "마지막 검사"
|
||||
#, php-format
|
||||
msgid "%s table"
|
||||
msgid_plural "%s tables"
|
||||
msgstr[0] "%s개 테이블 "
|
||||
msgstr[0] "%s개 테이블"
|
||||
|
||||
#: db_qbe.php:41
|
||||
msgid "You have to choose at least one column to display"
|
||||
@ -2453,7 +2453,7 @@ msgstr ""
|
||||
#: libraries/server_links.inc.php:43 server_databases.php:104
|
||||
#: server_privileges.php:1836
|
||||
msgid "Databases"
|
||||
msgstr "데이터베이스 "
|
||||
msgstr "데이터베이스"
|
||||
|
||||
#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:356
|
||||
#: libraries/blobstreaming.lib.php:365 libraries/common.lib.php:614
|
||||
@ -2958,7 +2958,7 @@ msgstr "일"
|
||||
#: libraries/common.lib.php:1650
|
||||
#: libraries/transformations/text_plain__dateformat.inc.php:35
|
||||
msgid "%B %d, %Y at %I:%M %p"
|
||||
msgstr "%y-%m-%d %H:%M "
|
||||
msgstr "%y-%m-%d %H:%M"
|
||||
|
||||
#: libraries/common.lib.php:1983
|
||||
#, php-format
|
||||
@ -5504,7 +5504,7 @@ msgstr "새 데이터베이스 만들기"
|
||||
|
||||
#: libraries/display_create_database.lib.php:33
|
||||
msgid "Create"
|
||||
msgstr "만들기 "
|
||||
msgstr "만들기"
|
||||
|
||||
#: libraries/display_create_database.lib.php:43 server_privileges.php:123
|
||||
#: server_privileges.php:1589 server_replication.php:33
|
||||
@ -5570,11 +5570,11 @@ msgstr "데이터베이스 :"
|
||||
|
||||
#: libraries/display_export.lib.php:134
|
||||
msgid "Table(s):"
|
||||
msgstr "테이블 : "
|
||||
msgstr "테이블 :"
|
||||
|
||||
#: libraries/display_export.lib.php:144
|
||||
msgid "Rows:"
|
||||
msgstr "행 : "
|
||||
msgstr "행 :"
|
||||
|
||||
#: libraries/display_export.lib.php:152
|
||||
msgid "Dump some row(s)"
|
||||
@ -5684,7 +5684,7 @@ msgstr "Format"
|
||||
|
||||
#: libraries/display_export.lib.php:333
|
||||
msgid "Format-specific options:"
|
||||
msgstr "형식 특정 옵션 : "
|
||||
msgstr "형식 특정 옵션 :"
|
||||
|
||||
#: libraries/display_export.lib.php:334
|
||||
msgid ""
|
||||
@ -7961,7 +7961,7 @@ msgstr ""
|
||||
|
||||
#: libraries/sql_query_form.lib.php:344
|
||||
msgid "Show this query here again"
|
||||
msgstr "이 질의를 다시 보여줌 "
|
||||
msgstr "이 질의를 다시 보여줌"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:407
|
||||
msgid "View only"
|
||||
@ -9081,7 +9081,7 @@ msgstr "테이블에 관한 권한"
|
||||
#: server_privileges.php:537 server_privileges.php:689
|
||||
#: server_privileges.php:1706
|
||||
msgid "Note: MySQL privilege names are expressed in English"
|
||||
msgstr "주의: MySQL 권한 이름은 영어로 표기되어야 합니다. "
|
||||
msgstr "주의: MySQL 권한 이름은 영어로 표기되어야 합니다."
|
||||
|
||||
#: server_privileges.php:614
|
||||
msgid "Administration"
|
||||
@ -10932,7 +10932,7 @@ msgstr ""
|
||||
|
||||
#: tbl_change.php:821
|
||||
msgid "Binary - do not edit"
|
||||
msgstr "바이너리 - 편집 금지 "
|
||||
msgstr "바이너리 - 편집 금지"
|
||||
|
||||
#: tbl_change.php:871
|
||||
msgid "Upload to BLOB repository"
|
||||
|
||||
11
po/lt.po
11
po/lt.po
@ -4,16 +4,17 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-07-03 16:29+0200\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:36+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: lithuanian <lt@li.org>\n"
|
||||
"Language-Team: Lithuanian "
|
||||
"<http://l10n.cihar.com/projects/phpmyadmin/3-5/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.1\n"
|
||||
"X-Generator: Weblate 1.2\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353
|
||||
#: libraries/display_tbl.lib.php:359 server_privileges.php:1679
|
||||
@ -3341,7 +3342,7 @@ msgid ""
|
||||
"Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
|
||||
"authentication"
|
||||
msgstr ""
|
||||
"Slapta frazė naudojama šifruojant slapukus [kdb]slapukų[/kdb] "
|
||||
"Slapta frazė naudojama šifruojant slapukus [kbd]slapukų[/kbd] "
|
||||
"identifikacijoje"
|
||||
|
||||
#: libraries/config/messages.inc.php:25
|
||||
|
||||
6
po/lv.po
6
po/lv.po
@ -4,7 +4,7 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-08-28 14:41+0200\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:33+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Latvian <http://l10n.cihar.com/projects/phpmyadmin/3-5/lv/>\n"
|
||||
"Language: lv\n"
|
||||
@ -5691,7 +5691,9 @@ msgstr ""
|
||||
msgid ""
|
||||
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
|
||||
"3.11[/a]"
|
||||
msgstr "Var būt aptuvens skaits. Skatīt FAQ 3.11"
|
||||
msgstr ""
|
||||
"Var būt aptuvens skaits. Skatīt "
|
||||
"[a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]"
|
||||
|
||||
#: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117
|
||||
#: libraries/dbi/mysqli.dbi.lib.php:189
|
||||
|
||||
13
po/mk.po
13
po/mk.po
@ -4,15 +4,16 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-05-17 15:21+0200\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:32+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: macedonian_cyrillic <mk@li.org>\n"
|
||||
"Language-Team: Macedonian "
|
||||
"<http://l10n.cihar.com/projects/phpmyadmin/3-5/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.0\n"
|
||||
"X-Generator: Weblate 1.2\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353
|
||||
#: libraries/display_tbl.lib.php:359 server_privileges.php:1679
|
||||
@ -5707,8 +5708,8 @@ msgid ""
|
||||
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
|
||||
"3.11[/a]"
|
||||
msgstr ""
|
||||
"Бројот на записи може да биде приближен. За подетални информации види FAQ "
|
||||
"3.11"
|
||||
"Бројот на записи може да биде приближен. За подетални информации види "
|
||||
"[a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]"
|
||||
|
||||
#: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117
|
||||
#: libraries/dbi/mysqli.dbi.lib.php:189
|
||||
|
||||
6
po/mn.po
6
po/mn.po
@ -4,7 +4,7 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-08-28 14:42+0200\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:33+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Mongolian <http://l10n.cihar.com/projects/phpmyadmin/3-5/mn/>\n"
|
||||
"Language: mn\n"
|
||||
@ -5713,7 +5713,9 @@ msgstr ""
|
||||
msgid ""
|
||||
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
|
||||
"3.11[/a]"
|
||||
msgstr "May be approximate. See FAQ 3.11"
|
||||
msgstr ""
|
||||
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
|
||||
"3.11[/a]"
|
||||
|
||||
#: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117
|
||||
#: libraries/dbi/mysqli.dbi.lib.php:189
|
||||
|
||||
20
po/nb.po
20
po/nb.po
@ -4,15 +4,16 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-07-30 14:59+0200\n"
|
||||
"Last-Translator: Stian Berg <mail.to.stian@gmail.com>\n"
|
||||
"Language-Team: norwegian <no@li.org>\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:53+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Norwegian Bokmål "
|
||||
"<http://l10n.cihar.com/projects/phpmyadmin/3-5/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.1\n"
|
||||
"X-Generator: Weblate 1.2\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353
|
||||
#: libraries/display_tbl.lib.php:359 server_privileges.php:1679
|
||||
@ -2399,7 +2400,8 @@ msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
msgstr ""
|
||||
"Feil oppstod under forsøk på flytting av den opplastede fila, se FAQ 1.11"
|
||||
"Feil oppstod under forsøk på flytting av den opplastede fila, se "
|
||||
"[a@./Documentation.html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
|
||||
#: libraries/File.class.php:508
|
||||
msgid "Error while moving uploaded file."
|
||||
@ -4653,7 +4655,7 @@ msgstr "Komprimer tilkobling"
|
||||
|
||||
#: libraries/config/messages.inc.php:380
|
||||
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
|
||||
msgstr "Hvordan koble til tjener, behold tcp hvis usikker"
|
||||
msgstr "Hvordan koble til tjener, behold [kbd]tcp[/kbd] hvis usikker"
|
||||
|
||||
#: libraries/config/messages.inc.php:381
|
||||
msgid "Connection type"
|
||||
@ -5561,7 +5563,9 @@ msgstr "Triggere"
|
||||
msgid ""
|
||||
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
|
||||
"3.11[/a]"
|
||||
msgstr "Kan være unøyaktig. Se FAQ 3.11"
|
||||
msgstr ""
|
||||
"Kan være unøyaktig. Se [a@./Documentation.html#faq3_11@Documentation]FAQ "
|
||||
"3.11[/a]"
|
||||
|
||||
#: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117
|
||||
#: libraries/dbi/mysqli.dbi.lib.php:189
|
||||
|
||||
15
po/pl.po
15
po/pl.po
@ -4,7 +4,7 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-08-27 10:41+0200\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:58+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Polish <http://l10n.cihar.com/projects/phpmyadmin/3-5/pl/>\n"
|
||||
"Language: pl\n"
|
||||
@ -3360,8 +3360,8 @@ msgid ""
|
||||
"kbd] - allows newlines in columns"
|
||||
msgstr ""
|
||||
"Określa jaki rodzaj pól edycyjnych powinna zostać użyta do kolumn typu CHAR "
|
||||
"i VARCHAR; [kbd]input[/ kbd] - umożliwia ograniczenie długości wejściowych, "
|
||||
"[kbd]textarea[/ kbd] - pozwala nowej linii w kolumnach"
|
||||
"i VARCHAR; [kbd]input[/kbd] - umożliwia ograniczenie długości wejściowych, "
|
||||
"[kbd]textarea[/kbd] - pozwala nowej linii w kolumnach"
|
||||
|
||||
#: libraries/config/messages.inc.php:33
|
||||
msgid "CHAR columns editing"
|
||||
@ -3959,8 +3959,8 @@ msgid ""
|
||||
"storage[/a] in documentation"
|
||||
msgstr ""
|
||||
"Konfiguracja pamięcimagazywnowania konfiguracji phpMyAdmin, aby uzyskać "
|
||||
"dostęp do dodatkowych opcji, patrz [a@Documentation.html # związane Stoły] "
|
||||
"przechowywanie konfiguracji phpMyAdmin [/ a] w dokumentacji"
|
||||
"dostęp do dodatkowych opcji, patrz [a@Documentation.html#linked-"
|
||||
"tables]przechowywanie konfiguracji phpMyAdmin[/a] w dokumentacji"
|
||||
|
||||
#: libraries/config/messages.inc.php:208
|
||||
msgid "Changes tracking"
|
||||
@ -4683,7 +4683,8 @@ msgstr "Kompresja połączenia"
|
||||
#: libraries/config/messages.inc.php:380
|
||||
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
|
||||
msgstr ""
|
||||
"Sposób połączenia z serwerem; w razie niepewności, należy pozostawić tcp"
|
||||
"Sposób połączenia z serwerem; w razie niepewności, należy pozostawić "
|
||||
"[kbd]tcp[/kbd]"
|
||||
|
||||
#: libraries/config/messages.inc.php:381
|
||||
msgid "Connection type"
|
||||
@ -11220,7 +11221,7 @@ msgid ""
|
||||
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
|
||||
"http[/kbd]."
|
||||
msgstr ""
|
||||
"Ustaw [kbd]konfigurację[kbd] typu uwierzytelniania i zawiera nazwę "
|
||||
"Ustaw [kbd]konfigurację[/kbd] typu uwierzytelniania i zawiera nazwę "
|
||||
"użytkownika i hasło automatycznego logowania, która nie jest pożądanym "
|
||||
"rozwiązaniem dla hsotów na żywo. Każdy, kto zna lub odwiedza adres "
|
||||
"phpMyAdmin URL ma bezpośredni dostęp do panelu phpMyAdmin. Ustaw %styp "
|
||||
|
||||
14
po/pt_BR.po
14
po/pt_BR.po
@ -4,8 +4,8 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-09-01 02:03-0300\n"
|
||||
"Last-Translator: Rafael Ferreira <rafael.f.f1@gmail.com>\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:32+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) "
|
||||
"<http://l10n.cihar.com/projects/phpmyadmin/3-5/pt_BR/>\n"
|
||||
"Language: pt_BR\n"
|
||||
@ -5616,7 +5616,9 @@ msgstr "Gatilhos"
|
||||
msgid ""
|
||||
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
|
||||
"3.11[/a]"
|
||||
msgstr "Pode ser aproximado. Veja o FAQ 3.11"
|
||||
msgstr ""
|
||||
"Pode ser aproximado. Veja o "
|
||||
"[a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]"
|
||||
|
||||
#: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117
|
||||
#: libraries/dbi/mysqli.dbi.lib.php:189
|
||||
@ -8297,7 +8299,7 @@ msgstr "Texto completo"
|
||||
#, php-format
|
||||
#| msgid "Add %s field(s)"
|
||||
msgid "Add %s column(s)"
|
||||
msgstr "Adicionar campo(s) %s "
|
||||
msgstr "Adicionar campo(s) %s"
|
||||
|
||||
#: libraries/tbl_properties.inc.php:575 tbl_structure.php:662
|
||||
#| msgid "You have to add at least one field."
|
||||
@ -8879,7 +8881,7 @@ msgstr "Criar uma página e exportar para ela"
|
||||
#: pmd_pdf.php:107
|
||||
#| msgid "User name"
|
||||
msgid "New page name: "
|
||||
msgstr "Nome da nova página"
|
||||
msgstr "Nome da nova página: "
|
||||
|
||||
#: pmd_pdf.php:110
|
||||
msgid "Export/Import to scale"
|
||||
@ -9824,7 +9826,7 @@ msgstr "Assessoria"
|
||||
#: server_status.php:807 server_status.php:833
|
||||
#| msgid "Number of rows:"
|
||||
msgid "Number of data points: "
|
||||
msgstr "Número de pontos de dados:"
|
||||
msgstr "Número de pontos de dados: "
|
||||
|
||||
#: server_status.php:811 server_status.php:837
|
||||
#| msgid "Refresh"
|
||||
|
||||
23
po/ro.po
23
po/ro.po
@ -4,16 +4,16 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-06-30 17:07+0200\n"
|
||||
"Last-Translator: Alex Marin <alex.ukf@gmail.com>\n"
|
||||
"Language-Team: romanian <ro@li.org>\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:49+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Romanian <http://l10n.cihar.com/projects/phpmyadmin/3-5/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.1\n"
|
||||
"X-Generator: Weblate 1.2\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353
|
||||
#: libraries/display_tbl.lib.php:359 server_privileges.php:1679
|
||||
@ -1033,7 +1033,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Nicio informație nu a fost recepționată pentru import. Ori niciun fișier nu "
|
||||
"a fost trimit, ori mărimea fișierului a depășit mărimea maximă permisă de "
|
||||
"configurația PHP-ului dumneavoastră. Vedeți FAQ 1.16."
|
||||
"configurația PHP-ului dumneavoastră. Vedeți "
|
||||
"[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]."
|
||||
|
||||
#: import.php:366
|
||||
msgid ""
|
||||
@ -4066,7 +4067,7 @@ msgid ""
|
||||
"get special values."
|
||||
msgstr ""
|
||||
"Specificaţi textul din bara de titlu a browser-ului. Consultaţi "
|
||||
"[a@Documentation.html # cfg_TitleTable] documentaţia [/ a] pentru siruri de "
|
||||
"[a@Documentation.html#cfg_TitleTable] documentaţia [/a] pentru siruri de "
|
||||
"caractere magice care pot fi utilizate pentru a obţine valori speciale."
|
||||
|
||||
#: libraries/config/messages.inc.php:196
|
||||
@ -4137,8 +4138,8 @@ msgid ""
|
||||
"storage[/a] in documentation"
|
||||
msgstr ""
|
||||
"Configurați depozitarea configurației phpMyAdmin pentru a avea acces la "
|
||||
"caracteristici suplimentare, a se vedea [a@Documentation.html#linked-tables]"
|
||||
"depozitarea configurației phpMyAdmin[/ a] în documentaţie"
|
||||
"caracteristici suplimentare, a se vedea [a@Documentation.html#linked-"
|
||||
"tables]depozitarea configurației phpMyAdmin[/a] în documentaţie"
|
||||
|
||||
#: libraries/config/messages.inc.php:208
|
||||
#, fuzzy
|
||||
@ -5863,7 +5864,9 @@ msgstr "Declanșatori"
|
||||
msgid ""
|
||||
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
|
||||
"3.11[/a]"
|
||||
msgstr "Poate fi aproximativ. Vezi FAQ 3.11"
|
||||
msgstr ""
|
||||
"Poate fi aproximativ. Vezi [a@./Documentation.html#faq3_11@Documentation]FAQ "
|
||||
"3.11[/a]"
|
||||
|
||||
#: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117
|
||||
#: libraries/dbi/mysqli.dbi.lib.php:189
|
||||
|
||||
10
po/sl.po
10
po/sl.po
@ -4,7 +4,7 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-08-27 11:24+0200\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:45+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Slovenian <http://l10n.cihar.com/projects/phpmyadmin/3-5/sl/>\n"
|
||||
"Language: sl\n"
|
||||
@ -4816,10 +4816,10 @@ msgid ""
|
||||
"alphabetical order."
|
||||
msgstr ""
|
||||
"Uporabite lahko nadomestne znake MySQL (% in _); ubežite jih, če jih želite "
|
||||
"uporabiti dobesedno, npr. uporabite 'my\\_db' in ne 'my_db'. Z uporabo te "
|
||||
"možnosti lahko razvrstite seznam zbirk podatkov; samo vnesite njihova imena "
|
||||
"v vrstnem redu in na koncu uporabite [kbd]*[/kbd] za prikaz preostalih v "
|
||||
"abecednem vrstnem redu."
|
||||
"uporabiti dobesedno, npr. uporabite [kbd]'my\\_db'[/kbd] in ne "
|
||||
"[kbd]'my_db'[/kbd]. Z uporabo te možnosti lahko razvrstite seznam zbirk "
|
||||
"podatkov; samo vnesite njihova imena v vrstnem redu in na koncu uporabite "
|
||||
"[kbd]*[/kbd] za prikaz preostalih v abecednem vrstnem redu."
|
||||
|
||||
#: libraries/config/messages.inc.php:407
|
||||
msgid "Show only listed databases"
|
||||
|
||||
12
po/sq.po
12
po/sq.po
@ -4,8 +4,8 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-08-28 14:42+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"PO-Revision-Date: 2012-09-05 04:39+0200\n"
|
||||
"Last-Translator: Agron Selimaj <as9902613@gmail.com>\n"
|
||||
"Language-Team: Albanian <http://l10n.cihar.com/projects/phpmyadmin/3-5/sq/>\n"
|
||||
"Language: sq\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -341,7 +341,7 @@ msgstr "Kalo tek databaza e kopjuar"
|
||||
#: tbl_structure.php:204 tbl_structure.php:876 tbl_tracking.php:259
|
||||
#: tbl_tracking.php:325
|
||||
msgid "Collation"
|
||||
msgstr "Collation"
|
||||
msgstr "Rradhitja"
|
||||
|
||||
#: db_operations.php:561
|
||||
#, fuzzy, php-format
|
||||
@ -1086,7 +1086,7 @@ msgstr "Mbrapa"
|
||||
|
||||
#: index.php:164
|
||||
msgid "phpMyAdmin is more friendly with a <b>frames-capable</b> browser."
|
||||
msgstr "phpMyAdmin funksionon më mirë me shfletues që suportojnë frames"
|
||||
msgstr "phpMyAdmin funksionon më mirë me shfletues që punon me <b>korniza</b>."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:103 sql.php:249
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
@ -3710,7 +3710,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:72 prefs_manage.php:297
|
||||
msgid "Save as file"
|
||||
msgstr "Ruaje me emër..."
|
||||
msgstr "Ruaje skedarin me emër"
|
||||
|
||||
#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:241
|
||||
#, fuzzy
|
||||
@ -8433,7 +8433,7 @@ msgstr ""
|
||||
#: pmd_general.php:623 pmd_general.php:636 pmd_general.php:699
|
||||
#: pmd_general.php:753
|
||||
msgid "Operator"
|
||||
msgstr "Operator"
|
||||
msgstr "Operatori"
|
||||
|
||||
#: libraries/tbl_select.lib.php:103
|
||||
#, fuzzy
|
||||
|
||||
19
po/sr.po
19
po/sr.po
@ -4,7 +4,7 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-09-03 19:46+0200\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/3-5/sr/>\n"
|
||||
"Language: sr\n"
|
||||
@ -475,16 +475,14 @@ msgid "Modify"
|
||||
msgstr "Промени"
|
||||
|
||||
#: db_qbe.php:606
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete Criteria Row"
|
||||
msgid "Add/Delete criteria rows"
|
||||
msgstr "Додај/обриши поље за критеријум"
|
||||
msgstr "Додај/обриши редове за критеријум"
|
||||
|
||||
#: db_qbe.php:618
|
||||
#, fuzzy
|
||||
#| msgid "Add/Delete Field Columns"
|
||||
msgid "Add/Delete columns"
|
||||
msgstr "Додај/обриши колону"
|
||||
msgstr "Додај/обриши колоне"
|
||||
|
||||
#: db_qbe.php:631 db_qbe.php:656
|
||||
msgid "Update Query"
|
||||
@ -1048,7 +1046,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Нису примљени никави подаци за увоз. Или није био наведен назив датотеке, "
|
||||
"или величина датотеке превазилази максималну величину дозвољену у вашој "
|
||||
"конфигурацији PHP-а. Погледајте. See FAQ 1.16."
|
||||
"конфигурацији PHP-а. Погледајте. See "
|
||||
"[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]."
|
||||
|
||||
#: import.php:366
|
||||
msgid ""
|
||||
@ -2613,7 +2612,9 @@ msgstr "Непозната грешка при слању датотеке."
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
msgstr "Грешка у премештању примљене датотеке, погледајте FAQ 1.11"
|
||||
msgstr ""
|
||||
"Грешка у премештању примљене датотеке, погледајте "
|
||||
"[a@./Documentation.html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
|
||||
#: libraries/File.class.php:508
|
||||
msgid "Error while moving uploaded file."
|
||||
@ -5770,7 +5771,9 @@ msgstr "Окидачи"
|
||||
msgid ""
|
||||
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
|
||||
"3.11[/a]"
|
||||
msgstr "Може бити приближно. Видите FAQ 3.11"
|
||||
msgstr ""
|
||||
"Може бити приближно. Видите "
|
||||
"[a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]"
|
||||
|
||||
#: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117
|
||||
#: libraries/dbi/mysqli.dbi.lib.php:189
|
||||
|
||||
946
po/sr@latin.po
946
po/sr@latin.po
File diff suppressed because it is too large
Load Diff
29
po/sv.po
29
po/sv.po
@ -4,8 +4,8 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-09-01 18:25+0200\n"
|
||||
"Last-Translator: ProUser <stefan@inkopsforum.se>\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:55+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Swedish <http://l10n.cihar.com/projects/phpmyadmin/3-5/sv/>\n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -2395,7 +2395,9 @@ msgstr "Okänt fel i filuppladdning."
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
msgstr "Fel vid flytt av uppladdad fil, se FAQ 1.11"
|
||||
msgstr ""
|
||||
"Fel vid flytt av uppladdad fil, se "
|
||||
"[a@./Documentation.html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
|
||||
#: libraries/File.class.php:508
|
||||
msgid "Error while moving uploaded file."
|
||||
@ -3283,8 +3285,8 @@ msgid ""
|
||||
"cross-frame scripting attacks"
|
||||
msgstr ""
|
||||
"Vid aktivering tillåts att en sida som ligger på en annan domän att anropa "
|
||||
"phpMyAdmin i en ram, vilket är en potentiell [strong] säkerhetshål [/ "
|
||||
"strong] och tillåter mellan ramar scripting-angrepp"
|
||||
"phpMyAdmin i en ram, vilket är en potentiell [strong] säkerhetshål[/strong] "
|
||||
"och tillåter mellan ramar scripting-angrepp"
|
||||
|
||||
#: libraries/config/messages.inc.php:22
|
||||
msgid "Allow third party framing"
|
||||
@ -3999,9 +4001,10 @@ msgid ""
|
||||
"Copyright 2002 Upright Database Technology. All rights reserved.[/em]"
|
||||
msgstr ""
|
||||
"Om du vill använda SQL Validator tjänsten bör du vara medveten om att "
|
||||
"[strong]alla SQL-satser lagras anonymt för statistiska ändamål[/ strong].[br]"
|
||||
"[em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], Copyright "
|
||||
"2002 Upright Database Technology. Alla rättigheter reserverade.[/em]"
|
||||
"[strong]alla SQL-satser lagras anonymt för statistiska "
|
||||
"ändamål[/strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL "
|
||||
"Validator[/a], Copyright 2002 Upright Database Technology. Alla rättigheter "
|
||||
"reserverade.[/em]"
|
||||
|
||||
#: libraries/config/messages.inc.php:224
|
||||
msgid "Startup"
|
||||
@ -4655,7 +4658,7 @@ msgstr "Komprimera anslutning"
|
||||
|
||||
#: libraries/config/messages.inc.php:380
|
||||
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
|
||||
msgstr "Hur ansluta till servern, behåll [kbd]TCP[/ kbd] om du är osäker"
|
||||
msgstr "Hur ansluta till servern, behåll [kbd]TCP[/kbd] om du är osäker"
|
||||
|
||||
#: libraries/config/messages.inc.php:381
|
||||
msgid "Connection type"
|
||||
@ -4792,7 +4795,7 @@ msgid ""
|
||||
"alphabetical order."
|
||||
msgstr ""
|
||||
"Du kan använda MySQL jokertecken (% och _), undgå dem om du vill använda "
|
||||
"deras ordagranna betydelse, dvs använda [kbd] 'my\\ _db\"[/ kbd] och inte "
|
||||
"deras ordagranna betydelse, dvs använda [kbd] 'my\\ _db\"[/kbd] och inte "
|
||||
"[kbd]'my_db\"[/kbd]. Med det här alternativet kan du sortera databasens "
|
||||
"lista. Det är bara att skriva sina namn i ordning och använda [kbd]*[/kbd] i "
|
||||
"slutet för att visa resten i alfabetisk ordning."
|
||||
@ -5562,7 +5565,7 @@ msgid ""
|
||||
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
|
||||
"3.11[/a]"
|
||||
msgstr ""
|
||||
"Kan vara ungefärligt. Se [a@./Documentation.html#faq3_11@Documentation)FAQ "
|
||||
"Kan vara ungefärligt. Se [a@./Documentation.html#faq3_11@Documentation]FAQ "
|
||||
"3.11[/a]"
|
||||
|
||||
#: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117
|
||||
@ -8548,7 +8551,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"PHP-parametern "
|
||||
"[a@http://php.net/manual/en/session.configuration.php#ini.session.gc-"
|
||||
"maxlifetime@_blank]session.gc_maxlifetime[/a är lägre än cookie-giltighet "
|
||||
"maxlifetime@_blank]session.gc_maxlifetime[/a] är lägre än cookie-giltighet "
|
||||
"konfigurerad i phpMyAdmin. på grund av detta, kommer din inloggning upphöra "
|
||||
"tidigare än vad som ärkonfigurerat i phpMyAdmin."
|
||||
|
||||
@ -11019,7 +11022,7 @@ msgid ""
|
||||
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
|
||||
"version is %s, released on %s."
|
||||
msgstr ""
|
||||
"Du använder Git version, kör [kbd]git pull[/ kbd] :-) [br] Den senaste "
|
||||
"Du använder Git version, kör [kbd]git pull[/kbd] :-) [br] Den senaste "
|
||||
"stabila versionen är%s, släppt den %s."
|
||||
|
||||
#: setup/lib/index.lib.php:186
|
||||
|
||||
14
po/ta.po
14
po/ta.po
@ -7,7 +7,7 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-08-27 11:32+0200\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:01+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Tamil <http://l10n.cihar.com/projects/phpmyadmin/3-5/ta/>\n"
|
||||
"Language: ta\n"
|
||||
@ -128,7 +128,7 @@ msgstr "%1$s தரவுத்தளம் உருவாக்கப்பட
|
||||
|
||||
#: db_datadict.php:49 db_operations.php:370
|
||||
msgid "Database comment: "
|
||||
msgstr "தரவுத்தள கருத்துரை"
|
||||
msgstr "தரவுத்தள கருத்துரை "
|
||||
|
||||
#: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279
|
||||
#: libraries/tbl_properties.inc.php:661 tbl_operations.php:366
|
||||
@ -2336,12 +2336,12 @@ msgstr "ஒரு வினாடிக்கு"
|
||||
|
||||
#: libraries/Advisor.class.php:329 server_status.php:964
|
||||
msgid "per minute"
|
||||
msgstr "ஒரு நிமிடத்திற்கு "
|
||||
msgstr "ஒரு நிமிடத்திற்கு"
|
||||
|
||||
#: libraries/Advisor.class.php:332 server_status.php:960 server_status.php:996
|
||||
#: server_status.php:1118 server_status.php:1163
|
||||
msgid "per hour"
|
||||
msgstr "ஒரு மணி நேரத்திற்கு "
|
||||
msgstr "ஒரு மணி நேரத்திற்கு"
|
||||
|
||||
#: libraries/Advisor.class.php:335
|
||||
msgid "per day"
|
||||
@ -2914,7 +2914,7 @@ msgstr "SQL வினவல்"
|
||||
#: libraries/rte/rte_triggers.lib.php:91
|
||||
#: libraries/rte/rte_triggers.lib.php:108
|
||||
msgid "MySQL said: "
|
||||
msgstr "MySQL சொன்னது:"
|
||||
msgstr "MySQL சொன்னது: "
|
||||
|
||||
#: libraries/common.lib.php:1130
|
||||
msgid "Failed to connect to SQL validator!"
|
||||
@ -2951,7 +2951,7 @@ msgstr ""
|
||||
|
||||
#: libraries/common.lib.php:1305
|
||||
msgid "Inline edit of this query"
|
||||
msgstr "வினாவிற்கான உன்வரிசை மாற்றப்பகுதி "
|
||||
msgstr "வினாவிற்கான உன்வரிசை மாற்றப்பகுதி"
|
||||
|
||||
#: libraries/common.lib.php:1307
|
||||
msgctxt "Inline edit query"
|
||||
@ -10462,7 +10462,7 @@ msgstr ""
|
||||
|
||||
#: setup/lib/index.lib.php:186
|
||||
msgid "No newer stable version is available"
|
||||
msgstr "புதிய நிலையான பதிப்புகள் ஒன்றும் இல்லை "
|
||||
msgstr "புதிய நிலையான பதிப்புகள் ஒன்றும் இல்லை"
|
||||
|
||||
#: setup/lib/index.lib.php:274
|
||||
#, php-format
|
||||
|
||||
18
po/th.po
18
po/th.po
@ -4,8 +4,8 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-08-27 11:48+0200\n"
|
||||
"Last-Translator: Anusuk Sangubon <jaideejung007@gmail.com>\n"
|
||||
"PO-Revision-Date: 2012-09-05 09:58+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Thai <http://l10n.cihar.com/projects/phpmyadmin/3-5/th/>\n"
|
||||
"Language: th\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -1944,7 +1944,7 @@ msgstr "คุณยังไม่ได้บันทึกเลย์เอ
|
||||
|
||||
#: js/messages.php:344
|
||||
msgid "Add an option for column "
|
||||
msgstr "เพิ่มตัวเลือกสำหรับสดมภ์"
|
||||
msgstr "เพิ่มตัวเลือกสำหรับสดมภ์ "
|
||||
|
||||
#: js/messages.php:347
|
||||
msgid "Press escape to cancel editing"
|
||||
@ -5917,7 +5917,7 @@ msgstr "ในคำค้น"
|
||||
|
||||
#: libraries/display_tbl.lib.php:2364
|
||||
msgid "Showing rows"
|
||||
msgstr "แสดงระเบียนที่ "
|
||||
msgstr "แสดงระเบียนที่"
|
||||
|
||||
#: libraries/display_tbl.lib.php:2374
|
||||
msgid "total"
|
||||
@ -6884,7 +6884,7 @@ msgstr "ชุดตัวอักษร"
|
||||
#: libraries/mysql_charsets.lib.php:212 libraries/mysql_charsets.lib.php:413
|
||||
#: tbl_change.php:572
|
||||
msgid "Binary"
|
||||
msgstr "ข้อมูลไบนารี "
|
||||
msgstr "ข้อมูลไบนารี"
|
||||
|
||||
#: libraries/mysql_charsets.lib.php:224
|
||||
msgid "Bulgarian"
|
||||
@ -8003,7 +8003,7 @@ msgstr ""
|
||||
|
||||
#: libraries/sql_query_form.lib.php:344
|
||||
msgid "Show this query here again"
|
||||
msgstr "แสดงคำค้นนี้อีกที "
|
||||
msgstr "แสดงคำค้นนี้อีกที"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:407
|
||||
msgid "View only"
|
||||
@ -9151,7 +9151,7 @@ msgstr "สิทธิเจาะจงเฉพาะตาราง"
|
||||
#: server_privileges.php:537 server_privileges.php:689
|
||||
#: server_privileges.php:1706
|
||||
msgid "Note: MySQL privilege names are expressed in English"
|
||||
msgstr "โปรดทราบ: ชื่อของสิทธิใน MySQL จะแสดงเป็นภาษาอังกฤษ "
|
||||
msgstr "โปรดทราบ: ชื่อของสิทธิใน MySQL จะแสดงเป็นภาษาอังกฤษ"
|
||||
|
||||
#: server_privileges.php:614
|
||||
msgid "Administration"
|
||||
@ -11007,7 +11007,7 @@ msgstr ""
|
||||
|
||||
#: tbl_change.php:821
|
||||
msgid "Binary - do not edit"
|
||||
msgstr "ข้อมูลไบนารี - ห้ามแก้ไข "
|
||||
msgstr "ข้อมูลไบนารี - ห้ามแก้ไข"
|
||||
|
||||
#: tbl_change.php:871
|
||||
msgid "Upload to BLOB repository"
|
||||
@ -11384,7 +11384,7 @@ msgstr "ความยาวแถว"
|
||||
|
||||
#: tbl_printview.php:365 tbl_structure.php:902
|
||||
msgid "Row size"
|
||||
msgstr "ขนาดแถว "
|
||||
msgstr "ขนาดแถว"
|
||||
|
||||
#: tbl_printview.php:375 tbl_structure.php:910
|
||||
msgid "Next autoindex"
|
||||
|
||||
12
po/tt.po
12
po/tt.po
@ -4,15 +4,15 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-05-17 15:17+0200\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:32+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: tatarish <tt@li.org>\n"
|
||||
"Language-Team: Tatar <http://l10n.cihar.com/projects/phpmyadmin/3-5/tt/>\n"
|
||||
"Language: tt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: tt\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 1.0\n"
|
||||
"X-Generator: Weblate 1.2\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353
|
||||
#: libraries/display_tbl.lib.php:359 server_privileges.php:1679
|
||||
@ -5734,7 +5734,9 @@ msgstr ""
|
||||
msgid ""
|
||||
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
|
||||
"3.11[/a]"
|
||||
msgstr "Törle buluı bar. YBS 3.11 qarísı"
|
||||
msgstr ""
|
||||
"Törle buluı bar. [a@./Documentation.html#faq3_11@Documentation]YBS 3.11[/a] "
|
||||
"qarísı"
|
||||
|
||||
#: libraries/dbi/drizzle.dbi.lib.php:114 libraries/dbi/mysql.dbi.lib.php:117
|
||||
#: libraries/dbi/mysqli.dbi.lib.php:189
|
||||
|
||||
22
po/uk.po
22
po/uk.po
@ -4,16 +4,16 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-05-17 15:22+0200\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:49+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: ukrainian <uk@li.org>\n"
|
||||
"Language-Team: Ukrainian <http://l10n.cihar.com/projects/phpmyadmin/3-5/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.0\n"
|
||||
"X-Generator: Weblate 1.2\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353
|
||||
#: libraries/display_tbl.lib.php:359 server_privileges.php:1679
|
||||
@ -3324,8 +3324,8 @@ msgid ""
|
||||
"cross-frame scripting attacks"
|
||||
msgstr ""
|
||||
"Включення цьго дозволяє сторінці, розташованої на іншому домені викликати "
|
||||
"PhpMyAdmin всередині фрейму, і це потенціальна [сильне] дірка в безпеці [/ "
|
||||
"сильний] що дозволяє крос-фреймові сценарії атак"
|
||||
"PhpMyAdmin всередині фрейму, і це потенціальна [strong]дірка в "
|
||||
"безпеці[/strong] що дозволяє крос-фреймові сценарії атак"
|
||||
|
||||
#: libraries/config/messages.inc.php:22
|
||||
msgid "Allow third party framing"
|
||||
@ -3918,9 +3918,9 @@ msgid ""
|
||||
"html#cfg_TitleTable]documentation[/a] for magic strings that can be used to "
|
||||
"get special values."
|
||||
msgstr ""
|
||||
"Вкажіть рядку заголовка браузера текст. Відповідно до [a@Documentation."
|
||||
"html#cfg_TitleTable]documentation[/а] для магічних рядків, які можуть "
|
||||
"використовуватися для отримання спеціальних значень."
|
||||
"Вкажіть рядку заголовка браузера текст. Відповідно до "
|
||||
"[a@Documentation.html#cfg_TitleTable]documentation[/a] для магічних рядків, "
|
||||
"які можуть використовуватися для отримання спеціальних значень."
|
||||
|
||||
#: libraries/config/messages.inc.php:196
|
||||
#: libraries/navigation_header.inc.php:79
|
||||
@ -3984,8 +3984,8 @@ msgid ""
|
||||
"storage[/a] in documentation"
|
||||
msgstr ""
|
||||
"Налаштуйте у PhpMyAdmin конфігурацію зберігання даних, щоб отримати доступ "
|
||||
"до додаткових властивостей, дивись [a@Documentation.html#linked-tables]"
|
||||
"PhpMyAdmin конфігурація пам'яті[/а] в документації"
|
||||
"до додаткових властивостей, дивись [a@Documentation.html#linked-"
|
||||
"tables]PhpMyAdmin конфігурація пам'яті[/a] в документації"
|
||||
|
||||
#: libraries/config/messages.inc.php:208
|
||||
msgid "Changes tracking"
|
||||
|
||||
15
po/ur.po
15
po/ur.po
@ -7,15 +7,15 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-07-20 00:33+0200\n"
|
||||
"Last-Translator: dasatti <danish_satti2002@yahoo.com>\n"
|
||||
"Language-Team: Urdu <ur@li.org>\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:47+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Urdu <http://l10n.cihar.com/projects/phpmyadmin/3-5/ur/>\n"
|
||||
"Language: ur\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ur\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Weblate 1.1\n"
|
||||
"X-Generator: Weblate 1.2\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:353
|
||||
#: libraries/display_tbl.lib.php:359 server_privileges.php:1679
|
||||
@ -4761,8 +4761,9 @@ msgid ""
|
||||
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
|
||||
"support, suggested: [kbd]pma_bookmark[/kbd]"
|
||||
msgstr ""
|
||||
"نہیں کے لیے خالی چھوڑیں@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
|
||||
"معاونت، مجوزہd]pma_bookmark[/kbd]"
|
||||
"نہیں کے لیے خالی "
|
||||
"چھوڑیں[a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] معاونت، "
|
||||
"مجوزہ[kbd]pma_bookmark[/kbd]"
|
||||
|
||||
#: libraries/config/messages.inc.php:375
|
||||
msgid "Bookmark table"
|
||||
|
||||
4
po/uz.po
4
po/uz.po
@ -4,7 +4,7 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-08-28 14:42+0200\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:46+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Uzbek <http://l10n.cihar.com/projects/phpmyadmin/3-5/uz/>\n"
|
||||
"Language: uz\n"
|
||||
@ -5079,7 +5079,7 @@ msgstr "Уланишни қисиш"
|
||||
|
||||
#: libraries/config/messages.inc.php:380
|
||||
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
|
||||
msgstr "Серверга уланиш тури, агар билмасангиз, \"tcp\" деб қолдиринг"
|
||||
msgstr "Серверга уланиш тури, агар билмасангиз, [kbd]tcp[/kbd] деб қолдиринг"
|
||||
|
||||
#: libraries/config/messages.inc.php:381
|
||||
msgid "Connection type"
|
||||
|
||||
@ -4,7 +4,7 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-08-28 14:41+0200\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:46+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Uzbek (latin) "
|
||||
"<http://l10n.cihar.com/projects/phpmyadmin/3-5/uz@latin/>\n"
|
||||
@ -5096,7 +5096,7 @@ msgstr "Ulanishni qisish"
|
||||
|
||||
#: libraries/config/messages.inc.php:380
|
||||
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
|
||||
msgstr "Serverga ulanish turi, agar bilmasangiz, \"tcp\" deb qoldiring"
|
||||
msgstr "Serverga ulanish turi, agar bilmasangiz, [kbd]tcp[/kbd] deb qoldiring"
|
||||
|
||||
#: libraries/config/messages.inc.php:381
|
||||
msgid "Connection type"
|
||||
|
||||
14
po/zh_CN.po
14
po/zh_CN.po
@ -4,14 +4,14 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-08-13 12:11+0200\n"
|
||||
"Last-Translator: shanyan baishui <Siramizu@gmail.com>\n"
|
||||
"Language-Team: Chinese (China) <http://l10n.cihar.com/projects/phpmyadmin/3-"
|
||||
"5/zh_CN/>\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:55+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Chinese (China) "
|
||||
"<http://l10n.cihar.com/projects/phpmyadmin/3-5/zh_CN/>\n"
|
||||
"Language: zh_CN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 1.2\n"
|
||||
|
||||
@ -4279,7 +4279,7 @@ msgstr "mcrypt 警告"
|
||||
msgid ""
|
||||
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
|
||||
"([kbd]0[/kbd] for no limit)"
|
||||
msgstr "一个脚本可分配到的内存大小,例 [kbd]32MB[kbd] ([kbd]0[/kbd]为不限制)"
|
||||
msgstr "一个脚本可分配到的内存大小,例 [kbd]32MB[/kbd] ([kbd]0[/kbd]为不限制)"
|
||||
|
||||
#: libraries/config/messages.inc.php:320
|
||||
msgid "Memory limit"
|
||||
@ -4534,7 +4534,7 @@ msgstr "压缩连接"
|
||||
|
||||
#: libraries/config/messages.inc.php:380
|
||||
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
|
||||
msgstr "怎样连接到服务器,如果不确定,请选择 tcp"
|
||||
msgstr "怎样连接到服务器,如果不确定,请选择 [kbd]tcp[/kbd]"
|
||||
|
||||
#: libraries/config/messages.inc.php:381
|
||||
msgid "Connection type"
|
||||
|
||||
@ -4,7 +4,7 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-08-22 06:32-0400\n"
|
||||
"PO-Revision-Date: 2012-08-27 11:49+0200\n"
|
||||
"PO-Revision-Date: 2012-09-05 10:55+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Chinese (Taiwan) "
|
||||
"<http://l10n.cihar.com/projects/phpmyadmin/3-5/zh_TW/>\n"
|
||||
@ -4430,7 +4430,7 @@ msgstr "mcrypt 警告"
|
||||
msgid ""
|
||||
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
|
||||
"([kbd]0[/kbd] for no limit)"
|
||||
msgstr "一個指令可分配到的記憶體大小,例 [kbd]32MB[kbd] ([kbd]0[/kbd]爲不限制)"
|
||||
msgstr "一個指令可分配到的記憶體大小,例 [kbd]32MB[/kbd] ([kbd]0[/kbd]爲不限制)"
|
||||
|
||||
#: libraries/config/messages.inc.php:320
|
||||
msgid "Memory limit"
|
||||
@ -4689,7 +4689,7 @@ msgstr "壓縮連線"
|
||||
|
||||
#: libraries/config/messages.inc.php:380
|
||||
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
|
||||
msgstr "怎樣連線到伺服器,如果不確定,請選擇 tcp"
|
||||
msgstr "怎樣連線到伺服器,如果不確定,請選擇 [kbd]tcp[/kbd]"
|
||||
|
||||
#: libraries/config/messages.inc.php:381
|
||||
msgid "Connection type"
|
||||
|
||||
@ -137,13 +137,13 @@ if (isset($_REQUEST['ajax_request']) && $_REQUEST['ajax_request'] == true) {
|
||||
case 'cpu':
|
||||
if (!$sysinfo) {
|
||||
include_once 'libraries/sysinfo.lib.php';
|
||||
$sysinfo = getSysInfo();
|
||||
$sysinfo = PMA_getSysInfo();
|
||||
}
|
||||
if (!$cpuload) {
|
||||
$cpuload = $sysinfo->loadavg();
|
||||
}
|
||||
|
||||
if (PHP_OS == 'Linux') {
|
||||
if (PMA_getSysInfoOs() == 'Linux') {
|
||||
$ret[$chart_id][$node_id][$point_id]['idle'] = $cpuload['idle'];
|
||||
$ret[$chart_id][$node_id][$point_id]['busy'] = $cpuload['busy'];
|
||||
} else
|
||||
@ -154,7 +154,7 @@ if (isset($_REQUEST['ajax_request']) && $_REQUEST['ajax_request'] == true) {
|
||||
case 'memory':
|
||||
if (!$sysinfo) {
|
||||
include_once 'libraries/sysinfo.lib.php';
|
||||
$sysinfo = getSysInfo();
|
||||
$sysinfo = PMA_getSysInfo();
|
||||
}
|
||||
if (!$memory) {
|
||||
$memory = $sysinfo->memory();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user