Merge branch 'master' into rfe1235

Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
This commit is contained in:
Madhura Jayaratne 2015-02-09 12:55:51 +05:30
commit 42419588e7
93 changed files with 5588 additions and 6016 deletions

View File

@ -35,9 +35,11 @@ phpMyAdmin - ChangeLog
+ rfe #1600 Clarify the "Inline" link
+ rfe #1179 Speed up slow triggers by using EVENT_OBJECT_SCHEMA
+ rfe #1192 ON DUPLICATE KEY UPDATE for loading CSV
- bug Cannot execute command from console (multi-server installation)
+ rfe #1235 Relation view: move to main "Structure" page
4.3.10.0 (not yet released)
- bug Undefined index navwork
4.3.9.0 (2015-02-05)
- bug #4728 Incorrect headings in routine editor

View File

@ -82,6 +82,7 @@ var PMA_console = {
'<input name="is_js_confirmed" value="0">' +
'<textarea name="sql_query"></textarea>' +
'<input name="console_message_id" value="0">' +
'<input name="server" value="">' +
'<input name="db" value="">' +
'<input name="table" value="">' +
'<input name="token" value="' +
@ -206,6 +207,7 @@ var PMA_console = {
return;
}
PMA_console.$requestForm.children('textarea').val(queryString);
PMA_console.$requestForm.children('[name=server]').attr('value', PMA_commonParams.get('server'));
if(options && options.db) {
PMA_console.$requestForm.children('[name=db]').val(options.db);
if(options.table) {

View File

@ -3934,11 +3934,17 @@ class PMA_Util
*
* @param string $limit_clause limit clause
*
* @return array|void Start and length attributes of the limit clause
* @return array|bool Start and length attributes of the limit clause or false
* on failure
*/
public static function analyzeLimitClause($limit_clause)
{
$start_and_length = explode(',', str_ireplace('LIMIT', '', $limit_clause));
$limitParams = trim(str_ireplace('LIMIT', '', $limit_clause));
if ('' == $limitParams) {
return false;
}
$start_and_length = explode(',', $limitParams);
$size = count($start_and_length);
if ($size == 1) {
return array(
@ -3951,6 +3957,8 @@ class PMA_Util
'length' => trim($start_and_length[1])
);
}
return false;
}
/**

View File

@ -754,7 +754,7 @@ $strConfigSQLQuery_Refresh_name = __('Refresh');
$strConfigSQLQuery_ShowAsPHP_name = __('Create PHP Code');
$strConfigSuhosinDisableWarning_desc = __('A warning is displayed on the main page if Suhosin is detected.');
$strConfigSuhosinDisableWarning_name = __('Suhosin warning');
$strConfigLoginCookieValidityDisableWarning_desc = __('Disable the default warning that is displayed on the main page if session.gc_maxlifetime is less than `LoginCookieValidity`.');
$strConfigLoginCookieValidityDisableWarning_desc = __('Disable the default warning that is displayed on the main page if the value of the PHP setting session.gc_maxlifetime is less than the value of `LoginCookieValidity`.');
$strConfigLoginCookieValidityDisableWarning_name = __('Login cookie validity warning');
$strConfigTextareaCols_desc = __('Textarea size (columns) in edit mode, this value will be emphasized for SQL query textareas (*2) and for query window (*1.25).');
$strConfigTextareaCols_name = __('Textarea columns');

View File

@ -361,7 +361,7 @@ class Node_Database extends Node
// Remove hidden items so that they are not displayed in navigation tree
$cfgRelation = PMA_getRelationsParam();
if ($cfgRelation['navwork']) {
if (isset($cfgRelation['navwork']) && $cfgRelation['navwork']) {
$navTable = PMA_Util::backquote($cfgRelation['db'])
. "." . PMA_Util::backquote($cfgRelation['navigationhiding']);
$sqlQuery = "SELECT `item_name` FROM " . $navTable

View File

@ -25,7 +25,7 @@ abstract class Node_DatabaseChild extends Node
{
$ret = '';
$cfgRelation = PMA_getRelationsParam();
if ($cfgRelation['navwork']) {
if (isset($cfgRelation['navwork']) && $cfgRelation['navwork']) {
$db = $this->realParent()->real_name;
$item = $this->real_name;
$ret = '<span class="navItemControls">'

View File

@ -53,7 +53,6 @@ class Text_Plain_Json extends TransformationsPlugin
return '<code class="json"><pre>' . "\n"
. htmlspecialchars($buffer) . "\n"
. '</pre></code>';
return $result;
}
/* ~~~~~~~~~~~~~~~~~~~~ Getters and Setters ~~~~~~~~~~~~~~~~~~~~ */

View File

@ -588,7 +588,7 @@ function PMA_checkRelationsParam()
}
return $cfgRelation;
} // end of the 'PMA_getRelationsParam()' function
} // end of the 'PMA_checkRelationsParam()' function
/**
* Check whether column_info table input transformation

View File

@ -53,7 +53,7 @@ function PMA_GIS_modifyQuery($sql_query, $visualizationSettings)
* @param array &$visualizationSettings Settings used to generate the chart
* @param string $format Format of the visualization
*
* @return string|void HTML and JS code for the GIS visualization
* @return string|bool HTML and JS code for the GIS visualization or false on failure
*/
function PMA_GIS_visualizationResults($data, &$visualizationSettings, $format)
{
@ -81,6 +81,8 @@ function PMA_GIS_visualizationResults($data, &$visualizationSettings, $format)
} elseif ($format == 'ol') {
return $visualization->asOl();
}
return false;
}
/**

View File

@ -24,7 +24,7 @@ if (! $response->isAjax()) {
}
$cfgRelation = PMA_getRelationsParam();
if ($cfgRelation['navwork']) {
if (isset($cfgRelation['navwork']) && $cfgRelation['navwork']) {
if (isset($_REQUEST['hideNavItem'])) {
if (! empty($_REQUEST['itemName'])
&& ! empty($_REQUEST['itemType'])

View File

@ -3,15 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-03-28 11:05+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Afrikaans <https://hosted.weblate.org/projects/phpmyadmin/"
"master/af/>\n"
"Language: af\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: af\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 1.9-dev\n"
@ -626,11 +626,11 @@ msgstr "Voltooi invoegings"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Jy het heel moontlik te groot leer probeer oplaai. Verwys asb na "
"%sdocumentation%s vir 'n omseiling van die limiet."
"Jy het heel moontlik te groot leer probeer oplaai. Verwys asb na %"
"sdocumentation%s vir 'n omseiling van die limiet."
#: import.php:343 import.php:626
msgid "Showing bookmark"
@ -3323,25 +3323,25 @@ msgstr "Aantoon van boekmerk"
msgid "Delete bookmark"
msgstr "Soek"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr ""
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr ""
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3571,8 +3571,8 @@ msgstr "Jou SQL-navraag is suksesvol uitgevoer."
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
#: libraries/DisplayResults.class.php:4492
@ -4523,14 +4523,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -7462,8 +7462,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -8113,8 +8114,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -8621,8 +8622,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -9777,8 +9778,8 @@ msgstr "Welkom by %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
@ -10313,20 +10314,20 @@ msgstr "Kolom name"
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -10791,13 +10792,13 @@ msgstr ""
msgid "no description"
msgstr "geen Beskrywing"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -12173,8 +12174,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
#: libraries/server_privileges.lib.php:4060
@ -14965,8 +14966,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -15093,8 +15094,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

3257
po/ar.po

File diff suppressed because it is too large Load Diff

142
po/az.po
View File

@ -3,11 +3,11 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"PO-Revision-Date: 2015-01-24 14:32+0200\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2015-02-07 14:21+0200\n"
"Last-Translator: Sevdimali İsa <sevdimaliisayev@mail.ru>\n"
"Language-Team: Azerbaijani <https://hosted.weblate.org/projects/phpmyadmin/"
"master/az/>\n"
"Language-Team: Azerbaijani "
"<https://hosted.weblate.org/projects/phpmyadmin/master/az/>\n"
"Language: az\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -606,8 +606,8 @@ msgstr "Natamam parametrlər"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Güman ki, böyük bir fayl göndərməyə çalışırsınız. Zəhmət olmasa bu sərhəddi "
"aşmaq üçün %sdokumentasiya%s istifadə edin."
@ -866,8 +866,8 @@ msgid ""
"extended features have been deactivated. %sFind out why%s. "
msgstr ""
"phpMyAdmin konfiqurasiya bazası bütövlükdə konfiqurasiya edilə bilmədi, bəzi "
"genişləndirilimiş xüsusiyyətlər deaktiv edildi. Səbəbini öyrənmək üçün "
"%sburaya%s klikləyin. "
"genişləndirilimiş xüsusiyyətlər deaktiv edildi. Səbəbini öyrənmək üçün %"
"sburaya%s klikləyin. "
#: index.php:542
msgid ""
@ -2707,8 +2707,8 @@ msgstr "%s. sətirində gözlənilməyən simvollar."
#, php-format
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"."
msgstr ""
"%1$s. sətirində gözlənilməyən simvollar. Gözlənən pəncərə, amma tapılan "
"\"%2$s\"."
"%1$s. sətirində gözlənilməyən simvollar. Gözlənən pəncərə, amma tapılan \"%2"
"$s\"."
#: libraries/Advisor.class.php:475
msgid "per second"
@ -3039,7 +3039,7 @@ msgstr "Əlfəcini yenilə"
msgid "Delete bookmark"
msgstr "Əlfəcini sil"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@ -3047,19 +3047,19 @@ msgstr ""
"Server cavab vermir(yada ki lokal MYSQL serverinin soketi duzgün "
"konfiqurasiya edilməyib)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "Server cavab vermir."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Detallar…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Konfiqurasiya faylınızda göstərilmiş idarəetmə istifadəçiləri üçün qoşulma "
@ -3258,8 +3258,8 @@ msgstr "SQL sorğunuz müvəffəqiyyətlə icra edilmişdir."
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
#: libraries/DisplayResults.class.php:4492
@ -3338,7 +3338,7 @@ msgstr "Diaqram göstər"
#: libraries/DisplayResults.class.php:4959
msgid "Visualize GIS data"
msgstr ""
msgstr "GIS verilənini vizuallaşdır"
#: libraries/DisplayResults.class.php:5195
msgid "Link not found!"
@ -3346,7 +3346,7 @@ msgstr "Link tapılmadı!"
#: libraries/Error_Handler.class.php:71
msgid "Too many error messages, some are not displayed."
msgstr ""
msgstr "Çoxlu sayda xəta mesajı, bəziləri göstərilə bilmədi."
#: libraries/Error_Handler.class.php:336
msgid "Report"
@ -3358,7 +3358,7 @@ msgstr "Hesabatı növbəti dəfə avtomatik olaraq birbaşa göndər"
#: libraries/File.class.php:225
msgid "File was not an uploaded file."
msgstr ""
msgstr "Fayl yüklənilmiş bir fayl deyil."
#: libraries/File.class.php:264
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
@ -3372,7 +3372,7 @@ msgstr ""
#: libraries/File.class.php:270
msgid "The uploaded file was only partially uploaded."
msgstr ""
msgstr "Yüklənən fayl sadəcə qismən yükləndi."
#: libraries/File.class.php:273
msgid "Missing a temporary folder."
@ -3396,11 +3396,11 @@ msgstr ""
#: libraries/File.class.php:479
msgid "Error while moving uploaded file."
msgstr ""
msgstr "Yüklənən fayl daşınarkən xəta oldu."
#: libraries/File.class.php:487
msgid "Cannot read (moved) upload file."
msgstr ""
msgstr "Yüklənən fayl oxuna bilmədi(daşınan)."
#: libraries/Footer.class.php:74
#, php-format
@ -3450,7 +3450,7 @@ msgstr "Unikal"
#: libraries/Index.class.php:650 libraries/tracking.lib.php:956
msgid "Packed"
msgstr ""
msgstr "Paketləndi"
#: libraries/Index.class.php:652 libraries/tracking.lib.php:958
msgid "Cardinality"
@ -3507,7 +3507,7 @@ msgstr "Server"
#: libraries/structure.lib.php:741 libraries/structure.lib.php:772
#: libraries/structure.lib.php:1303 libraries/tbl_info.inc.php:62
msgid "View"
msgstr ""
msgstr "Görünüş"
#: libraries/Menu.class.php:309 libraries/Menu.class.php:417
#: libraries/Util.class.php:3193 libraries/Util.class.php:3200
@ -3575,7 +3575,7 @@ msgstr "Əməliyyatlar"
#: libraries/Util.class.php:4151 libraries/Util.class.php:4165
#: libraries/relation.lib.php:248
msgid "Tracking"
msgstr ""
msgstr "İzləmə"
#: libraries/Menu.class.php:380 libraries/Menu.class.php:478
#: libraries/Util.class.php:4150 libraries/Util.class.php:4166
@ -3592,7 +3592,7 @@ msgstr ""
#: libraries/Menu.class.php:428 libraries/Menu.class.php:435
#: libraries/Menu.class.php:442
msgid "Database seems to be empty!"
msgstr ""
msgstr "Verilənlər Bazası boş olaraq görsənir!"
#: libraries/Menu.class.php:431 libraries/Util.class.php:4143
msgid "Query"
@ -3609,11 +3609,11 @@ msgstr "Rutinlər"
#: libraries/plugins/export/ExportXml.class.php:107
#: libraries/rte/rte_words.lib.php:64
msgid "Events"
msgstr ""
msgstr "Hadisələr"
#: libraries/Menu.class.php:490 libraries/Util.class.php:4152
msgid "Designer"
msgstr ""
msgstr "Dizayner"
#: libraries/Menu.class.php:500 libraries/Util.class.php:4153
msgid "Central columns"
@ -3654,7 +3654,7 @@ msgstr "kodlaşdırma"
#: libraries/Menu.class.php:608 libraries/Util.class.php:4136
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
msgstr "Qoşmalar"
#: libraries/Menu.class.php:612 libraries/Util.class.php:4137
msgid "Engines"
@ -3671,22 +3671,22 @@ msgstr "Xəta"
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
msgstr[0] "%1$d sətir təsirləndi."
msgstr[1] "%1$d sətir təsirləndi."
#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] ""
msgstr[1] ""
msgstr[0] "%1$d sətir silindi."
msgstr[1] "%1$d sətir silindi."
#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
msgstr[0] ""
msgstr[1] ""
msgstr[0] "%1$d sətir əlavə edildi."
msgstr[1] "%1$d sətir əlavə edildi."
#: libraries/PDF.class.php:70 libraries/Util.class.php:2454
#: libraries/browse_foreigners.lib.php:290
@ -3781,7 +3781,7 @@ msgstr ""
#: libraries/ServerStatusData.class.php:195
msgid "Temporary data"
msgstr ""
msgstr "Müvəqqəti verilən"
#: libraries/ServerStatusData.class.php:196
msgid "Delayed inserts"
@ -3789,7 +3789,7 @@ msgstr "gecikmiş əlavələr"
#: libraries/ServerStatusData.class.php:197
msgid "Key cache"
msgstr ""
msgstr "Açar keşi"
#: libraries/ServerStatusData.class.php:198
msgid "Joins"
@ -3797,7 +3797,7 @@ msgstr ""
#: libraries/ServerStatusData.class.php:200
msgid "Sorting"
msgstr ""
msgstr "Sıralama"
#: libraries/ServerStatusData.class.php:201
#: libraries/build_html_for_db.lib.php:28
@ -3828,16 +3828,16 @@ msgstr "Açıq cədvəlləri göstər"
#: libraries/ServerStatusData.class.php:229
msgid "Show slave hosts"
msgstr ""
msgstr "Slave hostları göstər"
#: libraries/ServerStatusData.class.php:236
#: libraries/replication_gui.lib.php:50
msgid "Show master status"
msgstr ""
msgstr "Master statusunu göstər"
#: libraries/ServerStatusData.class.php:239
msgid "Show slave status"
msgstr ""
msgstr "Slave statusunu göstər"
#: libraries/ServerStatusData.class.php:244
msgid "Flush query cache"
@ -3858,7 +3858,7 @@ msgstr "Bütün status dəyişənləri"
#: libraries/ServerStatusData.class.php:385
msgid "Monitor"
msgstr ""
msgstr "Monitorinq"
#: libraries/ServerStatusData.class.php:389
msgid "Advisor"
@ -4055,14 +4055,13 @@ msgid "Replace with:"
msgstr "Bununla dəyişdir:"
#: libraries/TableSearch.class.php:1370
#, fuzzy
#| msgid "as regular expression"
msgid "Use regular expression"
msgstr "requlyar ifade (regular expression) olaraq"
msgstr "Requlyar ifadə (regular expression) istifadə et"
#: libraries/TableSearch.class.php:1473
msgid "Find and replace - preview"
msgstr ""
msgstr "Tap və dəyişdir - önizləməsi"
#: libraries/TableSearch.class.php:1477
msgid "Count"
@ -4087,7 +4086,7 @@ msgstr ""
#: libraries/Theme.class.php:402
msgid "No preview available."
msgstr "Görünüş mövcud deyil."
msgstr "Önizləmə mövcud deyil."
#: libraries/Theme.class.php:404
msgid "take it"
@ -4149,14 +4148,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -6988,8 +6987,9 @@ msgstr "Suhosin xəbərdarlığı"
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -7591,8 +7591,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -8074,8 +8074,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -9180,8 +9180,8 @@ msgstr "%s - ə Xoş Gəlmisiniz"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Çox güman ki bunun səbəbi konfiurasiya faylını yaratmadığınızdandır. Bir "
"dənəsin yaratmaq üçün %1$ssetup script%2$s istifadə edə bilərsiniz."
@ -9676,20 +9676,20 @@ msgstr "Sütun adları: "
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -10178,13 +10178,13 @@ msgstr ""
msgid "no description"
msgstr "Haqqında məlumat (description) mövcud deyildir"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -11519,8 +11519,8 @@ msgstr "İstifadəçilərə ümumi baxış"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Qeyd: phpMyAdmin istifadəçi səlahiyyətlərini birbaşa MySQL-in səlahiyyətlər "
"cədvəllərindən almaqdadır. Əgər əllə nizamlamalar edilmişsə, bu cədvəllərin "
@ -14210,8 +14210,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -14331,8 +14331,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

View File

@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2015-01-09 18:19+0200\n"
"Last-Translator: Viktar Palstsiuk <vipals@gmail.com>\n"
"Language-Team: Belarusian <https://hosted.weblate.org/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"
"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"
"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 2.2-dev\n"
#: changelog.php:36 license.php:28
@ -628,11 +628,11 @@ msgstr "Поўная ўстаўка"
#: import.php:163
#, fuzzy, php-format
#| msgid ""
#| "You probably tried to upload too large file. Please refer to "
#| "%sdocumentation%s for ways to workaround this limit."
#| "You probably tried to upload too large file. Please refer to %"
#| "sdocumentation%s for ways to workaround this limit."
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Вы, мусіць, паспрабавалі загрузіць вельмі вялікі файл. Калі ласка, "
"зьвярніцеся да %sдакумэнтацыі%s для высьвятленьня спосабаў абыйсьці гэтае "
@ -667,8 +667,8 @@ msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
"for it is not implemented or disabled by your configuration."
msgstr ""
"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца "
"(%s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай "
"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца (%"
"s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай "
"канфігурацыі."
#: import.php:534
@ -3437,7 +3437,7 @@ msgstr "Паказваючы закладку"
msgid "Delete bookmark"
msgstr "Выдаліць сувязь"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@ -3445,21 +3445,21 @@ msgid ""
"configured)."
msgstr "(або сокет лякальнага сэрвэра MySQL не сканфігураваны правільна)"
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Сэрвэр не адказвае"
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Падрабязьней…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Не атрымалася ўсталяваць злучэньне для controluser, вызначанае ў вашым "
@ -3697,11 +3697,11 @@ msgstr "Ваш SQL-запыт быў пасьпяхова выкананы"
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да "
"%акумэнтацыі%s."
"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да %"
"sдакумэнтацыі%s."
#: libraries/DisplayResults.class.php:4492
#, fuzzy, php-format
@ -4679,14 +4679,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -7725,8 +7725,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -8402,12 +8403,12 @@ msgstr ""
#, fuzzy, php-format
#| msgid ""
#| "s value is interpreted using %1$sstrftime%2$s, so you can use time "
#| "matting strings. Additionally the following transformations will pen: "
#| "%3$s. Other text will be kept as is."
#| "matting strings. Additionally the following transformations will pen: %3"
#| "$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Гэтае значэньне інтэрпрэтуецца з выкарыстаньнем %1$sstrftime%2$s, таму можна "
"выкарыстоўваць радкі фарматаваньня часу. Апроч гэтага, будуць праведзеныя "
@ -8980,8 +8981,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -10169,8 +10170,8 @@ msgstr "Запрашаем у %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Імаверна, прычына гэтага ў тым, што ня створаны канфігурацыйны файл. Каб яго "
"стварыць, можна выкарыстаць %1$sналадачны скрыпт%2$s."
@ -10735,20 +10736,20 @@ msgstr "Назвы калёнак"
msgid "Invalid parameter for CSV import: %s"
msgstr "Недапушчальны парэмэтар для імпарту дадзеных у CSV: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Некарэктны фармат CSV-дадзеных у радку %d."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, fuzzy, php-format
#| msgid "Invalid field count in CSV input on line %d."
msgid "Invalid column count in CSV input on line %d."
@ -11312,13 +11313,13 @@ msgstr ""
msgid "no description"
msgstr "няма апісаньня"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -12783,8 +12784,8 @@ msgstr "Карыстальнікі"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Заўвага: phpMyAdmin атрымлівае прывілеі карыстальнікаў наўпростава з табліц "
"прывілеяў MySQL. Зьмесьціва гэтых табліц можа адрозьнівацца ад прывілеяў, "
@ -15812,8 +15813,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -15946,8 +15947,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218
@ -16943,8 +16944,8 @@ msgstr "максымум адначасовых злучэньняў"
#~ "%s."
#~ msgstr ""
#~ "Немагчыма праініцыялізаваць праверку SQL. Калі ласка, праверце, ці "
#~ "ўсталяваныя ў вас неабходныя пашырэньні PHP, як гэта апісана ў "
#~ "%акумэнтацыі%s."
#~ "ўсталяваныя ў вас неабходныя пашырэньні PHP, як гэта апісана ў %"
#~ "sдакумэнтацыі%s."
#, fuzzy
#~| msgid "Error: Relation not added."

View File

@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-03-28 11:02+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Belarusian (latin) <https://hosted.weblate.org/projects/"
"phpmyadmin/master/be%40latin/>\n"
"Language: be@latin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"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.9-dev\n"
#: changelog.php:36 license.php:28
@ -641,11 +641,11 @@ msgstr "Poŭnaja ŭstaŭka"
#: import.php:163
#, fuzzy, php-format
#| msgid ""
#| "You probably tried to upload too large file. Please refer to "
#| "%sdocumentation%s for ways to workaround this limit."
#| "You probably tried to upload too large file. Please refer to %"
#| "sdocumentation%s for ways to workaround this limit."
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Vy, musić, pasprabavali zahruzić vielmi vialiki fajł. Kali łaska, "
"źviarniciesia da %sdakumentacyi%s dla vyśviatleńnia sposabaŭ abyjści hetaje "
@ -680,8 +680,8 @@ msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
"for it is not implemented or disabled by your configuration."
msgstr ""
"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca "
"(%s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj "
"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca (%"
"s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj "
"kanfihuracyi."
#: import.php:534
@ -3474,7 +3474,7 @@ msgstr "Pakazvajučy zakładku"
msgid "Delete bookmark"
msgstr "Vydalić suviaź"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@ -3482,21 +3482,21 @@ msgid ""
"configured)."
msgstr "(abo sokiet lakalnaha servera MySQL nie skanfihuravany pravilna)"
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Server nie adkazvaje"
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Padrabiaźniej…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Nie atrymałasia ŭstalavać złučeńnie dla controluser, vyznačanaje ŭ vašym "
@ -3736,11 +3736,11 @@ msgstr "Vaš SQL-zapyt byŭ paśpiachova vykanany"
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da "
"%sdakumentacyi%s."
"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da %"
"sdakumentacyi%s."
#: libraries/DisplayResults.class.php:4492
#, fuzzy, php-format
@ -4724,14 +4724,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -7758,8 +7758,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -8440,12 +8441,12 @@ msgstr ""
#, fuzzy, php-format
#| msgid ""
#| "s value is interpreted using %1$sstrftime%2$s, so you can use time "
#| "matting strings. Additionally the following transformations will pen: "
#| "%3$s. Other text will be kept as is."
#| "matting strings. Additionally the following transformations will pen: %3"
#| "$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Hetaje značeńnie interpretujecca z vykarystańniem %1$sstrftime%2$s, tamu "
"možna vykarystoŭvać radki farmatavańnia času. Aproč hetaha, buduć "
@ -9026,8 +9027,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -10218,8 +10219,8 @@ msgstr "Zaprašajem u %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Imavierna, pryčyna hetaha ŭ tym, što nia stvorany kanfihuracyjny fajł. Kab "
"jaho stvaryć, možna vykarystać %1$snaładačny skrypt%2$s."
@ -10786,20 +10787,20 @@ msgstr "Nazvy kalonak"
msgid "Invalid parameter for CSV import: %s"
msgstr "Niedapuščalny paremetar dla impartu dadzienych u CSV: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Niekarektny farmat CSV-dadzienych u radku %d."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, fuzzy, php-format
#| msgid "Invalid field count in CSV input on line %d."
msgid "Invalid column count in CSV input on line %d."
@ -10995,8 +10996,8 @@ msgstr ""
"dadadzienyja da mietki času (pa zmoŭčańni — 0). Druhi parametar "
"vykarystoŭvajcie, kab paznačyć inšy farmat daty/času. Treci parametar "
"vyznačaje typ daty, jakaja budzie pakazanaja: vašaja lakalnaja data albo "
"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). "
"U zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia "
"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). U "
"zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia "
"parametraŭ lakalnaj daty hladzicie dakumentacyju dla funkcyi PHP strftime(), "
"a dla hrynvickaha času (parametar «utc») — dakumentacyju funkcyi gmdate()."
@ -11368,13 +11369,13 @@ msgstr ""
msgid "no description"
msgstr "niama apisańnia"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -12840,8 +12841,8 @@ msgstr "Karystalniki"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Zaŭvaha: phpMyAdmin atrymlivaje pryvilei karystalnikaŭ naŭprostava z tablic "
"pryvilejaŭ MySQL. Źmieściva hetych tablic moža adroźnivacca ad pryvilejaŭ, "
@ -15870,8 +15871,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -16006,8 +16007,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218
@ -17013,8 +17014,8 @@ msgstr "maksymum adnačasovych złučeńniaŭ"
#~ "%s."
#~ msgstr ""
#~ "Niemahčyma prainicyjalizavać pravierku SQL. Kali łaska, praviercie, ci "
#~ "ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ "
#~ "%sdakumentacyi%s."
#~ "ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ %"
#~ "sdakumentacyi%s."
#, fuzzy
#~| msgid "Error: Relation not added."

View File

@ -3,15 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2015-01-26 06:18+0200\n"
"Last-Translator: Valter Georgiev <blagynchy@gmail.com>\n"
"Language-Team: Bulgarian <https://hosted.weblate.org/projects/phpmyadmin/"
"master/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 2.2-dev\n"
@ -604,8 +604,8 @@ msgstr "Непълни параметри"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Вероятно сте направили опит да качите твърде голям файл. Моля, обърнете се "
"към %sдокументацията%s за да намерите начин да избегнете това ограничение."
@ -3153,7 +3153,7 @@ msgstr "Показване на белязка"
msgid "Delete bookmark"
msgstr "Изтриване релация"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@ -3161,19 +3161,19 @@ msgstr ""
"Сървърът не отговаря (или местният сокет на сървъра не е конфигуриран "
"правилно)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "Сървърът не отговаря."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr "Проверете правата на папката, съдържаща БД."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Подробности…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3380,8 +3380,8 @@ msgstr "SQL заявката беше изпълнена успешно"
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr "Този изглед има поне толкова реда. Погледнете %sдокументацията%s."
#: libraries/DisplayResults.class.php:4492
@ -4332,14 +4332,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -7571,8 +7571,9 @@ msgstr ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
#| "cookie authentication"
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"Скрива предупреждението за липсващ mcrypt при удостоверяване с бисквитки"
@ -8216,8 +8217,8 @@ msgstr ", @TABLE@ ще стане името на таблицата"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -8715,8 +8716,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -9894,8 +9895,8 @@ msgstr "Добре дошли в %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Изглежда не се създали конфигурационен файл. Вероятно ще искате да "
"използвате %1$sскрипта за настройки%2$s, за да го създадете."
@ -10436,20 +10437,20 @@ msgstr "Имена на колони: "
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -10963,14 +10964,14 @@ msgstr ""
msgid "no description"
msgstr "няма описание"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "Липсват таблици от хранилището за конфигурация на phpMyAdmin"
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@ -12377,8 +12378,8 @@ msgstr "Преглед потребители"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Забележка: phpMyAdmin взема потребителските права директно от таблицата с "
"правата на MySQL. Съдържанието на тази таблица може да се различава от "
@ -14527,8 +14528,8 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
"Имате достъп до още настройки, модифицирайки config.inc.php, примерно чрез "
"%sскрипта за настройки%s."
"Имате достъп до още настройки, модифицирайки config.inc.php, примерно чрез %"
"sскрипта за настройки%s."
#: prefs_manage.php:315
msgid "Save to browser's storage"
@ -15173,8 +15174,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -15293,8 +15294,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
"%s%% от всички сортировки се изпълняват с временни таблици, тази стойност "
"трябва да бъде под 10%%."
@ -16323,8 +16324,8 @@ msgstr "concurrent_insert e 0"
#~ "%s."
#~ msgstr ""
#~ "SQL валидаторът не може да бъде инициализиран. Моля проверете дали са "
#~ "инсталирани необходимите PHP разширения, както е описано в "
#~ "%окументацията%s."
#~ "инсталирани необходимите PHP разширения, както е описано в %"
#~ "sдокументацията%s."
#, fuzzy
#~| msgid "Error: Relation not added."

107
po/bn.po
View File

@ -3,15 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-11-05 10:27+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Bengali <https://hosted.weblate.org/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 2.0-dev\n"
@ -264,8 +264,8 @@ msgstr "ডাটাবেইজ %1$s টি %2$s এ অনুলিপি হ
msgid ""
"The phpMyAdmin configuration storage has been deactivated. %sFind out why%s."
msgstr ""
"phpMyAdmin কনফিগারেশন সংরক্ষন ব্যবস্থা কার্যকর নয়। কেন জানার জন্য ক্লীক করুন %shere"
"%s।"
"phpMyAdmin কনফিগারেশন সংরক্ষন ব্যবস্থা কার্যকর নয়। কেন জানার জন্য ক্লীক করুন %shere%"
"s।"
#: db_printview.php:48 db_tracking.php:124 db_tracking.php:264
#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:770
@ -623,8 +623,8 @@ msgstr "সম্পুর্ন ইনর্সাট"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"সম্ভবত আপনি একটি বিশাল ফাইল আপলোড করতে চাচ্ছেন। অনুগ্র্রহ করে %sdocumentation%s "
"দেখে এই সমস্যা সমাধানের চেষ্টা করুন।"
@ -3242,26 +3242,26 @@ msgstr "বুকর্মাক দেখাচ্ছে"
msgid "Delete bookmark"
msgstr "সর্ম্পক মুছা"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
"সার্ভারটি সাড়া দিচ্ছে না। (বা স্থানীয় সার্ভারটির সকেট সঠিকভাবে কনফিগার করা হয়নি)।"
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "সার্ভারটি সাড়া দিচ্ছে না।"
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr "ডাটাবেইজ ডিরেক্টরির অধিকারসমূহ পরীক্ষা করুন।"
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "বিশদ…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr "নিয়ন্ত্রক ব্যবহারকারীর জন্য নির্ধারিত কনফিগারেশন সংযোগে ব্যার্থ হয়েছে।"
@ -3462,8 +3462,8 @@ msgstr "আপনার SQL অনুসন্ধানটি সফলভাব
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"এই ভিউটির অন্তত পক্ষে এক সারি তথ্য রয়েছে। অনুগ্রহ করে %sdocumentation%s দেখুন।"
@ -4394,16 +4394,16 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"একটি ছোট দশমিক-পয়েন্টের অনুমোদিত মান হল -৩.২৮২৬৬৬E+৩৮ থেকে "
"-১.১৩৫১E-৩৮, এবং ১.১৩৫১E-৩৮ থেকে ৩.২৮২৬৬৬E+৩৮"
"একটি ছোট দশমিক-পয়েন্টের অনুমোদিত মান হল -৩.২৮২৬৬৬E+৩৮ থেকে -১.১৩৫১E-"
"৩৮, এবং ১.১৩৫১E-৩৮ থেকে ৩.২৮২৬৬৬E+৩৮"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"একটি double-precision দশমিক পয়েন্ট হল -১.৬৯৩১৩৮৬২৩১৫E+৩০৮ থেকে - "
@ -5319,22 +5319,22 @@ msgstr ""
#: libraries/config/ServerConfigChecks.class.php:416
#, fuzzy, php-format
#| msgid ""
#| "If using cookie authentication and %sLogin cookie store%s is not 0, "
#| "%sLogin cookie validity%s must be set to a value less or equal to it."
#| "If using cookie authentication and %sLogin cookie store%s is not 0, %"
#| "sLogin cookie validity%s must be set to a value less or equal to it."
msgid ""
"If using [kbd]cookie[/kbd] authentication and %sLogin cookie store%s is not "
"0, %sLogin cookie validity%s must be set to a value less or equal to it."
msgstr ""
"যদি কুকি প্রমাণীকরন ব্যবহার করেন এবং %sLogin cookie store%s যদি না হয়, "
"%sLogin cookie validity%s 'র মান অবশ্যই এর থেকে কম বা সমান এ সেট করতে হবে।"
"যদি কুকি প্রমাণীকরন ব্যবহার করেন এবং %sLogin cookie store%s যদি না হয়, %"
"sLogin cookie validity%s 'র মান অবশ্যই এর থেকে কম বা সমান এ সেট করতে হবে।"
#: libraries/config/ServerConfigChecks.class.php:423
#, fuzzy, php-format
#| msgid ""
#| "If you feel this is necessary, use additional protection settings - "
#| "%shost authentication%s settings and %strusted proxies list%s. However, "
#| "IP-based protection may not be reliable if your IP belongs to an ISP "
#| "where thousands of users, including you, are connected to."
#| "If you feel this is necessary, use additional protection settings - %"
#| "shost authentication%s settings and %strusted proxies list%s. However, IP-"
#| "based protection may not be reliable if your IP belongs to an ISP where "
#| "thousands of users, including you, are connected to."
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
"authentication%s settings and %strusted proxies list%s. However, IP-based "
@ -7474,8 +7474,9 @@ msgstr "Suhosin সতর্কবার্তা"
#| "Disable the default warning that is displayed on the Structure page if "
#| "column names in a table are reserved MySQL words."
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"যদি কোন টেবলের স্তম্ভের নামে MySQL এর রির্জাভড ওর্য়াড ব্যবহার করা হয় তবে গঠন "
"পাতায় যে সর্তকবার্তা প্রদর্শন করা হয় তা অকার্যকর কর।"
@ -8093,8 +8094,8 @@ msgstr "@TABLE@ হবে টেবলের নাম"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"এই মানটি %1$sstrftime%2$s ভাবে অনুবাদিত হবে, আপনি সময় গঠনের স্ট্রিং ব্যবহার করতে "
"পারেন। এখন এই রুপান্তরটি হবে:%3$s। অন্যান্য লেখা ঠিকই থাকবে। %4$sFAQ%5$s এ বিশদ "
@ -8633,8 +8634,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
"নথিপত্রাদি এবং PBXT'র অন্যান্য তথ্য %sPrimeBase XT Home Page%s এ পাওয়া যাবে।"
@ -9769,8 +9770,8 @@ msgstr "%s এ স্বাগতম"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"সম্ভবত আপনি কোন কনফিগারেশন ফাইল তৈরী করেন নাই। আপনি %1$ssetup script%2$s "
"ব্যবহার করে একটি তৈরী করতে পারেন।"
@ -10279,7 +10280,7 @@ msgstr "স্তম্ভের নাম: "
msgid "Invalid parameter for CSV import: %s"
msgstr "CSV আমদানীর প্যারামিটার ঠিক নাই:%s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@ -10288,13 +10289,13 @@ msgstr ""
"অযোগ্য স্তম্ভের নাম (%s) দেয়া হয়েছে! স্তম্ভের নামটি সঠিক ভাবে বানান করা হয়েছে "
"কিনা, কমা দ্বারা আলাদ করা এবং কোঔট দ্বারা সীমিত নয় তা নিশ্চিন্ত করুন।"
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "CSV ফাইলের গঠন অযোগ্য %d লাইনে।"
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "অযোগ্য স্তম্ভ্ সংখ্যা CSV ফাইলের %d লাইনে।"
@ -10819,14 +10820,14 @@ msgstr "আধুনিক কনফিগারেশন ফাইল লোড
msgid "no description"
msgstr "বণর্না নাই"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "phpMyAdmin কনফিগারেশনের storage table পাওয়া যাচ্ছে না"
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@ -12183,8 +12184,8 @@ msgstr "একনজরে ব্যবহারকারীগণ"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"টিকা: phpMyAdmin সরাসরি মাইএসকিউএল অধিকার টেবিল থেকে ব্যবহারকারীর অধিকার "
"সংক্রান্ত তথ্য সমূহ নেয়। টেবিলে থাকা অধিকার সম্পর্কিত তথ্য এবং সার্ভারের মধ্য পার্থক্য "
@ -14250,8 +14251,8 @@ msgid ""
"Your preferences will be saved for current session only. Storing them "
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
"আপনার কনফিগারেশন শুধু এই সেশনের জন্য সংরক্ষন হবে। স্থায়ীভাবে সংরক্ষনের জন্য "
"%sphpMyAdmin configuration storage%s প্রয়োজন।"
"আপনার কনফিগারেশন শুধু এই সেশনের জন্য সংরক্ষন হবে। স্থায়ীভাবে সংরক্ষনের জন্য %"
"sphpMyAdmin configuration storage%s প্রয়োজন।"
#: libraries/user_preferences.lib.php:129
msgid "Could not save configuration"
@ -15019,11 +15020,11 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
"বর্তমান মুক্ত ক্যাশ মেমোরীর হার হল মোট অনুসন্ধান ক্যাশের আকারের %s%%। ইহা অবশ্যই "
"80%% বেশী থাকবে"
"বর্তমান মুক্ত ক্যাশ মেমোরীর হার হল মোট অনুসন্ধান ক্যাশের আকারের %s%%। ইহা অবশ্যই 80%"
"% বেশী থাকবে"
#: libraries/advisory_rules.txt:181
msgid "Query cache fragmentation"
@ -15078,8 +15079,8 @@ msgid ""
"The ratio of removed queries to inserted queries is %s%%. The lower this "
"value is, the better (This rules firing limit: 0.1%%)"
msgstr ""
"ইনসার্টেড অনুসন্ধানে অনুসন্ধান সরানোর হার %s%%। এর মান যত কম হবে তত ভাল, ভাল "
"(.১%%)"
"ইনসার্টেড অনুসন্ধানে অনুসন্ধান সরানোর হার %s%%। এর মান যত কম হবে তত ভাল, ভাল (.১%"
"%)"
#: libraries/advisory_rules.txt:195
msgid "Query cache max size"
@ -15147,8 +15148,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr "সমস্ত সর্টের %s%% সাময়িক টেবল তৈরী করছে, এই মানটি 10%% এর কম হবে।"
#: libraries/advisory_rules.txt:218

View File

@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-03-28 11:07+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Breton <https://hosted.weblate.org/projects/phpmyadmin/master/"
"br/>\n"
"Language: br\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: br\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 1.9-dev\n"
@ -635,14 +635,14 @@ msgstr "Ensoc'hadennoù sevenet"
#: import.php:163
#, fuzzy, php-format
#| msgid ""
#| "You probably tried to upload too large file. Please refer to "
#| "%sdocumentation%s for ways to workaround this limit."
#| "You probably tried to upload too large file. Please refer to %"
#| "sdocumentation%s for ways to workaround this limit."
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Evit doare hoc'h eus klasket enrollañ ur restr re vras. Sellit ouzh an "
"%steulioù titouriñ%s evit gwelet penaos c'hoari an dro d'ar vevenn-se."
"Evit doare hoc'h eus klasket enrollañ ur restr re vras. Sellit ouzh an %"
"steulioù titouriñ%s evit gwelet penaos c'hoari an dro d'ar vevenn-se."
#: import.php:343 import.php:626
msgid "Showing bookmark"
@ -3293,25 +3293,25 @@ msgstr "O tiskouez ar sined"
msgid "Delete bookmark"
msgstr "Klask"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr ""
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr ""
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3530,11 +3530,11 @@ msgstr "Sevenet eo bet ho reked SQL ervat"
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Da nebeutañ emañ an niver a linennoù-mañ er Gweled-mañ. Sellit ouzh an "
"%steulioù titouriñ%s."
"Da nebeutañ emañ an niver a linennoù-mañ er Gweled-mañ. Sellit ouzh an %"
"steulioù titouriñ%s."
#: libraries/DisplayResults.class.php:4492
#, php-format
@ -4487,14 +4487,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -7596,8 +7596,9 @@ msgstr ""
#| "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
#| "authentication"
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"Ger-tremen implijet evit enrinegañ toupinoù pa vez gwiriekaet dre [kbd]cookie"
"[/kbd]"
@ -8214,8 +8215,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -8721,8 +8722,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -9879,11 +9880,11 @@ msgstr "Degemer mat e %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Evit doare n'hoc'h eus krouet a restr kefluniañ. Gallout a rit implijout ar "
"%1$sskript kefluniañ%2$s da sevel unan."
"Evit doare n'hoc'h eus krouet a restr kefluniañ. Gallout a rit implijout ar %"
"1$sskript kefluniañ%2$s da sevel unan."
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
msgid ""
@ -10405,20 +10406,20 @@ msgstr ""
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -10879,13 +10880,13 @@ msgstr ""
msgid "no description"
msgstr ""
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid ""
#| "Tracking of changes made in database. Requires the phpMyAdmin "
@ -12268,8 +12269,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
#: libraries/server_privileges.lib.php:4060
@ -15052,8 +15053,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -15186,8 +15187,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

View File

@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-03-31 14:23+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Bosnian <https://hosted.weblate.org/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"
"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"
"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.9-dev\n"
#: changelog.php:36 license.php:28
@ -636,8 +636,8 @@ msgstr "Kompletan INSERT (sa imenima polja)"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
#: import.php:343 import.php:626
@ -3360,25 +3360,25 @@ msgstr "Pretraživanje"
msgid "Delete bookmark"
msgstr "Pretraživanje"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr ""
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr ""
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3612,8 +3612,8 @@ msgstr "Vaš SQL upit je uspešno izvršen"
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
#: libraries/DisplayResults.class.php:4492
@ -4573,14 +4573,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -7550,8 +7550,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -8211,8 +8212,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -8723,8 +8724,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -9901,8 +9902,8 @@ msgstr "Dobrodošli na %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
@ -10455,20 +10456,20 @@ msgstr "Imena kolona"
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -10982,13 +10983,13 @@ msgstr ""
msgid "no description"
msgstr "nema opisa"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -12413,8 +12414,8 @@ msgstr "Pregled korisnika"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela "
"privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje "
@ -15246,8 +15247,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -15374,8 +15375,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

View File

@ -3,15 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2015-01-20 22:29+0200\n"
"Last-Translator: josep constanti <jconstanti@ovi.com>\n"
"Language-Team: Catalan <https://hosted.weblate.org/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 2.2-dev\n"
@ -258,8 +258,8 @@ msgstr "S'ha copiat la base de dades %1$s a %2$s."
msgid ""
"The phpMyAdmin configuration storage has been deactivated. %sFind out why%s."
msgstr ""
"S'ha desactivat l'emmagatzemament de la configuració de phpMyAdmin. "
"%sConsulta el motiu%s."
"S'ha desactivat l'emmagatzemament de la configuració de phpMyAdmin. %"
"sConsulta el motiu%s."
#: db_printview.php:48 db_tracking.php:124 db_tracking.php:264
#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:770
@ -604,11 +604,11 @@ msgstr "Paràmetres incomplets"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Probablement has triat d'enviar un arxiu que és massa gran. Consulta la "
"%sdocumentació%s per trobar formes de modificar aquest límit."
"Probablement has triat d'enviar un arxiu que és massa gran. Consulta la %"
"sdocumentació%s per trobar formes de modificar aquest límit."
#: import.php:343 import.php:626
msgid "Showing bookmark"
@ -3098,7 +3098,7 @@ msgstr "Actualitzar consulta desada"
msgid "Delete bookmark"
msgstr "Esborrar consultab desada"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@ -3106,19 +3106,19 @@ msgstr ""
"El servidor no està responent (o el sòcol del servidor local MySQL no està "
"configurat correctament)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "El servidor no respon."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr "Comprova els permisos del directori que conté la base de dades."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Detalls…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"La connexió de l'usuari de control ha fallat, tal com està definida ara a la "
@ -3317,8 +3317,8 @@ msgstr "La vostra comanda SQL ha estat executada amb èxit."
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Aquesta vista té al menys aques nombre de files. Consulta %sdocumentation%s."
@ -4228,20 +4228,20 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"Un nombre de coma flotant petit, els valors permesos són de -3.402823466E+38 "
"a -1.175494351E-38, 0, i de 1.175494351E-38 a 3.402823466E+38"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"Un nombre de coma flotant de doble precisió, els valors permesos són de "
"-1.7976931348623157E+308 a -2.2250738585072014E-308, 0, i de "
"Un nombre de coma flotant de doble precisió, els valors permesos són de -"
"1.7976931348623157E+308 a -2.2250738585072014E-308, 0, i de "
"2.2250738585072014E-308 a 1.7976931348623157E+308"
#: libraries/Types.class.php:336
@ -5188,8 +5188,8 @@ msgstr ""
"Has triat el tipus d'autenticació [kbd]config[/kbd] i has inclós el nom "
"d'usuari i la contrasenya per connexions automàtiques, que es una opció no "
"recomanable per a servidors actius. Qualsevol que conegui la teva URL de "
"phpMyAdmin pot accedir al teu panel directament. Estableix el "
"%sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
"phpMyAdmin pot accedir al teu panel directament. Estableix el %"
"sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
#: libraries/config/ServerConfigChecks.class.php:437
#, php-format
@ -7528,8 +7528,9 @@ msgstr "avís Suoshin"
#| "Disable the default warning that is displayed on the Structure page if "
#| "column names in a table are reserved MySQL words"
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"Desactiva l'avís per defecte que es mostra a la pàgina de l'estructura si "
"els noms de les columnes a la taula són paraules reservades de MySQL"
@ -8210,12 +8211,12 @@ msgstr ", @TABLE@ serà el nom de la taula"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Aquest valor s'interpreta usant %1$sstrftime%2$s, pel que podeu usar les "
"cadenes de formateig de temps. A més, es faran aquestes transformacions: "
"%3$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s "
"cadenes de formateig de temps. A més, es faran aquestes transformacions: %3"
"$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s "
"per a més detalls."
#: libraries/display_export.lib.php:526
@ -8774,8 +8775,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
"Pots trobar la documentació i més informació sobre PBXT a la pàgina "
"principal de %sPrimeBase XT%s."
@ -9958,8 +9959,8 @@ msgstr "Benvingut a %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"La raó més probable d'aixó és que no heu creat l'arxiu de configuració. "
"Podreu voler utilitzar %1$ssetup script%2$s per crear-ne un."
@ -10510,7 +10511,7 @@ msgstr "Nom de les columnes: "
msgid "Invalid parameter for CSV import: %s"
msgstr "Paràmetre incorrecte per importació CSV: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@ -10520,13 +10521,13 @@ msgstr ""
"s'han escrit correctament, separats per comes i sense incloure'ls entre "
"cometes."
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Format incorrecte a l'entrada CSV a la línia %d."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Comptador de columnes incorrecte en l'entrada CSV a la línia %d."
@ -11075,14 +11076,14 @@ msgstr ""
msgid "no description"
msgstr "sense descripció"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "Falten taules de l'infraestructura de taules enllaçades de phpMyAdmin"
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@ -12502,8 +12503,8 @@ msgstr "Vista global d'usuaris"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Nota: phpMyAdmin obté els permisos de l'usuari directament de les taules de "
"permisos de MySQL. El contingut d'aquestes taules pot ser diferent dels "
@ -15529,8 +15530,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
"La taxa actual de memòria lluire del cau de consultes respecte la mida total "
"és de %s%%. Hauria de estar per sobre de 80%%"
@ -15688,8 +15689,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
"%s%% de totes les ordenacions causen taules temporals, aquest valor ha de "
"ser inferior al 10%%."
@ -16100,8 +16101,8 @@ msgstr ""
#, php-format
msgid "Immediate table locks: %s%%, this value should be above 95%%"
msgstr ""
"Bloquejos immediats de taula: %s%%, aquest valor ha d'estar per sobre del "
"95%%"
"Bloquejos immediats de taula: %s%%, aquest valor ha d'estar per sobre del 95%"
"%"
#: libraries/advisory_rules.txt:355
msgid "Table lock wait rate"
@ -16854,8 +16855,8 @@ msgstr "{concurrent_insert} està establert a 0"
#~ "%s."
#~ msgstr ""
#~ "No s'ha pogut iniciar el validador SQL. Si us plau, comproveu que teniu "
#~ "instal·lats els mòduls de PHP necessaris tal i com s'indica a la "
#~ "%sdocumentació%s."
#~ "instal·lats els mòduls de PHP necessaris tal i com s'indica a la %"
#~ "sdocumentació%s."
#, fuzzy
#~| msgid "Error: Relation not added."

View File

@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-10-29 18:21+0200\n"
"Last-Translator: Aso Naderi <aso.naderi@gmail.com>\n"
"Language-Team: Kurdish Sorani <https://hosted.weblate.org/projects/"
"phpmyadmin/master/ckb/>\n"
"Language: ckb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ckb\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 2.0-dev\n"
@ -266,8 +266,8 @@ msgstr "بنکەی دراوەی %1$s ڕوونووس کرا بۆ بنکەی در
msgid ""
"The phpMyAdmin configuration storage has been deactivated. %sFind out why%s."
msgstr ""
"ڕێکخستنەکانی بیرگەی phpMyAdmin ناچالاک کراوە. بۆ دۆزینەوەی کلیک لەمە بکە "
"%shere%s."
"ڕێکخستنەکانی بیرگەی phpMyAdmin ناچالاک کراوە. بۆ دۆزینەوەی کلیک لەمە بکە %"
"shere%s."
#: db_printview.php:48 db_tracking.php:124 db_tracking.php:264
#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:770
@ -617,11 +617,11 @@ msgstr ""
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"لەوانەیە تۆ هەوڵت دابێت فایلێک بە قەبارەیەکی زۆر بار بکەی. تکایە سەردانی "
"%ەڵگەسازی%s بکە بۆ چارەکردنی ئەم سنوردار کردنە."
"لەوانەیە تۆ هەوڵت دابێت فایلێک بە قەبارەیەکی زۆر بار بکەی. تکایە سەردانی %"
"sبەڵگەسازی%s بکە بۆ چارەکردنی ئەم سنوردار کردنە."
#: import.php:343 import.php:626
msgid "Showing bookmark"
@ -884,8 +884,8 @@ msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. %sFind out why%s. "
msgstr ""
"ڕێکخستنەکانی بیرگەی phpMyAdmin ناچالاک کراوە. بۆ دۆزینەوەی کلیک لەمە بکە "
"%shere%s."
"ڕێکخستنەکانی بیرگەی phpMyAdmin ناچالاک کراوە. بۆ دۆزینەوەی کلیک لەمە بکە %"
"shere%s."
#: index.php:542
msgid ""
@ -3192,25 +3192,25 @@ msgstr "پیشاندانی شوێندۆز"
msgid "Delete bookmark"
msgstr "گەڕانی خشتە"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr ""
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr ""
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3416,11 +3416,11 @@ msgstr "سیكوێڵ کیوریەکەت بەسەرکەوتوویی ئەنجام
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"لەم تێڕوانیینە بەلایەنی کەم ئەم ژمارە دێڕە بوونی هەیە.تکایە سەردانی "
"%ەڵگەسازی%s بکە ."
"لەم تێڕوانیینە بەلایەنی کەم ئەم ژمارە دێڕە بوونی هەیە.تکایە سەردانی %"
"sبەڵگەسازی%s بکە ."
#: libraries/DisplayResults.class.php:4492
#, fuzzy, php-format
@ -4348,14 +4348,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -7197,8 +7197,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -7802,8 +7803,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -8297,8 +8298,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -9441,8 +9442,8 @@ msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
@ -9945,20 +9946,20 @@ msgstr ""
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -10411,13 +10412,13 @@ msgstr ""
msgid "no description"
msgstr ""
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -11731,8 +11732,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
#: libraries/server_privileges.lib.php:4060
@ -14426,8 +14427,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -14545,8 +14546,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

View File

@ -5,15 +5,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2015-01-15 09:05+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Czech <https://hosted.weblate.org/projects/phpmyadmin/master/"
"cs/>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: cs\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 2.2-dev\n"
@ -607,8 +607,8 @@ msgstr "Chybí parametry"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Pravděpodobně jste se pokusili nahrát příliš velký soubor. Přečtěte si "
"prosím %sdokumentaci%s, jak toto omezení obejít."
@ -3096,27 +3096,27 @@ msgstr "Upravit uložené vyhledávání"
msgid "Delete bookmark"
msgstr "Odstranit uložené vyhledávání"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
"Server neodpovídá (nebo není správně nastaven lokální socket MySQL serveru)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "Server neodpovídá."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
"Prosím zkontrolujte přístupová práva u adresáře obsahujícího tuto databázi."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Podrobnosti…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Nepodařilo se připojit jako controluser, který je nadefinován v nastaveních."
@ -3316,8 +3316,8 @@ msgstr "Váš SQL-dotaz byl úspěšně vykonán."
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Tento pohled má alespoň tolik řádek. Podrobnosti naleznete v %sdokumentaci%s."
@ -4230,20 +4230,20 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"Číslo s pohyblivou desetinnou čárkou, podporované rozsahy od -3.402823466E"
"+38 od -1.175494351E-38, 0, a od 1.175494351E-38 do 3.402823466E+38"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"Číslo s pohyblivou desetinnou čárkou, podporované rozsahy od "
"-1.7976931348623157E+308 do -2.2250738585072014E-308, 0, a od "
"Číslo s pohyblivou desetinnou čárkou, podporované rozsahy od -"
"1.7976931348623157E+308 do -2.2250738585072014E-308, 0, a od "
"2.2250738585072014E-308 do 1.7976931348623157E+308"
#: libraries/Types.class.php:336
@ -5153,8 +5153,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
"Pokud to považujete za nutné, použijte další možnosti zabezpečení - "
"%somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení "
"Pokud to považujete za nutné, použijte další možnosti zabezpečení - %"
"somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení "
"založené na IP adresách nemusí být spolehlivé, pokud je vaše IP adresa "
"dynamicky přidělována poskytovatelem spolu s mnoha dalšími uživateli."
@ -7299,8 +7299,9 @@ msgstr "Varování o Suhosinu"
#| "Disable the default warning that is displayed on the Structure page if "
#| "column names in a table are reserved MySQL words."
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"Vypne varování o použití klíčového slova MySQL v názvu sloupce na stránce se "
"strukturou tabulky."
@ -7924,8 +7925,8 @@ msgstr ", @TABLE@ bude nahrazen jménem tabulky"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Tato hodnota je interpretována pomocí %1$sstrftime%2$s, takže můžete použít "
"libovolné řetězce pro formátování data a času. Dále budou provedena "
@ -8469,8 +8470,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
"Dokumentace a další informace o PBXT můžete nalézt na %sstránkách PrimeBase "
"XT%s."
@ -9600,8 +9601,8 @@ msgstr "Vítejte v %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Pravděpodobná příčina je, že nemáte vytvořený konfigurační soubor. Pro jeho "
"vytvoření by se vám mohl hodit %1$snastavovací skript%2$s."
@ -10113,7 +10114,7 @@ msgstr "Názvy polí: "
msgid "Invalid parameter for CSV import: %s"
msgstr "Neznámý parametr pro import CSV: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@ -10122,13 +10123,13 @@ msgstr ""
"Zadán chybný název pole (%s)! Ujistěte se, že jsou jména polí zapsána "
"správně, oddělena čárkami a nejsou uzavřena v uvozovkách."
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Chybný formát CSV dat na řádku %d."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Chybný počet polí v CSV datech na řádku %d."
@ -10639,14 +10640,14 @@ msgstr ""
msgid "no description"
msgstr "žádný popisek"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "Chybějící tabulky v úložišti nastavení phpMyAdmina"
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@ -11994,8 +11995,8 @@ msgstr "Přehled uživatelů"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Poznámka: phpMyAdmin získává oprávnění přímo z tabulek MySQL. Obsah těchto "
"tabulek se může lišit od oprávnění, která server právě používá, pokud byly "
@ -14155,8 +14156,8 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
"Více věcí můžete nastavit úpravou config.inc.php, např. použitím "
"%sNastavovacího skriptu%s."
"Více věcí můžete nastavit úpravou config.inc.php, např. použitím %"
"sNastavovacího skriptu%s."
#: prefs_manage.php:315
msgid "Save to browser's storage"
@ -14578,8 +14579,8 @@ msgid ""
"You have a slow query rate of %s per hour, you should have less than 1%% per "
"hour."
msgstr ""
"Četnost pomalých dotazů na tomto serveru je %s za hodinu, měla by být pod "
"1%%."
"Četnost pomalých dotazů na tomto serveru je %s za hodinu, měla by být pod 1%"
"%."
#: libraries/advisory_rules.txt:77
msgid "Long query time"
@ -14844,8 +14845,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
"V současné době je volno %s%% mezipaměti. Tato hodnota by se měla držet nad "
"80%%"
@ -14993,11 +14994,11 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
"%s%% všech řazení využilo dočasných tabulek, tato hodnota by měla být pod "
"10%%."
"%s%% všech řazení využilo dočasných tabulek, tato hodnota by měla být pod 10%"
"%."
#: libraries/advisory_rules.txt:218
msgid "Rate of sorts that cause temporary tables"

View File

@ -6,15 +6,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-11-14 19:10+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Welsh <https://hosted.weblate.org/projects/phpmyadmin/master/"
"cy/>\n"
"Language: cy\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: cy\n"
"Plural-Forms: nplurals=6; plural=(n==0) ? 0 : (n==1) ? 1 : (n==2) ? 2 : "
"(n==3) ? 3 :(n==6) ? 4 : 5;\n"
"X-Generator: Weblate 2.1-dev\n"
@ -642,11 +642,11 @@ msgstr ""
#: import.php:163
#, fuzzy, php-format
#| msgid ""
#| "You probably tried to upload too large file. Please refer to "
#| "%sdocumentation%s for ways to workaround this limit."
#| "You probably tried to upload too large file. Please refer to %"
#| "sdocumentation%s for ways to workaround this limit."
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Yn ôl pob tebyg, mae'r ffeil i rhy fawr i'w lanlwytho. Gweler y %sdogfennaeth"
"%s am ffyrdd i weithio o gwmpas y cyfyngiad hwn."
@ -3387,27 +3387,27 @@ msgstr "Dangos clustnod"
msgid "Delete bookmark"
msgstr "Dilëwch berthynas"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Dyw'r gweinydd ddim yn ymateb"
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Manylion…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3636,8 +3636,8 @@ msgstr "Cafodd eich ymholiad SQL ei gweithredu'n llwyddiannus"
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Mae gan yr olwg hon o leiaf y nifer hwn o resi. Gweler y %sdogfennaeth%s."
@ -4606,14 +4606,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -7638,8 +7638,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -8312,8 +8313,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -8831,8 +8832,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -10009,11 +10010,11 @@ msgstr "Croeso i %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r "
"%1$sgript gosod%2$s er mwyn ei chreu."
"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r %1"
"$sgript gosod%2$s er mwyn ei chreu."
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
msgid ""
@ -10567,20 +10568,20 @@ msgstr "Colofnau"
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -11049,13 +11050,13 @@ msgstr ""
msgid "no description"
msgstr ""
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -12465,8 +12466,8 @@ msgstr "Gorolwg"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
#: libraries/server_privileges.lib.php:4060
@ -15306,8 +15307,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -15440,8 +15441,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218
@ -16675,8 +16676,8 @@ msgstr ""
#~ msgid ""
#~ "Are you sure you want to disable all BLOB references for database %s?"
#~ msgstr ""
#~ "A ydych chi wir am analluogi pob cyfeiriad BLOB ar gyfer y gronfa ddata "
#~ "%s?"
#~ "A ydych chi wir am analluogi pob cyfeiriad BLOB ar gyfer y gronfa ddata %"
#~ "s?"
#~ msgid "View image"
#~ msgstr "Gweld delwedd"

View File

@ -3,15 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2015-01-09 23:31+0200\n"
"Last-Translator: Claus Svalekjaer <just.my.smtp.server@gmail.com>\n"
"Language-Team: Danish <https://hosted.weblate.org/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 2.2-dev\n"
@ -602,8 +602,8 @@ msgstr "Ukomplette parametre"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Du har sandsynligvis forsøgt at overføre en fil som er for stor. Se venligst "
"%sdokumentationen%s for måder at omgå denne begrænsning."
@ -1835,8 +1835,8 @@ msgid ""
"No columns in the central list. Make sure the Central columns list for "
"database %s has columns that are not present in the current table."
msgstr ""
"Ingen kolonner i centerlisten. Vær sikker på at centerlisten for databasen "
"%s har kolonner der ikke er i aktuel tabel."
"Ingen kolonner i centerlisten. Vær sikker på at centerlisten for databasen %"
"s har kolonner der ikke er i aktuel tabel."
#: js/messages.php:312
msgid "See more"
@ -3095,7 +3095,7 @@ msgstr "Opdater bogmærke"
msgid "Delete bookmark"
msgstr "Slet bogmærke"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@ -3103,19 +3103,19 @@ msgstr ""
"Serveren svarer ikke (eller den lokale servers socket er ikke korrekt "
"konfigureret)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "Serveren svarer ikke."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr "Tjek venligst privilegier for mappen som indeholder databasen."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Detaljer…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Forbindelse for kontrolbruger som defineret i din konfiguration slog fejl."
@ -3313,8 +3313,8 @@ msgstr "Din SQL-forespørgsel blev udført korrekt."
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Viewet har som minimum dette antal rækker. Se venligst %sdokumentationen%s."
@ -4225,20 +4225,20 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"Et lille, flydende decimaltal. Tilladte værdier er -3.402823466E+38 til "
"-1.175494351E-38, 0, samt 1.175494351E-38 til 3.402823466E+38"
"Et lille, flydende decimaltal. Tilladte værdier er -3.402823466E+38 til -"
"1.175494351E-38, 0, samt 1.175494351E-38 til 3.402823466E+38"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"Et dobbeltpræcisions, flydende decimaltal. Tilladte værdier er "
"-1.7976931348623157E+308 til -2.2250738585072014E-308, 0, samt "
"Et dobbeltpræcisions, flydende decimaltal. Tilladte værdier er -"
"1.7976931348623157E+308 til -2.2250738585072014E-308, 0, samt "
"2.2250738585072014E-308 til 1.7976931348623157E+308"
#: libraries/Types.class.php:336
@ -5168,10 +5168,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 det er nødvendigt, benyt da 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."
"Hvis du føler at det er nødvendigt, benyt da 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."
#: libraries/config/ServerConfigChecks.class.php:431
#, php-format
@ -5185,8 +5185,8 @@ msgstr ""
"Du har sat [kbd]config[/kbd] autentifikation og inkluderet brugernavn og "
"adgangskode for auto-login, hvilket er ikke en ønskværdig konfiguration for "
"produktionssystemer. Enhver som kender eller gætter din phpMyAdmin URL kan "
"direkte få adgang til dit phpMyAdmin panel for denne server. Sæt "
"%sautentifikationstype%s til [kbd]cookie[/kbd] eller [kbd]http[/kbd]."
"direkte få adgang til dit phpMyAdmin panel for denne server. Sæt %"
"sautentifikationstype%s til [kbd]cookie[/kbd] eller [kbd]http[/kbd]."
#: libraries/config/ServerConfigChecks.class.php:437
#, php-format
@ -7303,8 +7303,9 @@ msgstr "Suhosin advarsel"
#| "Disable the default warning that is displayed on the Structure page if "
#| "column names in a table are reserved MySQL words."
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"Deaktiver standardadvarslen, som vises på struktursiden, hvis kolonnenavne i "
"en tabel er reserverede MySQL-ord."
@ -7914,8 +7915,8 @@ msgstr ", @TABLE@ vil blive tabelnavnet"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Denne værdi fortolkes via %1$sstrftime%2$s, så du kan bruge tidsformatterede "
"strenge. Ydermere vil følgende transformationer foregå: %3$s. Anden tekst "
@ -8456,8 +8457,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
"Dokumentation og yderligere information om PBXT kan findes på %sPrimeBase XT "
"hjemmeside%s."
@ -9620,8 +9621,8 @@ msgstr "Velkommen til %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Sandsynlig årsag til dette er at du ikke har oprettet en konfigurationsfil. "
"Du kan bruge %1$sopsætningsscriptet%2$s til at oprette en."
@ -10138,7 +10139,7 @@ msgstr "Kolonnenavne: "
msgid "Invalid parameter for CSV import: %s"
msgstr "Ugyldigt parameter for CSV-import: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@ -10147,13 +10148,13 @@ msgstr ""
"Invalid kolonne (%s) angivet! Sørg for, at kolonnenavneer stavet korrekt, "
"adskilt med komma og ikke i citationstegn."
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Ugyldigt format for CSV-input på linie %d."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Ugyldigt kolonneantal i CSV-input på linie %d."
@ -10648,13 +10649,13 @@ msgstr ""
msgid "no description"
msgstr "ingen beskrivelse"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "%sOpret%s phpMyAdmin-konfigurationslageret i den aktuelle database."
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@ -12001,14 +12002,14 @@ msgstr "Oversigt over brugere"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Bemærk: phpMyAdmin henter brugernes privilegier direkte fra MySQLs "
"privilegietabeller. Indholdet af disse tabeller kan være forskelligt fra "
"privilegierne serveren i øjeblikket bruger hvis der er lavet manuelle "
"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne"
"%s før du fortsætter."
"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne%"
"s før du fortsætter."
#: libraries/server_privileges.lib.php:4060
msgid "The selected user was not found in the privilege table."
@ -14848,8 +14849,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
"Det aktuelle forhold mellem ledig og total forespørgselsmellemlager er %s%%. "
"Det bør være over 80%%"
@ -15003,8 +15004,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
"%s%% af alle sorteringer bruger midlertidige tabeller. Denne værdi bør være "
"mindre end 10%%."

103
po/de.po
View File

@ -3,15 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2015-02-03 10:43+0200\n"
"Last-Translator: Ann + J.M. <phpMyAdmin@ZweiSteinSoft.de>\n"
"Language-Team: German <https://hosted.weblate.org/projects/phpmyadmin/master/"
"de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: de\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 2.2-dev\n"
@ -605,11 +605,11 @@ msgstr "Unvollständige Parameter"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die "
"%sDokumentation%s zur Lösung diese Problems."
"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die %"
"sDokumentation%s zur Lösung diese Problems."
#: import.php:343 import.php:626
msgid "Showing bookmark"
@ -903,8 +903,8 @@ msgid ""
"extended features have been deactivated. %sFind out why%s. "
msgstr ""
"Der phpMyAdmin-Konfigurationsspeicher ist nicht vollständig konfiguriert, "
"einige erweiterte Funktionen wurden deaktiviert. %sFinden Sie heraus warum"
"%s. "
"einige erweiterte Funktionen wurden deaktiviert. %sFinden Sie heraus warum%"
"s. "
#: index.php:542
msgid ""
@ -3135,7 +3135,7 @@ msgstr "Lesezeichen aktualisieren"
msgid "Delete bookmark"
msgstr "Lesezeichen löschen"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@ -3143,21 +3143,21 @@ msgstr ""
"Der Server antwortet nicht (evtl. ist der Socket des lokalen MySQL-Servers "
"nicht korrekt konfiguriert)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "Der Server antwortet nicht."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
"Bitte prüfen Sie die Rechte des Verzeichnisses, in dem sich die Datenbank "
"befindet."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Details…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Verbindung für den controluser, wie er in Ihrer Konfiguration angegeben ist, "
@ -3358,8 +3358,8 @@ msgstr "Ihr SQL-Befehl wurde erfolgreich ausgeführt."
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Dieser Ansicht hat mindestens diese Anzahl von Datensätzen. Bitte lesen Sie "
"die %sDokumentation%s."
@ -4275,20 +4275,20 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"Eine kleine Fließkommazahl, erlaubte Werte sind -3,402823466E+38 bis "
"-1,175494351E-38, 0, und 1,175494351E-38 bis 3,402823466E+38"
"Eine kleine Fließkommazahl, erlaubte Werte sind -3,402823466E+38 bis -"
"1,175494351E-38, 0, und 1,175494351E-38 bis 3,402823466E+38"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"Eine Fließkommazahl mit doppelter Genauigkeit, erlaubte Werte sind "
"-1,7976931348623157E+308 bis -2,2250738585072014E-308, 0, und "
"Eine Fließkommazahl mit doppelter Genauigkeit, erlaubte Werte sind -"
"1,7976931348623157E+308 bis -2,2250738585072014E-308, 0, und "
"2,2250738585072014E-308 bis 1.7976931348623157E+308"
#: libraries/Types.class.php:336
@ -4328,8 +4328,8 @@ msgstr "Ein Datum, unterstützter Bereich ist %1$s bis %2$s"
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
"Eine Kombination aus Datum und Uhrzeit, unterstützter Bereich ist %1$s bis "
"%2$s"
"Eine Kombination aus Datum und Uhrzeit, unterstützter Bereich ist %1$s bis %2"
"$s"
#: libraries/Types.class.php:348
msgid ""
@ -5220,8 +5220,8 @@ msgid ""
"If using [kbd]cookie[/kbd] authentication and %sLogin cookie store%s is not "
"0, %sLogin cookie validity%s must be set to a value less or equal to it."
msgstr ""
"Falls Sie die [kbd]Cookie[/kbd]-Authentifizierung verwenden und der "
"%sLogincookiespeicher%s ungleich 0 ist, muss die %sLogincookie-Gültigkeit%s "
"Falls Sie die [kbd]Cookie[/kbd]-Authentifizierung verwenden und der %"
"sLogincookiespeicher%s ungleich 0 ist, muss die %sLogincookie-Gültigkeit%s "
"auf den gleichen oder einen niedrigeren Wert gesetzt sein."
#: libraries/config/ServerConfigChecks.class.php:423
@ -5250,8 +5250,8 @@ msgstr ""
"Sie haben die [kbd]config[/kbd] Authentifizierung gewählt und einen "
"Benutzernamen und Passwort für Auto-Login eingegeben, was für Server im "
"Internet nicht wünschenswert ist. Jeder, der Ihre phpMyAdmin-URL kennt oder "
"errät, kann direkt auf Ihre phpMyAdmin-Oberfläche zugreifen. Setzen Sie den "
"%sAuthentifizierungstyp%s auf [kbd]cookie[/kbd] oder [kbd]http[/kbd]."
"errät, kann direkt auf Ihre phpMyAdmin-Oberfläche zugreifen. Setzen Sie den %"
"sAuthentifizierungstyp%s auf [kbd]cookie[/kbd] oder [kbd]http[/kbd]."
#: libraries/config/ServerConfigChecks.class.php:437
#, php-format
@ -7390,8 +7390,9 @@ msgstr "Suhosin Warnhinweis"
#| "Disable the default warning that is displayed on the Structure page if "
#| "column names in a table are reserved MySQL words."
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"Standardhinweis der Struktur-Seite unterdrücken, wenn Spaltennamen in einer "
"Tabelle reservierte MySQL-Wörter sind."
@ -8010,8 +8011,8 @@ msgstr ", @TABLE@ wird durch den Tabellennamen ersetzt"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Dieser Wert wird mit %1$sstrftime%2$s geparst. Sie können also Platzhalter "
"für Datum und Uhrzeit verwenden. Darüber hinaus werden folgende Umformungen "
@ -8560,8 +8561,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
"Dokumentation und weitere Informationen über PBXT sind auf der %sPrimeBase "
"XT-Website%s verfügbar."
@ -9737,8 +9738,8 @@ msgstr "Willkommen bei %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Sie haben möglicherweise noch keine Konfigurationsdatei erstellt. Sei können "
"das %1$sSetup-Skript%2$s verwenden, um eine zu erstellen."
@ -10261,7 +10262,7 @@ msgstr "Spaltennamen: "
msgid "Invalid parameter for CSV import: %s"
msgstr "Ungültiger Parameter für CSV-Import: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@ -10271,13 +10272,13 @@ msgstr ""
"richtig geschrieben, durch Kommata getrennt und nicht von Anführungszeichen "
"eingeschlossen sind."
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Ungültiges Format in Zeile %d."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Ungültige Anzahl an Spalten im CSV-Import in Zeile %d."
@ -10788,7 +10789,7 @@ msgstr ""
msgid "no description"
msgstr "keine Beschreibung"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
@ -10796,7 +10797,7 @@ msgstr ""
"%sErzeuge%s die PhpMyAdmin-Konfigurationsspeicherung in der aktuellen "
"Datenbank."
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr "Fehlende phpMyAdmin-Konfigurationsspeicher-Tabellen %sanlegen%s."
@ -12170,8 +12171,8 @@ msgstr "Benutzerübersicht"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Hinweis: phpMyAdmin liest die Benutzerprofile direkt aus den entsprechenden "
"MySQL-Tabellen aus. Der Inhalt dieser Tabellen kann sich von den "
@ -15063,8 +15064,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
"Das aktuelle Verhältnis von freiem Abfrage-Zwischenspeicher zur Größe des "
"gesamten Abfrage-Zwischenspeichers ist %s%%. Es sollte über 80%% betragen"
@ -15221,8 +15222,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
"%s%% aller Sortierungen verursachen temporäre Tabellen, dieser Wert sollte "
"kleiner als 10%% sein."
@ -17300,8 +17301,8 @@ msgstr "concurrent_insert ist auf 0 gesetzt"
#~ "directory %s."
#~ msgstr ""
#~ "Die Unterstützung für Oberflächendesigns ist deaktiviert. Bitte "
#~ "überprüfen Sie Ihre Konfiguration und / oder Ihre Designs im Verzeichnis "
#~ "%s."
#~ "überprüfen Sie Ihre Konfiguration und / oder Ihre Designs im Verzeichnis %"
#~ "s."
#~ msgid "Switch to"
#~ msgstr "Wechseln zu"

173
po/el.po
View File

@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"PO-Revision-Date: 2015-02-05 21:05+0200\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2015-02-06 14:19+0200\n"
"Last-Translator: Παναγιώτης Παπάζογλου <papaz_p@yahoo.com>\n"
"Language-Team: Greek "
"<https://hosted.weblate.org/projects/phpmyadmin/master/el/>\n"
@ -587,8 +587,8 @@ msgid ""
"Choose \"GeomFromText\" from the \"Function\" column and paste the string "
"below into the \"Value\" field."
msgstr ""
"Επιλέξτε το «GeomFromText» από τη στήλη «Function» και επικολλήστε το "
"παρακάτω κείμενο στο πεδίο «Value»."
"Επιλέξτε το «GeomFromText» από τη στήλη «Function» και επικολλήστε το παρακάτω "
"κείμενο στο πεδίο «Value»."
#: import.php:54
msgid "Succeeded"
@ -605,11 +605,11 @@ msgstr "Ελλιπείς παράμετροι"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Πιθανόν προσπαθήσατε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην "
"%sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού."
"Πιθανόν προσπαθήσατε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην %"
"sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού."
#: import.php:343 import.php:626
msgid "Showing bookmark"
@ -850,22 +850,16 @@ msgstr ""
"αποτελέσματα."
#: index.php:488
#| msgid ""
#| "Your PHP parameter [a@http://php.net/manual/en/session.configuration."
#| "php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower "
#| "than cookie validity configured in phpMyAdmin, because of this, your "
#| "login will expire sooner than configured in phpMyAdmin."
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than "
"cookie validity configured in phpMyAdmin, because of this, your login might "
"expire sooner than configured in phpMyAdmin."
msgstr ""
"Η παράμετρος PHP "
"[a@http://php.net/manual/en/session.configuration.php#ini.session.gc-"
"maxlifetime@_blank]session.gc_maxlifetime[/a] είναι μικρότερη από την "
"ρυθμισμένη εγκυρότητα cookie στο phpMyAdmin. Εξαιτίας αυτού, η σύνδεσή σας "
"ίσως λήξει νωρίτερα από ό,τι ρυθμίστηκε στο phpMyAdmin."
"Η παράμετρος PHP [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] είναι μικρότερη από "
"την ρυθμισμένη εγκυρότητα cookie στο phpMyAdmin. Εξαιτίας αυτού, η σύνδεσή "
"σας ίσως λήξει νωρίτερα από ό,τι ρυθμίστηκε στο phpMyAdmin."
#: index.php:501
msgid ""
@ -2783,8 +2777,8 @@ msgstr "Μη έγκυρη χαρακτήρες στη γραμμή %s."
#, php-format
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"."
msgstr ""
"Μη έγκυρος χαρακτήρας στη γραμμή %1$s. Αναμενότας στηλοθέτης, αλλά βρέθηκε "
"«%2$s»."
"Μη έγκυρος χαρακτήρας στη γραμμή %1$s. Αναμενότας στηλοθέτης, αλλά βρέθηκε «%2"
"$s»."
#: libraries/Advisor.class.php:475
msgid "per second"
@ -3115,7 +3109,7 @@ msgstr "Ενημέρωση σελιδοδείκτη"
msgid "Delete bookmark"
msgstr "Διαγραφή σελιδοδείκτη"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@ -3123,19 +3117,19 @@ msgstr ""
"Ο διακομιστής δεν αποκρίνεται (ή ο τοπικός διακομιστής δεν έχει ρυθμιστεί "
"σωστά)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "Ο διακομιστής δεν αποκρίνεται."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr "Ελέξτε τα δικαιώματα του φακέλου που περιέχει τη βάση δεδομένων."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Λεπτομέρειες…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr "Ανεπιτυχής σύνδεση του χρήστη ελέγχου όπως ορίστηκε στη ρύθμισή σας."
@ -3332,11 +3326,11 @@ msgstr "Η εντολή SQL εκτελέσθηκε επιτυχώς."
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην "
"%sτεκμηρίωση%s."
"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην %"
"sτεκμηρίωση%s."
#: libraries/DisplayResults.class.php:4492
#, php-format
@ -4251,21 +4245,21 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"Ένας μικρός αριθμός κινητής υποδιαστολής, επιτρεπτές τιμές είναι "
"-3.402823466E+38 έως -1.175494351E-38, 0, και 1.175494351E-38 έως "
"3.402823466E+38"
"Ένας μικρός αριθμός κινητής υποδιαστολής, επιτρεπτές τιμές είναι -"
"3.402823466E+38 έως -1.175494351E-38, 0, και 1.175494351E-38 έως 3.402823466E"
"+38"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"Ένας αριθμός κινητής υποδιαστολής διπλής ακρίβειας, επιτρεπτές τιμές είναι "
"-1.7976931348623157E+308 έως -2.2250738585072014E-308, 0, και "
"Ένας αριθμός κινητής υποδιαστολής διπλής ακρίβειας, επιτρεπτές τιμές είναι -"
"1.7976931348623157E+308 έως -2.2250738585072014E-308, 0, και "
"2.2250738585072014E-308 έως 1.7976931348623157E+308"
#: libraries/Types.class.php:336
@ -4575,7 +4569,6 @@ msgid "Create PHP Code"
msgstr "Δημιουργία κώδικα PHP"
#: libraries/Util.class.php:1275
#| msgid "Edit index"
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "Επεξεργασία εσωτερικά"
@ -5172,8 +5165,8 @@ msgid ""
"%sLogin cookie validity%s greater than %ssession.gc_maxlifetime%s may cause "
"random session invalidation (currently session.gc_maxlifetime is %d)."
msgstr ""
"Αν η %sLogin cookie validity%s είναι μεγαλύτερη από %ssession.gc_maxlifetime"
"%s μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας (το τρέχον session."
"Αν η %sLogin cookie validity%s είναι μεγαλύτερη από %ssession.gc_maxlifetime%"
"s μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας (το τρέχον session."
"gc_maxlifetime είναι %d)."
#: libraries/config/ServerConfigChecks.class.php:410
@ -5458,8 +5451,8 @@ msgid ""
"Whether a warning (\"Are your really sure…\") should be displayed when "
"you're about to lose data."
msgstr ""
"Όταν μια προειδοποίηση («Είστε σίγουρος/η…») πρέπει να προβάλετε αν "
"πρόκειται να χαθούν δεδομένα."
"Όταν μια προειδοποίηση («Είστε σίγουρος/η…») πρέπει να προβάλετε αν πρόκειται "
"να χαθούν δεδομένα."
#: libraries/config/messages.inc.php:79
msgid "Confirm DROP queries"
@ -7220,8 +7213,7 @@ msgstr "Φιλοχρηστικό όνομα διακομιστή"
#: libraries/config/messages.inc.php:723
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
"Αν θα εμφανίζεται στο χρήστη ένα κουμπί «εμφάνιση όλων (των εγγραφών)»."
msgstr "Αν θα εμφανίζεται στο χρήστη ένα κουμπί «εμφάνιση όλων (των εγγραφών)»."
#: libraries/config/messages.inc.php:724
msgid "Allow to display all the rows"
@ -7374,18 +7366,18 @@ msgstr "προειδοποίηση Suhosin"
#: libraries/config/messages.inc.php:757
#| msgid ""
#| "Disable the default warning that is displayed on the Structure page if "
#| "column names in a table are reserved MySQL words."
#| "Disable the default warning that is displayed on the main page if session."
#| "gc_maxlifetime is less than `LoginCookieValidity`."
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"Απενεργοποστε την προεπιλεγμένη προειδοποίηση που εμφανίζεται στη βασική "
"σελίδα αν το session.gc_maxlifetime είναι λιγότερο από το "
"«LoginCookieValidity»."
"σελίδα αν η τιμή της ρύθμισης PHP session.gc_maxlifetime είναι λιγότερο από "
"την τιμή του «LoginCookieValidity»."
#: libraries/config/messages.inc.php:758
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "Προειδοποίηση εγκυρότητας cookie σύνδεσης"
@ -7509,8 +7501,7 @@ msgstr ""
"Το url του διακομιστή για χρήση όταν λαμβάνονται οι πληροφορίες για την "
"τελευταία έκδοση του phpMyAdmin ή όταν υποβάλλονται αναφορές σφάλματος. Το "
"χρειάζεστε αν ο διακομιστής που έχει εγκατασταθεί το phpMyAdmin δεν έχει "
"άμεση πρόσβαση στο διαδίκτυο. Η σύνταξη είναι: «όνομαδιακομιστή:"
"αριθμόςθύρας»."
"άμεση πρόσβαση στο διαδίκτυο. Η σύνταξη είναι: «όνομαδιακομιστή:αριθμόςθύρας»."
#: libraries/config/messages.inc.php:783
msgid "Proxy url"
@ -7998,8 +7989,8 @@ msgstr ", το @TABLE@ θα γίνει το όνομα του πίνακα"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Αυτή η τιμή μετατρέπεται με χρήση της συνάρτησης %1$sstrftime%2$s, έτσι "
"μπορείτε να χρησιμοποιήσετε φράσεις μορφής χρόνου. Επιπρόσθετα, θα γίνουν "
@ -8552,11 +8543,11 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
"Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην "
"%sΙστοσελίδα του PrimeBase XT%s."
"Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην %"
"sΙστοσελίδα του PrimeBase XT%s."
#: libraries/engines/pbxt.lib.php:138
msgid "Related Links"
@ -9382,8 +9373,8 @@ msgid ""
"In order to put the original table '%1$s' into Second normal form we need to "
"create the following tables:"
msgstr ""
"Με σκοπό την τοποθέτηση του αρχικού πίνακα «%1$s» στην Δεύτερη κανονική "
"μορφή χρειαζόμαστε να δημιουργήσουμε τους ακόλουθους πίνακες:"
"Με σκοπό την τοποθέτηση του αρχικού πίνακα «%1$s» στην Δεύτερη κανονική μορφή "
"χρειαζόμαστε να δημιουργήσουμε τους ακόλουθους πίνακες:"
#: libraries/normalization.lib.php:417
#, php-format
@ -9716,8 +9707,8 @@ msgstr "Καλωσήρθατε στο %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Πιθανή αιτία για αυτό είναι η μη δημιουργία αρχείου προσαρμογής. Ίσως θέλετε "
"να χρησιμοποιήσετε τον %1$sκώδικα εγκατάστασηςt%2$s για να δημιουργήσετε ένα."
@ -10238,7 +10229,7 @@ msgstr "Ονόματα στηλών: "
msgid "Invalid parameter for CSV import: %s"
msgstr "Μη έγκυρη παράμετρος στο εισαχθέν CSV: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@ -10247,13 +10238,13 @@ msgstr ""
"Ορίστηκε μη έγκυρη στήλη (%s)! Σιγουρευτείτε ότι τα ονόματα στηλών ορίζονται "
"σωστά, χωρίζονται με κόμμα δεν περιέχονται σε εισαγωγικά."
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Μη έγκυρη μορφή στο εισαχθέν CSV στη γραμμή %d."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Μη έγκυρο πλήθος στηλών στο εισαχθέν CSV στη γραμμή %d."
@ -10409,8 +10400,8 @@ msgid ""
"Converts Boolean values to text (default 'T' and 'F'). First option is for "
"TRUE, second for FALSE. Nonzero=true."
msgstr ""
"Μετατρέπει Δυαδικές τιμές σε κείμενο (Προεπιλογή «T» και «F»). Η πρώτη "
πιλογή είναι για το ΑΛΗΘΕΣ, η δεύτερη για το ΨΕΥΔΕΣ. Nonzero=true."
"Μετατρέπει Δυαδικές τιμές σε κείμενο (Προεπιλογή «T» και «F»). Η πρώτη επιλογή "
"είναι για το ΑΛΗΘΕΣ, η δεύτερη για το ΨΕΥΔΕΣ. Nonzero=true."
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:31
msgid ""
@ -10429,8 +10420,8 @@ msgstr ""
"επιλογή για να ορίσετε μια μορφή ημερομηνίας-ώρας. Η τρίτη επιλογή ορίζει αν "
"θέλετε να δείτε την τοπική ή την παγκόσμια ώρα (χρήση «local» ή «utc» "
"αντίστοιχα). Σύμφωνα με αυτό, η μορφή της ημερομηνίας έχει διαφορετική τιμή "
"- για το «local» δείτε την τεκμηρίωση για τη συνάρτηση strftime() της PHP "
"και για το «utc» γίνεται χρησιμοποιώντας τη συνάρτηση gmdate()."
"- για το «local» δείτε την τεκμηρίωση για τη συνάρτηση strftime() της PHP και "
"για το «utc» γίνεται χρησιμοποιώντας τη συνάρτηση gmdate()."
#: libraries/plugins/transformations/abstract/DownloadTransformationsPlugin.class.php:31
msgid ""
@ -10591,7 +10582,6 @@ msgstr ""
"ένας τίτλος για τον σύνδεσμο."
#: libraries/plugins/transformations/output/Text_Plain_Json.class.php:38
#| msgid "Formats text as SQL query with syntax highlighting."
msgid "Formats text as JSON with syntax highlighting."
msgstr "Μορφοποιεί το κείμενο ως JSON με επισήμανση της σύνταξης."
@ -10756,7 +10746,7 @@ msgstr ""
msgid "no description"
msgstr "χωρίς περιγραφή"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
@ -10764,7 +10754,7 @@ msgstr ""
"%sΔημιουργία%s του τρέχοντος χώρου αποθήκευσης ρυθμίσεων του phpMyAdmin στην "
"τρέχουσα βάση δεδομένων."
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -12134,8 +12124,8 @@ msgstr "Επισκόπηση χρηστών"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Σημείωση: Το phpMyAdmin διαβάζει τα δικαιώματα των χρηστών κατευθείαν από "
"τους πίνακες δικαιωμάτων της MySQL. Το περιεχόμενο αυτών των πινάκων μπορεί "
@ -12295,8 +12285,8 @@ msgid ""
msgstr ""
"Η Εποπτεία phpMyAdmin μπορεί να σας βοηθήσει να βελτιστοποιήσετε τη ρύθμιση "
"του διακομιστή και να καταγράφει χρονοβόρα ερωτήματα. Για το τελευταίο θα "
"χρειαστείτε να ορίσετε το log_output σε «TABLE» και να έχετε ενεργοποιήσει "
"το slow_query_log ή το general_log. Σημειώστε, ωστόσο, ότι το general_log "
"χρειαστείτε να ορίσετε το log_output σε «TABLE» και να έχετε ενεργοποιήσει το "
"slow_query_log ή το general_log. Σημειώστε, ωστόσο, ότι το general_log "
"παράγει πολλά δεδομένα και αυξάνει τη χρήση πόρων του διακομιστή μέχρι και "
"15%."
@ -13814,7 +13804,6 @@ msgid "Storage Engine:"
msgstr "Μηχανή αποθήκευσης:"
#: libraries/tbl_columns_definition_form.lib.php:81
#| msgid "Connections"
msgid "Connection:"
msgstr "Σύνδεση:"
@ -14956,8 +14945,8 @@ msgid ""
msgstr ""
"Η λανθάνουσα μνήμη ερωτήματος είναι γνωστό ότι βελτιώνει σημαντικά την "
"απόδοση, αν ρυθμιστεί σωστά. Ενεργοποιήστε τη ορίζοντας το "
"{query_cache_size} με μια διψήφια τιμής ΜΒ και το {query_cache_type} σε "
"«ΟΝ». <b>Σημείωση:</b> Αν χρησιμοποιείτε memcached, αγνοήστε την πρόταση."
"{query_cache_size} με μια διψήφια τιμής ΜΒ και το {query_cache_type} σε «ΟΝ». "
"<b>Σημείωση:</b> Αν χρησιμοποιείτε memcached, αγνοήστε την πρόταση."
#: libraries/advisory_rules.txt:158
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
@ -15038,8 +15027,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
"Η τρέχουσα αναλογία της ελεύθερης λανθάνουσας μνήμης ερωτήματος προς τη "
"συνολική λανθάνουσα μνήμη ερωτήματος είναι %s%%. Πρέπει να είναι περισσότερο "
@ -15116,8 +15105,8 @@ msgid ""
"value is, the better (This rules firing limit: 0.1%%)"
msgstr ""
"Ο βαθμός απομακρυσμένων ερωτημάτων προς τα εισερχόμενα ερωτήματα είναι %s%%. "
"Όσο χαμηλότερη αυτή η τιμή, τόσο το καλύτερο (Το όριο συναγερμού είναι: "
"0,1%%)"
"Όσο χαμηλότερη αυτή η τιμή, τόσο το καλύτερο (Το όριο συναγερμού είναι: 0,1%"
"%)"
#: libraries/advisory_rules.txt:195
msgid "Query cache max size"
@ -15201,8 +15190,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
"Το %s%% όλων των ταξινομήσεων προκαλεί προσωρινούς πίνακες, αυτή η τιμή "
"πρέπει να είναι κάτω από 10%%."
@ -15770,8 +15759,8 @@ msgstr ""
#, php-format
msgid "%s%% of all connections are aborted. This value should be below 1%%"
msgstr ""
"%s%% όλων των συνδέσεων ματαιώνονται. Αυτή η τιμή πρέπει να είναι κάτω από "
"1%%"
"%s%% όλων των συνδέσεων ματαιώνονται. Αυτή η τιμή πρέπει να είναι κάτω από 1%"
"%"
#: libraries/advisory_rules.txt:406
msgid "Rate of aborted connections"
@ -17014,8 +17003,8 @@ msgstr "Το concurrent_insert έχει οριστεί στο 0"
#~ msgid ""
#~ "Are you sure you want to disable all BLOB references for database %s?"
#~ msgstr ""
#~ "Θέλετε να απενεργοποιήσετε όλες τις αναφορές BLOB για τη βάση δεδομένων "
#~ "%s;"
#~ "Θέλετε να απενεργοποιήσετε όλες τις αναφορές BLOB για τη βάση δεδομένων %"
#~ "s;"
#~ msgid "Unknown error while uploading."
#~ msgstr "Άγνωστο σφάλμα κατά την αποστολή αρχείου."

View File

@ -5,15 +5,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2015-01-06 18:52+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: English (United Kingdom) <https://hosted.weblate.org/projects/"
"phpmyadmin/master/en_GB/>\n"
"Language: en_GB\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: en_GB\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 2.2-dev\n"
@ -611,11 +611,11 @@ msgstr "complete inserts"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
#: import.php:343 import.php:626
msgid "Showing bookmark"
@ -3218,7 +3218,7 @@ msgstr "Update bookmark"
msgid "Delete bookmark"
msgstr "Delete bookmark"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@ -3226,19 +3226,19 @@ msgstr ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "The server is not responding."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr "Please check privileges of directory containing database."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Details…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr "Connection for controluser as defined in your configuration failed."
@ -3435,11 +3435,11 @@ msgstr "Your SQL query has been executed successfully."
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
#: libraries/DisplayResults.class.php:4492
#, php-format
@ -4349,20 +4349,20 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
#: libraries/Types.class.php:336
@ -7434,8 +7434,9 @@ msgstr "Suhosin warning"
#| "Disable the default warning that is displayed on the Structure page if "
#| "column names in a table are reserved MySQL words."
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@ -8062,12 +8063,12 @@ msgstr ", @TABLE@ will become the table name"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
#: libraries/display_export.lib.php:526
msgid "use this for future exports"
@ -8617,11 +8618,11 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
#: libraries/engines/pbxt.lib.php:138
msgid "Related Links"
@ -9748,11 +9749,11 @@ msgstr "Welcome to %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
msgid ""
@ -10266,7 +10267,7 @@ msgstr "Column names: "
msgid "Invalid parameter for CSV import: %s"
msgstr "Invalid parameter for CSV import: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@ -10275,13 +10276,13 @@ msgstr ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Invalid format of CSV input on line %d."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Invalid column count in CSV input on line %d."
@ -10809,14 +10810,14 @@ msgstr "Re-login to phpMyAdmin to load the updated configuration file."
msgid "no description"
msgstr "no description"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "Missing phpMyAdmin configuration storage tables"
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@ -12163,13 +12164,13 @@ msgstr "Users overview"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
#: libraries/server_privileges.lib.php:4060
msgid "The selected user was not found in the privilege table."
@ -15043,11 +15044,11 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
#: libraries/advisory_rules.txt:181
msgid "Query cache fragmentation"
@ -15197,11 +15198,11 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
#: libraries/advisory_rules.txt:218
msgid "Rate of sorts that cause temporary tables"

View File

@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2015-01-01 17:51+0200\n"
"Last-Translator: Eliovir <eliovir@gmail.com>\n"
"Language-Team: Esperanto <https://hosted.weblate.org/projects/phpmyadmin/"
"master/eo/>\n"
"Language: eo\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: eo\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 2.2-dev\n"
@ -597,8 +597,8 @@ msgstr ""
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
#: import.php:343 import.php:626
@ -2958,25 +2958,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr ""
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr ""
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3173,8 +3173,8 @@ msgstr ""
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
#: libraries/DisplayResults.class.php:4492
@ -4057,14 +4057,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -6842,8 +6842,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -7421,8 +7422,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -7904,8 +7905,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -8998,8 +8999,8 @@ msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
@ -9480,20 +9481,20 @@ msgstr ""
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -9925,13 +9926,13 @@ msgstr ""
msgid "no description"
msgstr ""
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -11231,8 +11232,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
#: libraries/server_privileges.lib.php:4060
@ -13795,8 +13796,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -13914,8 +13915,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

271
po/es.po
View File

@ -3,12 +3,12 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"PO-Revision-Date: 2015-02-04 09:52+0200\n"
"Last-Translator: Jorge Famma Tinoco Gomez <revistafammatvmusic.oficial@gmail."
"com>\n"
"Language-Team: Spanish <https://hosted.weblate.org/projects/phpmyadmin/"
"master/es/>\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2015-02-07 05:30+0200\n"
"Last-Translator: FAMMA TV NOTICIAS MEDIOS DE CO "
"<revistafammatvmusic.oficial@gmail.com>\n"
"Language-Team: Spanish "
"<https://hosted.weblate.org/projects/phpmyadmin/master/es/>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -259,8 +259,8 @@ msgstr "Se copió la base de datos %1$s a %2$s."
msgid ""
"The phpMyAdmin configuration storage has been deactivated. %sFind out why%s."
msgstr ""
"El almacenamiento de la configuración de phpMyAdmin ha sido desactivado. "
"%sAverigüe por qué%s."
"El almacenamiento de la configuración de phpMyAdmin ha sido desactivado. %"
"sAverigüe por qué%s."
#: db_printview.php:48 db_tracking.php:124 db_tracking.php:264
#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:770
@ -590,8 +590,8 @@ msgid ""
"Choose \"GeomFromText\" from the \"Function\" column and paste the string "
"below into the \"Value\" field."
msgstr ""
"Seleccione «GeomFromText» de la columna \"Función\" y pegue la cadena "
"ubicada debajo en el campo \"Valor\"."
"Seleccione «GeomFromText» de la columna \"Función\" y pegue la cadena ubicada "
"debajo en el campo \"Valor\"."
#: import.php:54
msgid "Succeeded"
@ -608,8 +608,8 @@ msgstr "Parámetros incompletos"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Probablemente intentó cargar un archivo demasiado grande. Revise %sla "
"documentation%s para hallar modos de superar esta limitación."
@ -853,7 +853,6 @@ msgstr ""
"de caracteres sin la extensión mbstring y podría dar resultados inesperados."
#: index.php:488
#, fuzzy
#| msgid ""
#| "Your PHP parameter [a@http://php.net/manual/en/session.configuration."
#| "php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower "
@ -865,10 +864,11 @@ msgid ""
"cookie validity configured in phpMyAdmin, because of this, your login might "
"expire sooner than configured in phpMyAdmin."
msgstr ""
"El parámetro [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] es menor que la "
"validez de la cookie configurada en phpMyAdmin. Por ello, la sesión expirará "
"antes de lo configurado en phpMyAdmin."
"El parámetro "
"[a@http://php.net/manual/en/session.configuration.php#ini.session.gc-"
"maxlifetime@_blank]session.gc_maxlifetime[/a] es menor que la validez de la "
"cookie configurada en phpMyAdmin. Por ello, la sesión expirará antes de lo "
"configurado en phpMyAdmin."
#: index.php:501
msgid ""
@ -905,8 +905,8 @@ msgid ""
"extended features have been deactivated. %sFind out why%s. "
msgstr ""
"El almacenamiento de configuración phpMyAdmin no está completamente "
"configurado, algunas funcionalidades extendidas fueron deshabilitadas. "
"%sAverigüe por qué%s. "
"configurado, algunas funcionalidades extendidas fueron deshabilitadas. %"
"sAverigüe por qué%s. "
#: index.php:542
msgid ""
@ -1664,9 +1664,8 @@ msgid "Test"
msgstr "Prueba"
#: js/messages.php:249
#, fuzzy
msgid "Formatting SQL..."
msgstr "Formatting SQL..."
msgstr "Formato SQL..."
#: js/messages.php:253 libraries/db_designer.lib.php:823
#: libraries/db_designer.lib.php:872 libraries/db_designer.lib.php:1016
@ -1683,7 +1682,7 @@ msgstr "Cargando…"
#: js/messages.php:257
msgid "Request Aborted!!"
msgstr "¡Pedido cancelado!"
msgstr "Petición abortado!!"
#: js/messages.php:258
msgid "Processing Request"
@ -1927,8 +1926,8 @@ msgid ""
"Note: a, b -> d,f implies values of columns a and b combined together can "
"determine values of column d and column f."
msgstr ""
"Nota: «a, b -> d, f» implica que los valores combinados de las columnas a y "
"b pueden determinar el valor de las columnas d y f."
"Nota: «a, b -> d, f» implica que los valores combinados de las columnas a y b "
"pueden determinar el valor de las columnas d y f."
#: js/messages.php:328
msgid "No partial dependencies selected!"
@ -2360,41 +2359,39 @@ msgid "Unlink from main panel"
msgstr "Deshacer enlace en el panel principal"
#: js/messages.php:479
#, fuzzy
msgid "To filter all databases on server, press Enter after a search term"
msgstr "To filter all databases on server, press Enter after a search term"
msgstr ""
"Para filtrar todas las bases de datos en servidor, presione Enter después de "
"un término de búsqueda"
#: js/messages.php:480
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr "To filter all %s in database, press Enter after a search term"
msgstr ""
"Para filtrar los %s en base de datos, presione Enter después de un término "
"de búsqueda"
#: js/messages.php:481
#, fuzzy
#| msgid "Tables"
msgid "tables"
msgstr "Tablas"
msgstr "mesas"
#: js/messages.php:482
#, fuzzy
#| msgid "Views"
msgid "views"
msgstr "Vistas"
#: js/messages.php:483
#, fuzzy
#| msgid "Procedures"
msgid "procedures"
msgstr "Procedimientos"
msgstr "procedimientos"
#: js/messages.php:484
#, fuzzy
#| msgid "event"
msgid "events"
msgstr "evento"
msgstr "eventos"
#: js/messages.php:485
#, fuzzy
#| msgid "Functions"
msgid "functions"
msgstr "Funciones"
@ -3136,7 +3133,7 @@ msgstr "Actualizar favorito"
msgid "Delete bookmark"
msgstr "Eliminar favorito"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@ -3144,19 +3141,19 @@ msgstr ""
"El servidor no está respondiendo (o el zócalo local al servidor MySQL no "
"está configurado correctamente)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "El servidor no está respondiendo."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr "Revisa los permisos del directorio que contiene la base de datos."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Detalles…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"La conexión para controluser, como está definida en su configuración, "
@ -3359,11 +3356,11 @@ msgstr "Su consulta se ejecutó con éxito."
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Esta vista tiene al menos este número de filas. Refiérase a la "
"%sdocumentation%s."
"Esta vista tiene al menos este número de filas. Refiérase a la %"
"sdocumentation%s."
#: libraries/DisplayResults.class.php:4492
#, php-format
@ -4278,16 +4275,16 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"Un número de coma flotante pequeño; los valores posibles son de -3.402823466E"
"+38 a -1.175494351E-38, 0 y de 1.175494351E-38 a 3.402823466E+38"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"Un número de coma flotante de precisión doble; los valores permitidos son de "
@ -4331,8 +4328,8 @@ msgstr "Una fecha, el rango válido es de «%1$s» a «%2$s»"
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
"Una combinación de fecha y marca temporal, el rango válido es de «%1$s» a "
"«%2$s»"
"Una combinación de fecha y marca temporal, el rango válido es de «%1$s» a «%2"
"$s»"
#: libraries/Types.class.php:348
msgid ""
@ -4432,8 +4429,8 @@ msgid ""
"A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a "
"one-byte prefix indicating the length of the value"
msgstr ""
"Una columna de bloque de texto («BLOB») con una longitud máxima de 255 (2^8 "
"- 1) bytes. Cada valor TINYBLOB es almacenado con un prefijo de 1 byte que "
"Una columna de bloque de texto («BLOB») con una longitud máxima de 255 (2^8 - "
"1) bytes. Cada valor TINYBLOB es almacenado con un prefijo de 1 byte que "
"indica la cantidad de bytes en el valor"
#: libraries/Types.class.php:372
@ -4459,9 +4456,9 @@ msgid ""
"A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"bytes, stored with a four-byte prefix indicating the length of the value"
msgstr ""
"Una columna de bloque de texto («BLOB») con una longitud máxima de "
"4294967295 (2^32 - 1) bytes (4GB), almacenado con un prefijo de 4 bytes que "
"indica la longitud del valor"
"Una columna de bloque de texto («BLOB») con una longitud máxima de 4294967295 "
"(2^32 - 1) bytes (4GB), almacenado con un prefijo de 4 bytes que indica la "
"longitud del valor"
#: libraries/Types.class.php:378
msgid ""
@ -4610,11 +4607,10 @@ msgid "Create PHP Code"
msgstr "Crear código PHP"
#: libraries/Util.class.php:1275
#, fuzzy
#| msgid "Edit index"
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "Editar índice"
msgstr "Editar en línea"
#. l10n: Short week day name
#: libraries/Util.class.php:1580
@ -4958,7 +4954,6 @@ msgid "key"
msgstr "llave"
#: libraries/config.values.php:99
#, fuzzy
#| msgid "Display columns table"
msgid "display column"
msgstr "Mostrar tabla de columnas"
@ -5209,8 +5204,8 @@ msgid ""
"%sLogin cookie validity%s greater than %ssession.gc_maxlifetime%s may cause "
"random session invalidation (currently session.gc_maxlifetime is %d)."
msgstr ""
"Valores para la %svalidez de la cookie de inicio de sesión%s mayores a "
"%ssession.gc_maxlifetime%s pueden causar invalidaciones de sesión aleatorias "
"Valores para la %svalidez de la cookie de inicio de sesión%s mayores a %"
"ssession.gc_maxlifetime%s pueden causar invalidaciones de sesión aleatorias "
"(actualmente, el valor de session.gc_maxlifetime es %d)."
#: libraries/config/ServerConfigChecks.class.php:410
@ -6397,17 +6392,15 @@ msgid "Memory limit"
msgstr "Límite de la memoria"
#: libraries/config/messages.inc.php:418
#, fuzzy
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
"En el panel de navegación, reemplaza el árbol de base de datos con un "
"selector"
#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Show hidden navigation tree items."
msgid "Show databases navigation as tree"
msgstr "Mostrar los elementos escondidos del árbol de navegación."
msgstr "Mostrar las bases de datos navegación como árbol"
#: libraries/config/messages.inc.php:420
msgid "Link with main panel by highlighting the current database or table."
@ -6456,10 +6449,9 @@ msgid "Target for quick access icon"
msgstr "Destino para el icono de acceso rápido"
#: libraries/config/messages.inc.php:437
#, fuzzy
#| msgid "Target for quick access icon"
msgid "Target for second quick access icon"
msgstr "Destino para el icono de acceso rápido"
msgstr "Objetivo para el segundo icono de acceso rápido"
#: libraries/config/messages.inc.php:440
msgid ""
@ -6470,7 +6462,6 @@ msgstr ""
"para mostrar un cuadro de filtro."
#: libraries/config/messages.inc.php:444
#, fuzzy
msgid "Minimum number of items to display the filter box"
msgstr "Número mínimo de elementos para mostrar la caja de filtro"
@ -6716,16 +6707,14 @@ msgstr "Edición de grilla: disparador de acción"
# Display option apparently related to
# http://www.phpmyadmin.net/documentation/#relation
#: libraries/config/messages.inc.php:535
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "Mostrar columna de relación"
#: libraries/config/messages.inc.php:536
#, fuzzy
#| msgid "Servers display options."
msgid "For display Options"
msgstr "Opciones para visualizar los servidores."
msgstr "Opciones de visualización"
#: libraries/config/messages.inc.php:537
msgid "Grid editing: save all edited cells at once"
@ -6951,10 +6940,9 @@ msgstr ""
"sugerido: [kbd]pma__savedsearches[/kbd]."
#: libraries/config/messages.inc.php:613
#, fuzzy
#| msgid "Central columns"
msgid "Central columns table"
msgstr "Columnas centrales"
msgstr "Tabla de columnas centrales"
#: libraries/config/messages.inc.php:615
msgid ""
@ -7427,23 +7415,22 @@ msgid "Suhosin warning"
msgstr "Advertencia Suhosin"
#: libraries/config/messages.inc.php:757
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the Structure page if "
#| "column names in a table are reserved MySQL words."
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"Desactivar la advertencia predeterminada que se muestra en la página de "
"Estructura si algún nombre de columna en una tabla es una palabra reservada "
"de MySQL."
#: libraries/config/messages.inc.php:758
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "Validez del cookie usado para el inicio de sesión"
msgstr "ADVERTENCIA de inicio de sesión cookie validez"
#: libraries/config/messages.inc.php:759
msgid ""
@ -7634,8 +7621,8 @@ msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
"Activar el modo de «Configuración Zero» que le permite definir las tablas "
"del almacenamiento de configuración de phpMyAdmin automáticamente."
"Activar el modo de «Configuración Zero» que le permite definir las tablas del "
"almacenamiento de configuración de phpMyAdmin automáticamente."
#: libraries/config/messages.inc.php:802
msgid "Enable Zero Configuration mode"
@ -8053,8 +8040,8 @@ msgstr ", @TABLE@ se convertirá en el nombre de la tabla"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Este valor es interpretado usando %1$sstrftime%2$s por lo que se pueden usar "
"cadenas para formatear el tiempo. Además sucederán las siguientes "
@ -8612,8 +8599,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
"Se puede encontrar documentación y más información sobre PBXT en la %spágina "
"inicial de PrimeBase XT%s."
@ -9097,19 +9084,18 @@ msgstr ""
"panel de navegación."
#: libraries/navigation/NavigationTree.class.php:864
#, fuzzy, php-format
#, php-format
#| msgid "%s other result found"
#| msgid_plural "%s other results found"
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] "Se encontró %s resultado adicional"
msgstr[1] "Se encontraron %s resultados adicionales"
msgstr[1] "Se encontró %s resultado adicional"
#: libraries/navigation/NavigationTree.class.php:1203
#, fuzzy
#| msgid "Please select databases:"
msgid "Please select a database."
msgstr "Seleccionar bases de datos:"
msgstr "Por favor, seleccione una base de datos."
#: libraries/navigation/NavigationTree.class.php:1261
msgid "Filter databases by name or regex"
@ -9442,14 +9428,14 @@ msgid ""
"No partial dependencies possible as the primary key ( %1$s ) has just one "
"column."
msgstr ""
"No existen dependencias parciales posibles debido a que la clave primaria "
"(«%1$s») sólo contiene una columna."
"No existen dependencias parciales posibles debido a que la clave primaria («%1"
"$s») sólo contiene una columna."
#: libraries/normalization.lib.php:381
#, fuzzy, php-format
#, php-format
#| msgid ""
#| "As per above partial dependencies, in order to put the original table "
#| "'%1$s' into Second normal form we need to create the following tables:"
#| "As per above partial dependencies, in order to put the original table '%1"
#| "$s' into Second normal form we need to create the following tables:"
msgid ""
"In order to put the original table '%1$s' into Second normal form we need to "
"create the following tables:"
@ -9469,7 +9455,7 @@ msgid "Error in processing!"
msgstr "¡Error durante el procesamiento!"
#: libraries/normalization.lib.php:501
#, fuzzy, php-format
#, php-format
#| msgid ""
#| "As per above dependencies, in order to put the original table '%1$s' into "
#| "Third normal form we need to create the following tables:"
@ -9792,8 +9778,8 @@ msgstr "Bienvenido a %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"La razón más probable es que usted no haya creado un archivo de "
"configuración. Utilice el %1$sscript de configuración%2$s para crear uno."
@ -10315,7 +10301,7 @@ msgstr "Nombre de las columnas: "
msgid "Invalid parameter for CSV import: %s"
msgstr "Parámetro no válido para importar CSV: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@ -10325,13 +10311,13 @@ msgstr ""
"están escritos correctamente, separados por comas y no encerrados entre "
"comillas."
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "El formato de los datos CSV en la línea %d no es válido."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "El número de columnas de los datos CSV en la línea %d no es válido."
@ -10514,8 +10500,8 @@ msgstr ""
"opción es para especificar un formato de fecha/hora diferente. La tercera "
"opción determina si desea ver la fecha local o UTC (utilice las cadenas "
"«local» o «utc»). Según esta configuración, el formato de la fecha tendrá un "
"valor diferente - para «local» mire la documentación de la función strftime"
"() de PHP y para «utc» la de la función gmdate()."
"valor diferente - para «local» mire la documentación de la función strftime() "
"de PHP y para «utc» la de la función gmdate()."
#: libraries/plugins/transformations/abstract/DownloadTransformationsPlugin.class.php:31
msgid ""
@ -10677,7 +10663,6 @@ msgstr ""
"opción es el título para el enlace."
#: libraries/plugins/transformations/output/Text_Plain_Json.class.php:38
#, fuzzy
#| msgid "Formats text as SQL query with syntax highlighting."
msgid "Formats text as JSON with syntax highlighting."
msgstr "Formatea el texto como una consulta SQL y resalta la sintaxis."
@ -10839,7 +10824,7 @@ msgstr ""
msgid "no description"
msgstr "Sin descripción"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
@ -10847,7 +10832,7 @@ msgstr ""
"%sCrear%s las tablas de almacenamiento de configuración de phpMyAdmin en la "
"base de datos actual."
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -12217,8 +12202,8 @@ msgstr "Vista global de usuarios"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Nota: phpMyAdmin obtiene los privilegios de los usuarios 'directamente de "
"las tablas de privilegios MySQL'. El contenido de estas tablas puede diferir "
@ -12378,9 +12363,8 @@ msgstr ""
"El Monitorizador de phpMyAdmin puede asistir en la optimización de la "
"configuración del servidor y rastrear consultas que toman mucho tiempo. Para "
"esto último necesitará que «log_output» esté definido como 'TABLE' y tener "
"activado «slow_query_log» o «general_log». Note, sin embargo, que "
"«general_log» produce mucha información y aumenta la carga en el servidor "
"hasta en un 15%."
"activado «slow_query_log» o «general_log». Note, sin embargo, que «general_log» "
"produce mucha información y aumenta la carga en el servidor hasta en un 15%."
#: libraries/server_status_monitor.lib.php:128
msgid "Using the monitor:"
@ -13690,7 +13674,6 @@ msgid "Add %s column(s)"
msgstr "Agregar %s columna(s)"
#: libraries/structure.lib.php:1712
#, fuzzy
#| msgid "At Beginning of Table"
msgid "at beginning of table"
msgstr "Al comienzo de la tabla"
@ -13891,10 +13874,9 @@ msgid "Storage Engine:"
msgstr "Motor de almacenamiento:"
#: libraries/tbl_columns_definition_form.lib.php:81
#, fuzzy
#| msgid "Connections"
msgid "Connection:"
msgstr "Conexiones"
msgstr "Conexión:"
#: libraries/tbl_columns_definition_form.lib.php:127
msgid "PARTITION definition:"
@ -14038,24 +14020,22 @@ msgstr ""
"primaria!"
#: libraries/tbl_indexes.lib.php:307
#, fuzzy
#| msgid "Index cache size"
msgid "Index choice:"
msgstr "Tamaño del caché del índice"
msgstr "Opción de índice:"
#: libraries/tbl_indexes.lib.php:323
msgid "Key block size:"
msgstr ""
msgstr "Tamaño del bloque dominante:"
#: libraries/tbl_indexes.lib.php:335
msgid "Index type:"
msgstr "Tipo de índice&nbsp;:"
#: libraries/tbl_indexes.lib.php:347
#, fuzzy
#| msgid "User:"
msgid "Parser:"
msgstr "Usuario:"
msgstr "Analizador:"
#: libraries/tbl_indexes.lib.php:359
msgid "Comment:"
@ -14668,7 +14648,7 @@ msgid "Row: %1$s, Column: %2$s, Error: %3$s"
msgstr "Fila: %1$s, Columna: %2$s, Error: %3$s"
#: tbl_structure.php:60
#, fuzzy, php-format
#, php-format
#| msgid "The column name '%s' is a MySQL reserved keyword."
msgid "The column name '%s' is a MySQL reserved keyword."
msgid_plural "The column names '%s' are MySQL reserved keywords."
@ -14812,8 +14792,8 @@ msgid ""
"You might want to increase {long_query_time} or optimize the queries listed "
"in the slow query log"
msgstr ""
"Podría aumentar «{long_query_time}» u optimizar las consultas que aparecen "
"en el registro de consultas lentas"
"Podría aumentar «{long_query_time}» u optimizar las consultas que aparecen en "
"el registro de consultas lentas"
#: libraries/advisory_rules.txt:68
#, php-format
@ -14880,8 +14860,8 @@ msgid ""
"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
"help troubleshooting badly performing queries."
msgstr ""
"Active el registro de consultas lenta configurando «log_slow_queries» a "
"'ON'. Esto ayudará a analizar consultas con mala performance."
"Active el registro de consultas lenta configurando «log_slow_queries» a 'ON'. "
"Esto ayudará a analizar consultas con mala performance."
#: libraries/advisory_rules.txt:89
msgid "log_slow_queries is set to 'OFF'"
@ -15038,8 +15018,8 @@ msgid ""
msgstr ""
"Se sabe que el caché de consultas puede mejorar la performance enormemente "
"si está correctamente configurado. Actívelo definiendo «query_cache_size» a "
"un valor en MiB de 2 dígitos y definiendo «query_cache_type» a 'ON'. "
"<b>Notar que: </b> si está utilizando memcached ignore esta recomendación."
"un valor en MiB de 2 dígitos y definiendo «query_cache_type» a 'ON'. <b>Notar "
"que: </b> si está utilizando memcached ignore esta recomendación."
#: libraries/advisory_rules.txt:158
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
@ -15116,8 +15096,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
"La tasa actual de memoria libre del caché de consultas respecto del tamaño "
"total es %s%%. Debería ser mayor al 80%%"
@ -15275,8 +15255,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
"%s%% de todas las ordenaciones causan tablas temporales, este valor debería "
"de ser menor a 10%%."
@ -15339,8 +15319,8 @@ msgstr ""
#, php-format
msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
"Promedio de uniones («JOIN») de tablas: %s, este promedio debería ser menor "
"a 1 por hora"
"Promedio de uniones («JOIN») de tablas: %s, este promedio debería ser menor a "
"1 por hora"
#: libraries/advisory_rules.txt:240
msgid "Rate of reading first index entry"
@ -15448,8 +15428,7 @@ msgstr ""
#: libraries/advisory_rules.txt:267
#, php-format
msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
"Los valores actuales son «tmp_table_size»: %s, «max_heap_table_size»: %s"
msgstr "Los valores actuales son «tmp_table_size»: %s, «max_heap_table_size»: %s"
#: libraries/advisory_rules.txt:269
msgid "Percentage of temp tables on disk"
@ -15473,14 +15452,13 @@ msgid ""
"mentioned in the beginning of an <a href=\"http://www.facebook.com/note.php?"
"note_id=10150111255065841&comments\">Article by the Pythian Group</a>"
msgstr ""
"Aumentar «max_heap_table_size» y «tmp_table_size» podría ayudar. Sin "
"embargo, algunas tablas temporales son siempre escritas a disco "
"independientemente del valor de estas variables. Para eliminarlas deberá re-"
"escribir las consultas para evitar estas condiciones (en una tabla temporal: "
"la presencia de una columna «BLOB» o «TEXT», o la presencia de una columna "
"mayor a 512 bytes) como se menciona al comienzo del <a href=\"http://www."
"facebook.com/note.php?note_id=10150111255065841&comments\">artículo de "
"Pythian Group</a>"
"Aumentar «max_heap_table_size» y «tmp_table_size» podría ayudar. Sin embargo, "
"algunas tablas temporales son siempre escritas a disco independientemente "
"del valor de estas variables. Para eliminarlas deberá re-escribir las "
"consultas para evitar estas condiciones (en una tabla temporal: la presencia "
"de una columna «BLOB» o «TEXT», o la presencia de una columna mayor a 512 "
"bytes) como se menciona al comienzo del <a href=\"http://www.facebook.com/"
"note.php?note_id=10150111255065841&comments\">artículo de Pythian Group</a>"
#: libraries/advisory_rules.txt:274
#, php-format
@ -15505,8 +15483,8 @@ msgid ""
"mentioned in the <a href=\"http://dev.mysql.com/doc/refman/5.5/en/internal-"
"temporary-tables.html\">MySQL Documentation</a>"
msgstr ""
"Aumentar «max_heap_table_size» y «tmp_table_size» podría ayudar. Sin "
"embargo, algunas tablas temporales son siempre a disco permanentemente "
"Aumentar «max_heap_table_size» y «tmp_table_size» podría ayudar. Sin embargo, "
"algunas tablas temporales son siempre a disco permanentemente "
"independientemente del valor de estas variables. Para eliminarlas deberá re-"
"escribir las consultas para evitar estas condiciones (en una tabla temporal: "
"la presencia de una columna «BLOB» o «TEXT» o la presencia de una columna "
@ -15537,8 +15515,8 @@ msgid ""
"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
"good start."
msgstr ""
"Defina «key_buffer_size» dependiendo del tamaño de los índices MyISAM. 64M "
"es un buen comienzo."
"Defina «key_buffer_size» dependiendo del tamaño de los índices MyISAM. 64M es "
"un buen comienzo."
#: libraries/advisory_rules.txt:301
msgid "key_buffer_size is 0"
@ -15713,8 +15691,7 @@ msgstr ""
#: libraries/advisory_rules.txt:366
msgid "Enable the thread cache by setting {thread_cache_size} > 0."
msgstr ""
"Active el caché de hilos configurado «thread_cache_size» a un valor mayor a "
"0."
"Active el caché de hilos configurado «thread_cache_size» a un valor mayor a 0."
#: libraries/advisory_rules.txt:367
msgid "The thread cache is set to 0"
@ -15875,8 +15852,8 @@ msgstr ""
#, php-format
msgid "%s%% of all clients are aborted. This value should be below 2%%"
msgstr ""
"%s%% de todos los clientes son abandonados. Este valor debería ser menor a "
"2%%"
"%s%% de todos los clientes son abandonados. Este valor debería ser menor a 2%"
"%"
#: libraries/advisory_rules.txt:420
msgid "Rate of aborted clients"

146
po/et.po
View File

@ -5,15 +5,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2015-02-05 08:31+0200\n"
"Last-Translator: Kristjan Räts <kristjanrats@gmail.com>\n"
"Language-Team: Estonian "
"<https://hosted.weblate.org/projects/phpmyadmin/master/et/>\n"
"Language: et\n"
"Language-Team: Estonian <https://hosted.weblate.org/projects/phpmyadmin/"
"master/et/>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: et\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 2.2-dev\n"
@ -602,11 +602,11 @@ msgstr "Puudulikud parameetrid"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Tõenäoliselt üritasid üles laadida liiga suurt faili. Palun loe "
"%sdokumentatsioonist%s, kuidas sellest piirangust vabaneda."
"Tõenäoliselt üritasid üles laadida liiga suurt faili. Palun loe %"
"sdokumentatsioonist%s, kuidas sellest piirangust vabaneda."
#: import.php:343 import.php:626
msgid "Showing bookmark"
@ -647,8 +647,8 @@ msgid ""
"[doc@faq1-16]FAQ 1.16[/doc]."
msgstr ""
"Importimisest andmeid vastu ei võetud. Faili nime kas ei saadetud või faili "
"maht ületab sinu PHP seadistuses lubatud maksimaalset mahtu. Vaata "
"[doc@faq1-16]KKK 1.16[/doc]."
"maht ületab sinu PHP seadistuses lubatud maksimaalset mahtu. Vaata [doc@faq1-"
"16]KKK 1.16[/doc]."
#: import.php:554
msgid ""
@ -840,21 +840,15 @@ msgstr ""
"korralikult poolitada ja see võib viia ettearvamatute tulemusteni."
#: index.php:488
#| msgid ""
#| "Your PHP parameter [a@http://php.net/manual/en/session.configuration."
#| "php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower "
#| "than cookie validity configured in phpMyAdmin, because of this, your "
#| "login will expire sooner than configured in phpMyAdmin."
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than "
"cookie validity configured in phpMyAdmin, because of this, your login might "
"expire sooner than configured in phpMyAdmin."
msgstr ""
"PHP parameeter "
"[a@http://php.net/manual/en/session.configuration.php#ini.session.gc-"
"maxlifetime@_blank]session.gc_maxlifetime[/a] väärtus on väiksem, kui "
"phpMyAdminis seadistatud küpsise kehtivus. Seetõttu võib sessioon aeguda "
"PHP parameeter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] väärtus on väiksem, "
"kui phpMyAdminis seadistatud küpsise kehtivus. Seetõttu võib sessioon aeguda "
"kiiremini, kui phpMyAdminis seadistatud."
#: index.php:501
@ -913,8 +907,8 @@ msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
"Server töötab koos Suhosin'iga. Võimalike probleemide kohta loe "
"%sdokumentatsioonist%s."
"Server töötab koos Suhosin'iga. Võimalike probleemide kohta loe %"
"sdokumentatsioonist%s."
#: js/messages.php:29 libraries/import.lib.php:125 sql.php:143
msgid "\"DROP DATABASE\" statements are disabled."
@ -3078,26 +3072,26 @@ msgstr "Uuenda järjehoidjat"
msgid "Delete bookmark"
msgstr "Kustuta järjehoidja"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
"Server ei vasta (või kohaliku serveri sokkel ei ole õigesti seadistatud)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "Server ei vasta."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr "Palun kontrolli andmebaasi sisaldava kataloogi õigusi."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Detailid…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr "Sinu seadistuses määratud kontrollkasutajaga ühendamine ebaõnnestus."
@ -3294,8 +3288,8 @@ msgstr "Sinu SQL päring teostati edukalt."
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Sellel vaatel on vähemalt nii palju ridu. Palun loe %sdokumentatsiooni%s."
@ -4201,20 +4195,20 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"Väike ujukoma arv, lubatud väärtused on vahemikus -3.402823466E+38 kuni "
"-1.175494351E-38, 0, ja 1.175494351E-38 kuni 3.402823466E+38"
"Väike ujukoma arv, lubatud väärtused on vahemikus -3.402823466E+38 kuni -"
"1.175494351E-38, 0, ja 1.175494351E-38 kuni 3.402823466E+38"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"Topelttäpsusega ujukomaarv, lubatud väärtused on vahemikus "
"-1.7976931348623157E+308 luni -2.2250738585072014E-308, 0, ja "
"Topelttäpsusega ujukomaarv, lubatud väärtused on vahemikus -"
"1.7976931348623157E+308 luni -2.2250738585072014E-308, 0, ja "
"2.2250738585072014E-308 kuni 1.7976931348623157E+308"
#: libraries/Types.class.php:336
@ -4259,9 +4253,9 @@ msgid ""
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
"Ajatempel, ulatus on \"1970-01-01 00:00:01\" UTC kuni \"2038-01-09 "
"03:14:07\" UTC, säilitatakse sekundite hulgana alates ajastu algusest "
"(\"1970-01-01 00:00:00\" UTC)"
"Ajatempel, ulatus on \"1970-01-01 00:00:01\" UTC kuni \"2038-01-09 03:14:07"
"\" UTC, säilitatakse sekundite hulgana alates ajastu algusest (\"1970-01-01 "
"00:00:00\" UTC)"
#: libraries/Types.class.php:350 libraries/Types.class.php:788
#, php-format
@ -4518,7 +4512,6 @@ msgid "Create PHP Code"
msgstr "Loo PHP kood"
#: libraries/Util.class.php:1275
#| msgid "Edit index"
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "Muuda kohapeal"
@ -5101,8 +5094,8 @@ msgid ""
"%sLogin cookie validity%s greater than %ssession.gc_maxlifetime%s may cause "
"random session invalidation (currently session.gc_maxlifetime is %d)."
msgstr ""
"%sSisselogimise küpsise kehtivus%s on suurem, kui %ssession.gc_maxlifetime"
"%s. See võib põhjustada juhuslikke sessiooni vananemisi (session."
"%sSisselogimise küpsise kehtivus%s on suurem, kui %ssession.gc_maxlifetime%"
"s. See võib põhjustada juhuslikke sessiooni vananemisi (session."
"gc_maxlifetime on hetkel %d)."
#: libraries/config/ServerConfigChecks.class.php:410
@ -5132,8 +5125,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
"Kui tunned, et see on vajalik, siis kasuta täiendavaid kaitse sätteid - "
"%shostiga autentimise%s sätteid ja %susaldusväärsete prokside nimekirja%s. "
"Kui tunned, et see on vajalik, siis kasuta täiendavaid kaitse sätteid - %"
"shostiga autentimise%s sätteid ja %susaldusväärsete prokside nimekirja%s. "
"Siiski ei pruugi IP-põhine kaitse olla usaldusväärne, kui sinu IP kuulub "
"ISP'le, kellega on ühendatud koos sinuga tuhandeid kasutajaid."
@ -7244,18 +7237,19 @@ msgid "Suhosin warning"
msgstr "Suhosin'i hoiatus"
#: libraries/config/messages.inc.php:757
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the Structure page if "
#| "column names in a table are reserved MySQL words."
#| "Disable the default warning that is displayed on the main page if session."
#| "gc_maxlifetime is less than `LoginCookieValidity`."
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"Keela vaikimisi hoiatus, mida näidatakse põhilehel siis, kui "
"session.gc_maxlifetime on väiksem kui `LoginCookieValidity`."
"Keela vaikimisi hoiatus, mida näidatakse põhilehel siis, kui session."
"gc_maxlifetime on väiksem kui `LoginCookieValidity`."
#: libraries/config/messages.inc.php:758
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "Sisselogimise küpsise kehtivuse hoiatus"
@ -7856,8 +7850,8 @@ msgstr ", @TABLE@ saab tabeli nimeks"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Seda väärtust on tõlgendatud %1$sstrftime%2$s'ga ja seetõttu saad kasutada "
"aja vormindamise sõne. Lisaks toimuvad järgnevad muudatused: %3$s. Ülejäänud "
@ -8392,8 +8386,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
"PBXT kohta leiab dokumentatsiooni ja edasist teavet %sPrimeBase XT kodulehelt"
"%s."
@ -9548,11 +9542,11 @@ msgstr "Tere tulemast %s'i"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Arvatavasti ei loonud sa seadistuse faili. Võid selle loomiseks kasutada "
"%1$spaigaldaja skripti%2$s."
"Arvatavasti ei loonud sa seadistuse faili. Võid selle loomiseks kasutada %1"
"$spaigaldaja skripti%2$s."
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
msgid ""
@ -10065,7 +10059,7 @@ msgstr "Veeru nimed: "
msgid "Invalid parameter for CSV import: %s"
msgstr "Vale parameeter CSV importimiseks: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@ -10074,13 +10068,13 @@ msgstr ""
"Täpsustati vale veerg (%s)! Veendu, et veergude nimed on õigesti kirjutatud, "
"komadega eraldatud ja pole asetatud jutumärkide vahele."
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Vale CSV sisendi formaat %d.-ndal real."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Vale veeru hulk CSV sisendis %d.-ndal real."
@ -10411,7 +10405,6 @@ msgstr ""
"\"http://www.example.com/\". Teine valik on lingi pealkiri."
#: libraries/plugins/transformations/output/Text_Plain_Json.class.php:38
#| msgid "Formats text as SQL query with syntax highlighting."
msgid "Formats text as JSON with syntax highlighting."
msgstr "Vormindab teksti süntaksi esiletõstuga JSON objektiks."
@ -10570,14 +10563,14 @@ msgstr "Uuendatud seadistuse faili laadimiseks logi phpMyAdmini uuesti sisse."
msgid "no description"
msgstr "kirjeldus puudub"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
"%sLoo%s phpMyAdmini seadistuse salvestuse tabelid aktiivses andmebaasis."
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr "%sLoo%s puuduvad phpMyAdmini seadistuse salvestuse tabelid."
@ -11920,8 +11913,8 @@ msgstr "Kasutajate ülevaade"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Märkus: phpMyAdmin võtab kasutajate õigused otse MySQL'i õiguste tabelist. "
"Tabelite sisu võib erineda sellest, mida server kasutab, kui neid on käsitsi "
@ -13540,7 +13533,6 @@ msgid "Storage Engine:"
msgstr "Varundusmootor:"
#: libraries/tbl_columns_definition_form.lib.php:81
#| msgid "Connections"
msgid "Connection:"
msgstr "Ühendus:"
@ -14732,11 +14724,11 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
"Praegune vaba päringu puhvri mälu võrreldes päringu puhvri kogumahuga on %s"
"%%. See peaks olema üle 80%%"
"Praegune vaba päringu puhvri mälu võrreldes päringu puhvri kogumahuga on %s%"
"%. See peaks olema üle 80%%"
#: libraries/advisory_rules.txt:181
msgid "Query cache fragmentation"
@ -14886,8 +14878,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
"%s%% kõikidest sorteerimistest põhjustab ajutisi tabeleid. See väärtus peaks "
"jääma alla 10%%."
@ -15464,8 +15456,8 @@ msgstr ""
#, php-format
msgid "%s%% of all clients are aborted. This value should be below 2%%"
msgstr ""
"%s%% kõikidest klientides on lahti ühendatud. See väärtus peaks olema alla "
"2%%"
"%s%% kõikidest klientides on lahti ühendatud. See väärtus peaks olema alla 2%"
"%"
#: libraries/advisory_rules.txt:420
msgid "Rate of aborted clients"

View File

@ -3,15 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-03-31 14:23+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Basque <https://hosted.weblate.org/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.9-dev\n"
@ -634,14 +634,14 @@ msgstr "\"Insert\"ak osatu"
#: import.php:163
#, fuzzy, php-format
#| msgid ""
#| "You probably tried to upload too large file. Please refer to "
#| "%sdocumentation%s for ways to workaround this limit."
#| "You probably tried to upload too large file. Please refer to %"
#| "sdocumentation%s for ways to workaround this limit."
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Agian fitxategi haundiegia igotzen saiatu zara. Mesedez begiratu "
"%sdocumentation%s tamaina mugak aldatzeko."
"Agian fitxategi haundiegia igotzen saiatu zara. Mesedez begiratu %"
"sdocumentation%s tamaina mugak aldatzeko."
#: import.php:343 import.php:626
msgid "Showing bookmark"
@ -3366,25 +3366,25 @@ msgstr "Erakutsi laster-marka"
msgid "Delete bookmark"
msgstr "Bilatu"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr ""
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr ""
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3611,11 +3611,11 @@ msgstr "Zure SQL-kontsula arrakastaz burutu da"
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Ikuspegi honek gutxienez errenkada kopuru hau dauka. Mesedez %sdocumentation"
"%s erreferentzia egin."
"Ikuspegi honek gutxienez errenkada kopuru hau dauka. Mesedez %sdocumentation%"
"s erreferentzia egin."
#: libraries/DisplayResults.class.php:4492
#, fuzzy, php-format
@ -4572,14 +4572,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -7555,8 +7555,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -8216,8 +8217,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -8728,8 +8729,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -9905,8 +9906,8 @@ msgstr "Ongietorriak %s(e)ra"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
@ -10461,20 +10462,20 @@ msgstr "Zutabe izenak"
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -10994,13 +10995,13 @@ msgstr ""
msgid "no description"
msgstr "Deskribapenik ez"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -12432,8 +12433,8 @@ msgstr "Erabiltzailearen info orokorra"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Oharra: phpMyAdmin-ek erabiltzaileen pribilegioak' zuzenean MySQL-ren "
"pribilegioen taulatik' eskuratzen ditu. Taula hauen edukiak, tartean eskuz "
@ -15284,8 +15285,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -15413,8 +15414,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

View File

@ -3,15 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-12-18 09:39+0200\n"
"Last-Translator: HM <goodlinuxuser@chmail.ir>\n"
"Language-Team: Persian <https://hosted.weblate.org/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 2.2-dev\n"
@ -623,8 +623,8 @@ msgstr "تمام وروديها"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"احتمالاً شما سعی کرده اید یک فایل حجیم را آپلود کنید. لطفاً برای یافتن راه حلی "
"برای این محدودیت به %sdocumentation%s مراجعه کنید."
@ -3287,25 +3287,25 @@ msgstr "نمایش تاریخچه"
msgid "Delete bookmark"
msgstr "حذف رابطه"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr ""
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr ""
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3518,8 +3518,8 @@ msgstr "اجرای فرایند شما با موفقيت اجرا گرديد"
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"در این نما حداقل این تعداد از سطرها موجود می باشد . لطفا به %sنوشتار%s "
"مراجعه کنید ."
@ -4481,14 +4481,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -7441,8 +7441,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -8076,8 +8077,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -8586,8 +8587,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -9779,8 +9780,8 @@ msgstr "به %s خوش‌آمديد"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"احتمالا فایل تنظیمات ایجاد نکرده اید.می توانید از %1$ssetup script%2$s برای "
"ایجاد آن استفاده نمایید."
@ -10325,20 +10326,20 @@ msgstr "نام ستونها"
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -10810,13 +10811,13 @@ msgstr ""
msgid "no description"
msgstr "no Description"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -12195,8 +12196,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
#: libraries/server_privileges.lib.php:4060
@ -15032,8 +15033,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -15161,8 +15162,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

111
po/fi.po
View File

@ -3,15 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2015-01-18 15:39+0200\n"
"Last-Translator: Juha <jremes@outlook.com>\n"
"Language-Team: Finnish <https://hosted.weblate.org/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 2.2-dev\n"
@ -601,11 +601,11 @@ msgstr "Vaillinaiset parametrit"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Yritit ehkä lähettää palvelimelle liian suurta tiedostoa. Katso %sohjeista"
"%s, kuinka tämän rajoituksen voi poistaa."
"Yritit ehkä lähettää palvelimelle liian suurta tiedostoa. Katso %sohjeista%"
"s, kuinka tämän rajoituksen voi poistaa."
#: import.php:343 import.php:626
msgid "Showing bookmark"
@ -888,8 +888,8 @@ msgid ""
"extended features have been deactivated. %sFind out why%s. "
msgstr ""
"phpMyAdmin asetusmuisti ei ole kokonaan konfiguroitu, linkitettyihin "
"tauluihin liittyvät lisäominaisuudet eivät ole käytössä. Katso miksi "
"%slisätietoja%s. "
"tauluihin liittyvät lisäominaisuudet eivät ole käytössä. Katso miksi %"
"slisätietoja%s. "
#: index.php:542
msgid ""
@ -2228,8 +2228,8 @@ msgstr ""
#: js/messages.php:437
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
"Ole hyvä ja anna pätevä heksadesimaalinen merkkijono. Pätevät merkit ovat "
"0-9, A-F."
"Ole hyvä ja anna pätevä heksadesimaalinen merkkijono. Pätevät merkit ovat 0-"
"9, A-F."
#: js/messages.php:438
msgid ""
@ -2754,8 +2754,8 @@ msgstr "Merkkijonon muotoilu epäonnistui '%s' säännöllä."
msgid ""
"Invalid rule declaration on line %1$s, expected line %2$s of previous rule."
msgstr ""
"Epäkelpo säännön määrittely rivillä %1$s, odotti edellisen säännön riviä "
"%2$s."
"Epäkelpo säännön määrittely rivillä %1$s, odotti edellisen säännön riviä %2"
"$s."
#: libraries/Advisor.class.php:415
#, php-format
@ -3103,7 +3103,7 @@ msgstr "Päivitä kirjanmerkki"
msgid "Delete bookmark"
msgstr "Poista kirjanmerkki"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@ -3111,19 +3111,19 @@ msgstr ""
"Palvelin ei vastaa (tai paikallisen palvelimen pistokke ei ole määritelty "
"oikein)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "Palvelin ei vastaa."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr "Tarkista käyttöoikeudet hakemisto sisältää tietokannan."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Lisätiedot…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Yhteyden muodostus asetuksissa määriteltyyn superuser-käyttäjään epäonnistui."
@ -3321,11 +3321,11 @@ msgstr "SQL-kyselysi on suoritettu onnistuneesti."
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja "
"%sohjeista%s."
"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja %"
"sohjeista%s."
#: libraries/DisplayResults.class.php:4492
#, php-format
@ -4233,20 +4233,20 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"Pieni liukuluku, mahdolliset arvot ovat välillä -3.402823466E+38 - "
"-1.175494351E-38, 0 ja 1.175494351E-38 - 3.402823466E+38"
"Pieni liukuluku, mahdolliset arvot ovat välillä -3.402823466E+38 - -"
"1.175494351E-38, 0 ja 1.175494351E-38 - 3.402823466E+38"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"Kaksoistarkkuuksinen liukuluku, mahdolliset arvot ovat välillä "
"-1.7976931348623157E+308 - -2.2250738585072014E-308, 0, ja "
"Kaksoistarkkuuksinen liukuluku, mahdolliset arvot ovat välillä -"
"1.7976931348623157E+308 - -2.2250738585072014E-308, 0, ja "
"2.2250738585072014E-308 - 1.7976931348623157E+308"
#: libraries/Types.class.php:336
@ -7656,8 +7656,9 @@ msgstr ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
#| "cookie authentication"
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"Poistaa oletus varoituksen, joka näytetään jos mcrypt puuttuu eväste "
"todennuksesta"
@ -8308,8 +8309,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Tämä arvo on tukittu %1$sstrftime%2$s mukaan, joten voi käyttää "
"ajanmuodostostusmerkkijonoja. Lisäksi tapahtuu seuraavat muutokset: %3$s. "
@ -8861,8 +8862,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -10052,11 +10053,11 @@ msgstr "Tervetuloa, toivottaa %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston "
"%1$sasetusskriptillä%2$s."
"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston %1"
"$sasetusskriptillä%2$s."
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
msgid ""
@ -10584,20 +10585,20 @@ msgstr "Sarakkeiden nimet"
msgid "Invalid parameter for CSV import: %s"
msgstr "Virheellinen CSV-tuonnin parametri: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Virheellinen muoto CSV-syötteessä rivillä %d."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, fuzzy, php-format
#| msgid "Invalid field count in CSV input on line %d."
msgid "Invalid column count in CSV input on line %d."
@ -11168,13 +11169,13 @@ msgstr ""
msgid "no description"
msgstr "ei kuvausta"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid ""
#| "Empty phpMyAdmin control user while using phpMyAdmin configuration storage"
@ -12689,8 +12690,8 @@ msgstr "Käyttäjien yleiskatsaus"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Huom: PhpMyAdmin hakee käyttäjien käyttöoikeudet suoraan MySQL-palvelimen "
"käyttöoikeustauluista. Näiden taulujen sisältö saattaa poiketa palvelimen "
@ -15780,8 +15781,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -15916,8 +15917,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218
@ -17455,8 +17456,8 @@ msgstr "concurrent_insert on asetettu arvoon 0"
#~ "No description is available for this transformation.<br />Please ask the "
#~ "author what %s does."
#~ msgstr ""
#~ "Tälle muunnokselle ei ole saatavilla kuvausta.<br />Kysy tekijältä, mitä "
#~ "%s tekee."
#~ "Tälle muunnokselle ei ole saatavilla kuvausta.<br />Kysy tekijältä, mitä %"
#~ "s tekee."
#~ msgid ""
#~ "MIME types printed in italics do not have a separate transformation "
@ -17579,8 +17580,8 @@ msgstr "concurrent_insert on asetettu arvoon 0"
#~ msgid ""
#~ "Are you sure you want to disable all BLOB references for database %s?"
#~ msgstr ""
#~ "Haluatko varmasti poistaa käytöstä kaikki BLOB-viittaukset tietokannasta "
#~ "%s?"
#~ "Haluatko varmasti poistaa käytöstä kaikki BLOB-viittaukset tietokannasta %"
#~ "s?"
#, fuzzy
#~ msgid "Unknown error while uploading."

154
po/fr.po
View File

@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"PO-Revision-Date: 2015-02-05 13:19+0200\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2015-02-06 16:21+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: French "
"<https://hosted.weblate.org/projects/phpmyadmin/master/fr/>\n"
@ -588,8 +588,8 @@ msgid ""
"Choose \"GeomFromText\" from the \"Function\" column and paste the string "
"below into the \"Value\" field."
msgstr ""
"Choisissez «GeomFromText» depuis la colonne «Fonction» et collez la chaîne "
"ci dessous dans le champ «Valeur»."
"Choisissez «GeomFromText» depuis la colonne «Fonction» et collez la chaîne ci "
"dessous dans le champ «Valeur»."
#: import.php:54
msgid "Succeeded"
@ -606,8 +606,8 @@ msgstr "Paramètres incomplets"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Vous avez probablement tenté de télécharger un fichier trop volumineux. "
"Veuillez vous référer à la %sdocumentation%s pour trouver le moyen de "
@ -849,22 +849,16 @@ msgstr ""
"résulter des problèmes."
#: index.php:488
#| msgid ""
#| "Your PHP parameter [a@http://php.net/manual/en/session.configuration."
#| "php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower "
#| "than cookie validity configured in phpMyAdmin, because of this, your "
#| "login will expire sooner than configured in phpMyAdmin."
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than "
"cookie validity configured in phpMyAdmin, because of this, your login might "
"expire sooner than configured in phpMyAdmin."
msgstr ""
"La valeur du paramètre PHP "
"[a@http://php.net/manual/fr/session.configuration.php#ini.session.gc-"
"maxlifetime@_blank]session.gc_maxlifetime[/a] est plus petite que la durée "
"du cookie configurée dans phpMyAdmin; donc, votre session de travail "
"pourrait expirer plus tôt."
"La valeur du paramètre PHP [a@http://php.net/manual/fr/session.configuration."
"php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] est plus "
"petite que la durée du cookie configurée dans phpMyAdmin; donc, votre "
"session de travail pourrait expirer plus tôt."
#: index.php:501
msgid ""
@ -901,8 +895,8 @@ msgid ""
"extended features have been deactivated. %sFind out why%s. "
msgstr ""
"Le stockage de configurations phpMyAdmin n'est pas complètement configuré, "
"certaines fonctionnalités ont été désactivées. %sVoir l'analyse du problème"
"%s. "
"certaines fonctionnalités ont été désactivées. %sVoir l'analyse du problème%"
"s. "
#: index.php:542
msgid ""
@ -3117,7 +3111,7 @@ msgstr "Mettre à jour le signet"
msgid "Delete bookmark"
msgstr "Effacer le signet"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@ -3125,20 +3119,20 @@ msgstr ""
"Le serveur ne répond pas (ou l'interface de connexion vers le serveur MySQL "
"local n'est pas correctement configurée)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "Le serveur ne répond pas."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
"Veuillez vérifier les privilèges du répertoire contenant la base de données."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Détails…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"La connexion au controluser tel que défini dans votre configuration a échoué."
@ -3336,11 +3330,11 @@ msgstr "Votre requête SQL a été exécutée avec succès."
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Cette vue contient au moins ce nombre de lignes. Veuillez référer à "
"%sdocumentation%s."
"Cette vue contient au moins ce nombre de lignes. Veuillez référer à %"
"sdocumentation%s."
#: libraries/DisplayResults.class.php:4492
#, php-format
@ -4207,16 +4201,16 @@ msgstr "Thème : "
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
"Un nombre entier de 1 octet. La fourchette des nombres avec signe est de "
"-128 à 127. Pour les nombres sans signe, c'est de 0 à 255"
"Un nombre entier de 1 octet. La fourchette des nombres avec signe est de -"
"128 à 127. Pour les nombres sans signe, c'est de 0 à 255"
#: libraries/Types.class.php:322
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
"Un nombre entier de 2 octets. La fourchette des nombres avec signe est de "
"-32 768 à 32 767. Pour les nombres sans signe, c'est de 0 à 65 535"
"Un nombre entier de 2 octets. La fourchette des nombres avec signe est de -"
"32 768 à 32 767. Pour les nombres sans signe, c'est de 0 à 65 535"
#: libraries/Types.class.php:324
msgid ""
@ -4255,16 +4249,16 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"Un petit nombre en virgule flottante, la fourchette des valeurs est "
"-3.402823466E+38 à -1.175494351E-38, 0, et 1.175494351E-38 à 3.402823466E+38"
"Un petit nombre en virgule flottante, la fourchette des valeurs est -"
"3.402823466E+38 à -1.175494351E-38, 0, et 1.175494351E-38 à 3.402823466E+38"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"Un nombre en virgule flottante double-précision, la fourchette des valeurs "
@ -4314,9 +4308,9 @@ msgid ""
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
"Un type d'horodatage, la fourchette est de «1970-01-01 00:00:01» UTC à "
"«2038-01-09 03:14:07» UTC, en nombre de secondes depuis le moment de "
"référence («1970-01-01 00:00:00» UTC)"
"Un type d'horodatage, la fourchette est de «1970-01-01 00:00:01» UTC à «2038-"
"01-09 03:14:07» UTC, en nombre de secondes depuis le moment de référence "
"(«1970-01-01 00:00:00» UTC)"
#: libraries/Types.class.php:350 libraries/Types.class.php:788
#, php-format
@ -4584,7 +4578,6 @@ msgid "Create PHP Code"
msgstr "Créer source PHP"
#: libraries/Util.class.php:1275
#| msgid "Edit index"
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "Éditer en ligne"
@ -5122,8 +5115,8 @@ msgid ""
msgstr ""
"Cette %soption%s ne devrait pas être activée car elle permet à un attaquant "
"de tenter de forcer l'entrée sur tout serveur MySQL. Si vous en avez "
"réellement besoin, utilisez la %sliste des serveurs mandataires de confiance"
"%s."
"réellement besoin, utilisez la %sliste des serveurs mandataires de confiance%"
"s."
#: libraries/config/ServerConfigChecks.class.php:378
msgid ""
@ -5192,8 +5185,8 @@ msgid ""
"If using [kbd]cookie[/kbd] authentication and %sLogin cookie store%s is not "
"0, %sLogin cookie validity%s must be set to a value less or equal to it."
msgstr ""
"Si vous utilisez l'authentification [kbd]cookie[/kbd] et que le paramètre "
"%sLogin cookie store%s n'a pas une valeur de 0, le paramètre %sLogin cookie "
"Si vous utilisez l'authentification [kbd]cookie[/kbd] et que le paramètre %"
"sLogin cookie store%s n'a pas une valeur de 0, le paramètre %sLogin cookie "
"validity%s doit avoir une valeur plus petite ou égale à celui-ci."
#: libraries/config/ServerConfigChecks.class.php:423
@ -5204,8 +5197,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
"Si vous l'estimez nécessaire, utilisez des paramètres de protection - "
"%sauthentification de l'hôte%s et %sserveurs mandataires de confiance%s. "
"Si vous l'estimez nécessaire, utilisez des paramètres de protection - %"
"sauthentification de l'hôte%s et %sserveurs mandataires de confiance%s. "
"Cependant, la protection par adresse IP peut ne pas être fiable si votre IP "
"appartient à un fournisseur via lequel des milliers d'utilisateurs, vous y "
"compris, sont connectés."
@ -7355,17 +7348,18 @@ msgstr "Avertissement Suhosin"
#: libraries/config/messages.inc.php:757
#| msgid ""
#| "Disable the default warning that is displayed on the Structure page if "
#| "column names in a table are reserved MySQL words."
#| "Disable the default warning that is displayed on the main page if session."
#| "gc_maxlifetime is less than `LoginCookieValidity`."
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"Désactiver l'avertissement affiché sur la page principale si "
"session.gc_maxlifetime est moindre que `LoginCookieValidity`."
"Désactiver l'avertissement affiché sur la page principale si la valeur du "
"paramètre PHP session.gc_maxlifetime est moindre que celle de "
"`LoginCookieValidity`."
#: libraries/config/messages.inc.php:758
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "Durée de validité de la connexion en mode cookie"
@ -7972,8 +7966,8 @@ msgstr ", @TABLE@ sera remplacé par le nom de la table"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Cette valeur est interprétée avec %1$sstrftime%2$s, vous pouvez donc "
"utiliser des chaînes de format d'heure. Ces transformations additionnelles "
@ -8528,8 +8522,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
"La documentation de PBXT et des informations additionnelles sont disponibles "
"sur %sle site de PrimeBase XT%s."
@ -9702,8 +9696,8 @@ msgstr "Bienvenue dans %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"La raison probable est que vous n'avez pas créé de fichier de configuration. "
"Vous pouvez utiliser le %1$sscript de configuration%2$s dans ce but."
@ -10225,7 +10219,7 @@ msgstr "Nom des colonnes : "
msgid "Invalid parameter for CSV import: %s"
msgstr "Paramètres invalides pour l'importation CSV: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@ -10235,13 +10229,13 @@ msgstr ""
"orthographiés correctement, séparés par des virgules et non entourés de "
"guillemets."
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Format invalide pour les données CSV à la ligne %d."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Nombre de colonnes invalide dans les données CSV à la ligne %d."
@ -10581,7 +10575,6 @@ msgstr ""
"pour le lien."
#: libraries/plugins/transformations/output/Text_Plain_Json.class.php:38
#| msgid "Formats text as SQL query with syntax highlighting."
msgid "Formats text as JSON with syntax highlighting."
msgstr "Formate le texte en JSON avec la coloration syntaxique."
@ -10744,7 +10737,7 @@ msgstr ""
msgid "no description"
msgstr "pas de description"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
@ -10752,7 +10745,7 @@ msgstr ""
"%sCréer%s le stockage de configurations phpMyAdmin dans la base de données "
"active."
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -12123,8 +12116,8 @@ msgstr "Survol des utilisateurs"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Note: phpMyAdmin obtient la liste des privilèges directement à partir des "
"tables MySQL. Le contenu de ces tables peut être différent des privilèges "
@ -13770,7 +13763,6 @@ msgid "Storage Engine:"
msgstr "Moteur de stockage : "
#: libraries/tbl_columns_definition_form.lib.php:81
#| msgid "Connections"
msgid "Connection:"
msgstr "Connexion :"
@ -14985,8 +14977,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
"Le ratio actuel de mémoire libre pour la cache de requêtes par rapport à la "
"mémoire totale de la cache est de %s%%. Il devrait se situer à plus de 80%%"
@ -15057,9 +15049,9 @@ msgid ""
"The ratio of removed queries to inserted queries is %s%%. The lower this "
"value is, the better (This rules firing limit: 0.1%%)"
msgstr ""
"Le ratio des requêtes enlevées par rapport aux requêtes ajoutées est de %s"
"%%. Il est souhaitable que cette valeur soit faible (Limite pour cette "
"règle: 0.1%%)"
"Le ratio des requêtes enlevées par rapport aux requêtes ajoutées est de %s%"
"%. Il est souhaitable que cette valeur soit faible (Limite pour cette règle: "
"0.1%%)"
#: libraries/advisory_rules.txt:195
msgid "Query cache max size"
@ -15138,8 +15130,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
"%s%% de tous les tris causent la création de tables temporaires, cette "
"valeur devrait être sous les 10%%."
@ -15670,8 +15662,8 @@ msgstr ""
msgid ""
"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
msgstr ""
"Max_used_connections est à %s%% de max_connections, devrait être sous les "
"80%%"
"Max_used_connections est à %s%% de max_connections, devrait être sous les 80%"
"%"
#: libraries/advisory_rules.txt:399
msgid "Percentage of aborted connections"
@ -16260,8 +16252,8 @@ msgstr "Le paramètre concurrent_insert a une valeur de 0"
#~ "%s."
#~ msgstr ""
#~ "Le validateur SQL n'a pas pu être initialisé. Vérifiez que les extensions "
#~ "PHP nécessaires ont bien été installées tel que décrit dans la "
#~ "%sdocumentation%s."
#~ "PHP nécessaires ont bien été installées tel que décrit dans la %"
#~ "sdocumentation%s."
#, fuzzy
#~| msgid "Error: Relation not added."

View File

@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-12-31 22:40+0200\n"
"Last-Translator: Robin van der Vliet <info@robinvandervliet.nl>\n"
"Language-Team: Frisian <https://hosted.weblate.org/projects/phpmyadmin/"
"master/fy/>\n"
"Language: fy\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: fy\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 2.2-dev\n"
@ -595,8 +595,8 @@ msgstr ""
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
#: import.php:343 import.php:626
@ -2966,25 +2966,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr ""
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Details…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3181,8 +3181,8 @@ msgstr ""
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
#: libraries/DisplayResults.class.php:4492
@ -4065,14 +4065,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -6862,8 +6862,9 @@ msgstr "Suhosin-warskôging"
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -7441,8 +7442,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -7924,8 +7925,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -9020,8 +9021,8 @@ msgstr "Wolkom by %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
@ -9502,20 +9503,20 @@ msgstr "Kolomnammen: "
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -9947,13 +9948,13 @@ msgstr ""
msgid "no description"
msgstr "gjin beskriuwing"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -11253,8 +11254,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
#: libraries/server_privileges.lib.php:4060
@ -13823,8 +13824,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -13942,8 +13943,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

149
po/gl.po
View File

@ -3,15 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-10-10 23:59+0200\n"
"Last-Translator: Xosé Calvo <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://hosted.weblate.org/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.10-dev\n"
@ -605,11 +605,11 @@ msgstr "Hai parámetros incompletos"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a "
"%sdocumentación%s para averiguar como evitar este límite."
"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a %"
"sdocumentación%s para averiguar como evitar este límite."
#: import.php:343 import.php:626
msgid "Showing bookmark"
@ -919,8 +919,8 @@ msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
"O servidor estáse a executar con Suhosin. Consulte os posíbeis problemas na "
"%sdocumentación%s."
"O servidor estáse a executar con Suhosin. Consulte os posíbeis problemas na %"
"sdocumentación%s."
#: js/messages.php:29 libraries/import.lib.php:125 sql.php:143
msgid "\"DROP DATABASE\" statements are disabled."
@ -3277,7 +3277,7 @@ msgstr "A mostrar o marcador"
msgid "Delete bookmark"
msgstr "Eliminar a relación"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@ -3285,19 +3285,19 @@ msgstr ""
"O servidor non responde (ou o socket local do servidor non se configurou "
"correctamente)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "O servidor non responde."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr "Comprobe os privilexios do directorio que contén a base de datos."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Detalles…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Fallou a conexión para «controluser» tal e como está definida na "
@ -3507,11 +3507,11 @@ msgstr "A consulta de SQL executouse sen problemas"
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation"
"%s."
"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation%"
"s."
#: libraries/DisplayResults.class.php:4492
#, fuzzy, php-format
@ -4455,8 +4455,8 @@ msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
"Un enteiro de dous bytes; o intervalo asinado é desde "
"-9.223.372.036.854.775.808 até 9.223.372.036.854.775.807; o intervalo sen "
"Un enteiro de dous bytes; o intervalo asinado é desde -"
"9.223.372.036.854.775.808 até 9.223.372.036.854.775.807; o intervalo sen "
"asinar é desde 0 até 18.446.744.073.709.551.615"
#: libraries/Types.class.php:330 libraries/Types.class.php:772
@ -4469,22 +4469,21 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"Un número de vírgula flutuante pequeno; os valores permitidos son "
"-3,402823466E+38 até -1,175494351E-38, 0 e 1,175494351E-38 até 3,402823466E"
"+38"
"Un número de vírgula flutuante pequeno; os valores permitidos son -"
"3,402823466E+38 até -1,175494351E-38, 0 e 1,175494351E-38 até 3,402823466E+38"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"Un número de vírgula flutuante de precisión dobre; os valores permitidos "
"son-1,7976931348623157E+308 até -2,2250738585072014E-308, 0 "
"e2,2250738585072014E-308 até 1,7976931348623157E+308"
"Un número de vírgula flutuante de precisión dobre; os valores permitidos son-"
"1,7976931348623157E+308 até -2,2250738585072014E-308, 0 e2,2250738585072014E-"
"308 até 1,7976931348623157E+308"
#: libraries/Types.class.php:336
msgid ""
@ -4530,9 +4529,9 @@ msgid ""
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
"Unha marca temporal; o intervalo é desde 1970-01-01 00:00:01 UTC até "
"2038-01-09 03:14:07 UTC, almacenado como o número de segundos desde a época "
"(1970-01-01 00:00:00 UTC)"
"Unha marca temporal; o intervalo é desde 1970-01-01 00:00:01 UTC até 2038-01-"
"09 03:14:07 UTC, almacenado como o número de segundos desde a época (1970-01-"
"01 00:00:00 UTC)"
#: libraries/Types.class.php:350 libraries/Types.class.php:788
#, php-format
@ -4750,8 +4749,8 @@ msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
"Unha marca temporal; o intervalo é desde «0000-01-01 00:00:01» UTC até "
"«9999-12-31 23:59:59» UTC; TIMESTAMP(6) pode almacenar microsegundos"
"Unha marca temporal; o intervalo é desde «0000-01-01 00:00:01» UTC até «9999-"
"12-31 23:59:59» UTC; TIMESTAMP(6) pode almacenar microsegundos"
#: libraries/Types.class.php:794
msgid ""
@ -5434,8 +5433,8 @@ msgstr ""
#: libraries/config/ServerConfigChecks.class.php:416
#, fuzzy, php-format
#| msgid ""
#| "If using cookie authentication and %sLogin cookie store%s is not 0, "
#| "%sLogin cookie validity%s must be set to a value less or equal to it."
#| "If using cookie authentication and %sLogin cookie store%s is not 0, %"
#| "sLogin cookie validity%s must be set to a value less or equal to it."
msgid ""
"If using [kbd]cookie[/kbd] authentication and %sLogin cookie store%s is not "
"0, %sLogin cookie validity%s must be set to a value less or equal to it."
@ -5447,18 +5446,18 @@ msgstr ""
#: libraries/config/ServerConfigChecks.class.php:423
#, fuzzy, php-format
#| msgid ""
#| "If you feel this is necessary, use additional protection settings - "
#| "%shost authentication%s settings and %strusted proxies list%s. However, "
#| "IP-based protection may not be reliable if your IP belongs to an ISP "
#| "where thousands of users, including you, are connected to."
#| "If you feel this is necessary, use additional protection settings - %"
#| "shost authentication%s settings and %strusted proxies list%s. However, IP-"
#| "based protection may not be reliable if your IP belongs to an ISP where "
#| "thousands of users, including you, are connected to."
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
"authentication%s settings and %strusted proxies list%s. However, IP-based "
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
"Se pensa que é preciso, empregue opcións de protección adicionais - "
"%sautenticación do servidor%s e %slista de proxies de confianza%s. Porén, a "
"Se pensa que é preciso, empregue opcións de protección adicionais - %"
"sautenticación do servidor%s e %slista de proxies de confianza%s. Porén, a "
"protección baseada no IP pode non ser de fiar se o IP pertence a un ISP ao "
"que estean ligados miles de usuarios, incluído vostede."
@ -8049,8 +8048,9 @@ msgstr "Aviso de Suhosin"
#| "Disable the default warning that is displayed on the Structure page if "
#| "column names in a table are reserved MySQL words"
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"Desactivar o aviso que por omisión se mostra na páxina da estrutura da base "
"de datos se os nomes de columna dunha táboa son palabras reservadas do MySQL"
@ -8737,8 +8737,8 @@ msgstr ", @TABLE@ será o nome da táboa"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Este valor interprétase utilizando %1$sstrftime%2$s, de maneira que pode "
"empregar cadeas de formato de tempo. Produciranse transformacións en "
@ -9301,8 +9301,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
"Pódese atopar documentación e información adicional sobre PBXT na %sPáxina "
"de PrimeBase XT %s."
@ -9845,8 +9845,8 @@ msgstr "O nome de clase «%1$s» é incorrecto; emprégase o predefinido «Nodo
#, php-format
msgid "Could not include class \"%1$s\", file \"%2$s\" not found"
msgstr ""
"Non foi imposíbel incluír a clase «%1$s»; non foi posíbel atopar o ficheiro "
"«%2$s»"
"Non foi imposíbel incluír a clase «%1$s»; non foi posíbel atopar o ficheiro «%2"
"$s»"
#: libraries/navigation/Nodes/Node.class.php:780
msgid "Expand/Collapse"
@ -10473,8 +10473,8 @@ msgstr "Reciba a benvida a %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Isto débese, posibelmente, a que non se creou un ficheiro de configuración. "
"Tal vez queira utilizar %1$ssetup script%2$s para crear un."
@ -11005,7 +11005,7 @@ msgstr "Nomes das columnas: "
msgid "Invalid parameter for CSV import: %s"
msgstr "Hai un parámetro non válido para a importación de CSV: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@ -11015,13 +11015,13 @@ msgstr ""
"columnas están ben escritos, separados por vírgulas e non encerrados entre "
"aspas."
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "O formato de entrada de CSV non é válido na liña %d."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "O número de columnas é incorrecto na entrada do CSV na liña %d."
@ -11568,14 +11568,14 @@ msgstr ""
msgid "no description"
msgstr "sen descrición"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "Faltan as táboas de almacenamento da configuración do phpMyAdmin"
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@ -12099,8 +12099,7 @@ msgid ""
msgstr ""
"Está a empregar a extensión obsoleta de PHP «mysql», que non pode xestionar "
"consultas múltiples. [strong]A execución de varias rutinas almacenadas pode "
"fallar![/strong] Empregue a extensión mellorada «mysqli para evitar "
"problemas."
"fallar![/strong] Empregue a extensión mellorada «mysqli para evitar problemas."
#: libraries/rte/rte_routines.lib.php:301
#: libraries/rte/rte_routines.lib.php:1139
@ -12988,8 +12987,8 @@ msgstr "Vista xeral dos usuarios"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Nota: phpMyAdmin recolle os privilexios dos usuarios directamente das táboas "
"de privilexios do MySQL. O contido destas táboas pode diferir dos "
@ -13578,9 +13577,9 @@ msgid ""
"The number of \"random\" read-aheads InnoDB initiated. This happens when a "
"query is to scan a large portion of a table but in random order."
msgstr ""
"Número de pre-lecturas «aleatorias» iniciadas por InnoDB. Isto acontece "
"cando unha consulta vai examinar unha porción grande dunha táboa mais en "
"orde aleatoria."
"Número de pre-lecturas «aleatorias» iniciadas por InnoDB. Isto acontece cando "
"unha consulta vai examinar unha porción grande dunha táboa mais en orde "
"aleatoria."
#: libraries/server_status_variables.lib.php:465
msgid ""
@ -15251,8 +15250,8 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
"Pode configurar máis opcións modificando config.inc.php, p.ex. usando o "
"%sScript de configuración%s."
"Pode configurar máis opcións modificando config.inc.php, p.ex. usando o %"
"sScript de configuración%s."
#: prefs_manage.php:315
msgid "Save to browser's storage"
@ -15674,8 +15673,8 @@ msgstr ""
#, php-format
msgid "The slow query rate should be below 5%%, your value is %s%%."
msgstr ""
"A taxa de consultas lentas deberían estar por debaixo do 5%% e o valor é %s"
"%%."
"A taxa de consultas lentas deberían estar por debaixo do 5%% e o valor é %s%"
"%."
#: libraries/advisory_rules.txt:70
msgid "Slow query rate"
@ -15892,8 +15891,8 @@ msgid ""
msgstr ""
"Sábese que a caché de consultas mellora moito o desempeño se se configura "
"axeitadamente. Actívea configurando {query_cache_size} a un valor de MiB de "
"dous díxitos e configurando {query_cache_type) como «ON». <b>Nota:</b> Se "
"vai empregar memcached, ignore esta recomendación."
"dous díxitos e configurando {query_cache_type) como «ON». <b>Nota:</b> Se vai "
"empregar memcached, ignore esta recomendación."
#: libraries/advisory_rules.txt:158
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
@ -15971,8 +15970,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
"A relación actual da memoria da caché de consultas e o tamaño total da caché "
"de consultas é de %s%%. Debería superar o 80%%"
@ -16127,8 +16126,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
"%s%% de todos os ordenamentos causan táboas temporais; este valor debería "
"estar por debaixo do 10%%."

View File

@ -3,15 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-10-22 15:46+0200\n"
"Last-Translator: Eyal Visoker <visokereyal@gmail.com>\n"
"Language-Team: Hebrew <https://hosted.weblate.org/projects/phpmyadmin/master/"
"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 2.0-dev\n"
@ -607,8 +607,8 @@ msgstr "חסרים נתונים בפרמטרים"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"כפי הנראה ניסית להעלות קובץ גדול מדי. נא לפנות ל%s תיעוד %s למצוא דרך לעקיפת "
"מגבלה זו."
@ -3335,27 +3335,27 @@ msgstr "הצגת סימנייה"
msgid "Delete bookmark"
msgstr "חיפוש"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "השרת אינו מגיב"
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr ""
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3583,8 +3583,8 @@ msgstr "שאילתת ה־SQL שלך בוצעה בהצלחה"
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr "לתצוגה זו יש לפחות מספר כזה של שורות. נא לפנות ל%sתיעוד%s."
#: libraries/DisplayResults.class.php:4492
@ -4546,14 +4546,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -7524,8 +7524,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -8187,8 +8188,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -8697,8 +8698,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -9871,8 +9872,8 @@ msgstr "ברוך הבא אל %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
@ -10429,20 +10430,20 @@ msgstr "שמות עמודה"
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -10909,13 +10910,13 @@ msgstr ""
msgid "no description"
msgstr "ללא תיאור"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -12332,8 +12333,8 @@ msgstr "סקירת משתמשים"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"הערה: phpMyAdmin מקבל הרשאות משתמש ישירות מטבלאות הרשאות של MySQL. התוכן של "
"הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן "
@ -15167,8 +15168,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -15297,8 +15298,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

View File

@ -3,15 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2015-02-04 18:16+0200\n"
"Last-Translator: Nisarg Jhaveri <nisargjhaveri@gmail.com>\n"
"Language-Team: Hindi "
"<https://hosted.weblate.org/projects/phpmyadmin/master/hi/>\n"
"Language: hi\n"
"Language-Team: Hindi <https://hosted.weblate.org/projects/phpmyadmin/master/"
"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 2.2-dev\n"
@ -34,7 +34,6 @@ msgstr "क्रमानुसार करने के लिए क्ल
#: db_central_columns.php:125
#, php-format
#| msgid "Showing rows"
msgid "Showing rows %1$s - %2$s."
msgstr "%1$s - %2$s रौ दिखा रहे है।"
@ -607,11 +606,11 @@ msgstr "अपूर्ण पैरामीटर"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"आप शायद बहुत बड़ी फाइल अपलोड करने की कोशिश कर रहे हैं. इस दुविधा के लिए कृपया करके "
"%sdocumentation%s पढ़ें."
"आप शायद बहुत बड़ी फाइल अपलोड करने की कोशिश कर रहे हैं. इस दुविधा के लिए कृपया करके %"
"sdocumentation%s पढ़ें."
#: import.php:343 import.php:626
msgid "Showing bookmark"
@ -3282,27 +3281,27 @@ msgstr "बुकमार्क प्रदर्शित किया जा
msgid "Delete bookmark"
msgstr "संबंध हटाना"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "सर्वर जवाब नहीं दे रहा"
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "विवरण…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3525,8 +3524,8 @@ msgstr "आपकी SQL कुएरी सफलता के साथ पू
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr "इस द्रश्य में कम से कम इतनी रो हैं. और जानने के लिए %s दस्तावेज़%s पढ़ें."
#: libraries/DisplayResults.class.php:4492
@ -4495,14 +4494,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -7787,8 +7786,9 @@ msgstr "Suhosin चेतावनी"
#| "Structure page if any of the required tables for the phpMyAdmin "
#| "configuration storage could not be found"
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"डेटाबेस पर डिफ़ॉल्ट चेतावनी जो प्रदर्शित की जाती है उसे निष्क्रिय करें. संरचना पृष्ठ अगर "
"phpMyAdmin विन्यास भंडारण के लिए आवश्यक टेबल को पाया नहीं जा सका"
@ -8452,8 +8452,8 @@ msgstr ", @टेबल@ टेबल का नाम बन जायेगा
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -8953,8 +8953,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -10136,11 +10136,11 @@ msgstr "%s मे स्वागत है"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script"
"%2$s का उपयोग करें."
"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script%2"
"$s का उपयोग करें."
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
msgid ""
@ -10690,20 +10690,20 @@ msgstr "कोलम नाम"
msgid "Invalid parameter for CSV import: %s"
msgstr "CSV आयात के लिए अमान्य पैरामीटर: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "CSV प्रारूप का अवैध इनपुट लाइन %d."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "CSV इनपुट में अवैध काँलम गिनती लाइन %d."
@ -11180,14 +11180,14 @@ msgstr ""
msgid "no description"
msgstr "कोई विवरण नहीं"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "phpMyAdmin विन्यास भंडारण टेबल लापता"
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@ -12642,8 +12642,8 @@ msgstr "यूसर सिंहावलोकन"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
#: libraries/server_privileges.lib.php:4060
@ -15530,8 +15530,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -15664,8 +15664,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

View File

@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-03-28 11:02+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Croatian <https://hosted.weblate.org/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"
"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"
"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.9-dev\n"
#: changelog.php:36 license.php:28
@ -631,14 +631,14 @@ msgstr "Dovrši umetanja"
#: import.php:163
#, fuzzy, php-format
#| msgid ""
#| "You probably tried to upload too large file. Please refer to "
#| "%sdocumentation%s for ways to workaround this limit."
#| "You probably tried to upload too large file. Please refer to %"
#| "sdocumentation%s for ways to workaround this limit."
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte "
"%sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja."
"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte %"
"sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja."
#: import.php:343 import.php:626
msgid "Showing bookmark"
@ -3434,7 +3434,7 @@ msgstr "Prikazivanje oznake"
msgid "Delete bookmark"
msgstr "Izbriši relaciju"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@ -3443,21 +3443,21 @@ msgid ""
msgstr ""
"(ili priključak lokalnog MySQL poslužitelja nije ispravno konfiguriran)"
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Poslužitelj ne odgovara"
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Detalji…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Povezivanje kontrolnih korisnika na način kako je definirano u vašoj "
@ -3688,8 +3688,8 @@ msgstr "Vaš SQL upit uspješno je izvršen"
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Ovaj prikaz sadrži najmanje ovoliko redaka. Proučite %sdokumentaciju%s."
@ -4669,14 +4669,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -7725,8 +7725,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -8394,12 +8395,12 @@ msgstr ""
#, fuzzy, php-format
#| msgid ""
#| "s value is interpreted using %1$sstrftime%2$s, so you can use time "
#| "matting strings. Additionally the following transformations will pen: "
#| "%3$s. Other text will be kept as is."
#| "matting strings. Additionally the following transformations will pen: %3"
#| "$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Vrijednost se interpretira pomoću %1$sstrftime%2$s, pa možete upotrijebiti "
"naredbe oblikovanja vremena. Dodatno se mogu dogoditi sljedeća "
@ -8972,8 +8973,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -10176,8 +10177,8 @@ msgstr "Dobro došli u %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Vjerojatan razlog za ovo je da niste napravili konfiguracijsku datoteku. Za "
"izradu možete upotrijebiti %1$sskriptu za instalaciju%2$s da biste je "
@ -10738,20 +10739,20 @@ msgstr "Nazivi stupaca"
msgid "Invalid parameter for CSV import: %s"
msgstr "Neispravan parametar za CSV uvoz: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Neispravno oblikovanje u CSV unosu unutar retka %d."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, fuzzy, php-format
#| msgid "Invalid field count in CSV input on line %d."
msgid "Invalid column count in CSV input on line %d."
@ -11313,13 +11314,13 @@ msgstr ""
msgid "no description"
msgstr "bez opisa"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -12784,8 +12785,8 @@ msgstr "Pregled korisnika"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Napomena: phpMyAdmin preuzima korisničke privilegije izravno iz MySQL "
"tablica privilegija. U slučaju da su ručno mijenjane, sadržaj ovih tablica "
@ -15800,8 +15801,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -15935,8 +15936,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218
@ -17688,8 +17689,8 @@ msgstr "najv. uzastopnih veza"
#~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] "
#~ "extension. Please check your PHP configuration."
#~ msgstr ""
#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation]"
#~ "[em]%1$s[/em][/a] . Provjerite svoju PHP konfiguraciju."
#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation][em]%1"
#~ "$s[/em][/a] . Provjerite svoju PHP konfiguraciju."
#~ msgid ""
#~ "Couldn't load the iconv or recode extension needed for charset "

211
po/hu.po
View File

@ -3,11 +3,11 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"PO-Revision-Date: 2015-01-18 10:27+0200\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2015-02-08 20:27+0200\n"
"Last-Translator: Balázs Úr <urbalazs@gmail.com>\n"
"Language-Team: Hungarian <https://hosted.weblate.org/projects/phpmyadmin/"
"master/hu/>\n"
"Language-Team: Hungarian "
"<https://hosted.weblate.org/projects/phpmyadmin/master/hu/>\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -599,11 +599,11 @@ msgstr "Hiányos paraméterek"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a "
"%sdokumentációban%s a korlátozás feloldása végett."
"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a %"
"sdokumentációban%s a korlátozás feloldása végett."
#: import.php:343 import.php:626
msgid "Showing bookmark"
@ -843,7 +843,6 @@ msgstr ""
"vezethet."
#: index.php:488
#, fuzzy
#| msgid ""
#| "Your PHP parameter [a@http://php.net/manual/en/session.configuration."
#| "php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower "
@ -856,9 +855,9 @@ msgid ""
"expire sooner than configured in phpMyAdmin."
msgstr ""
"A [a@http://php.net/manual/en/session.configuration.php#ini.session.gc-"
"maxlifetime@]session.gc_maxlifetime[/a] paraméter alacsonyabb a "
"phpMyAdminban beállított cookie érvényességénél, Emiatt a bejelentkezése a "
"phpMyAdminban beállítottnál előbb fog lejárni."
"maxlifetime@_blank]session.gc_maxlifetime[/a] paraméter alacsonyabb a "
"phpMyAdminban beállított cookie érvényességénél. Emiatt a bejelentkezése a "
"phpMyAdminban beállítottnál előbb járhat le."
#: index.php:501
msgid ""
@ -1648,7 +1647,7 @@ msgstr "Teszt"
#: js/messages.php:249
msgid "Formatting SQL..."
msgstr ""
msgstr "SQL formázása…"
#: js/messages.php:253 libraries/db_designer.lib.php:823
#: libraries/db_designer.lib.php:872 libraries/db_designer.lib.php:1016
@ -2339,41 +2338,40 @@ msgstr "Eltávolítás a fő panelről"
#: js/messages.php:479
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
"A kiszolgálón lévő összes adatbázis szűréséhez nyomja meg azt Entert a "
"keresési kifejezés után"
#: js/messages.php:480
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
"Az adatbázisban lévő összes %s szűréséhez nyomja meg azt Entert a keresési "
"kifejezés után"
#: js/messages.php:481
#, fuzzy
#| msgid "Tables"
msgid "tables"
msgstr "Tábla"
msgstr "táblák"
#: js/messages.php:482
#, fuzzy
#| msgid "Views"
msgid "views"
msgstr "Nézetek"
msgstr "nézetek"
#: js/messages.php:483
#, fuzzy
#| msgid "Procedures"
msgid "procedures"
msgstr "Eljárások"
msgstr "eljárások"
#: js/messages.php:484
#, fuzzy
#| msgid "event"
msgid "events"
msgstr "esemény"
msgstr "események"
#: js/messages.php:485
#, fuzzy
#| msgid "Functions"
msgid "functions"
msgstr "Függvények"
msgstr "függvények"
#: js/messages.php:488
msgid "The requested page was not found in the history, it may have expired."
@ -3108,7 +3106,7 @@ msgstr "Könyvjelző frissítése"
msgid "Delete bookmark"
msgstr "Könyvjelző törlése"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@ -3116,20 +3114,20 @@ msgstr ""
"A kiszolgáló nem válaszol (vagy a helyi kiszolgáló socket nincs megfelelően "
"beállítotva)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "A kiszolgáló nem válaszol."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
"Kérjük, ellenőrizze az adatbázist tartalmazó könyvtár hozzáférési jogait."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Részletek…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"A konfigurációban meghatározott kapcsolat a kontrollfelhasználó számára nem "
@ -3328,11 +3326,11 @@ msgstr "Az SQL-lekérdezés végrehajtása sikerült."
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a "
"%sdokumentációban%s."
"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a %"
"sdokumentációban%s."
#: libraries/DisplayResults.class.php:4492
#, php-format
@ -4243,16 +4241,16 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"Small floating-point szám, értéktartománya -3.402823466E+38 és "
"-1.175494351E-38 között, 0, 1.175494351E-38 és 3.402823466E+38 között"
"Small floating-point szám, értéktartománya -3.402823466E+38 és -1.175494351E-"
"38 között, 0, 1.175494351E-38 és 3.402823466E+38 között"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"Double-precision floating-point szám, értéktartománya -1.7976931348623157E"
@ -4559,11 +4557,10 @@ msgid "Create PHP Code"
msgstr "PHP-kód létrehozása"
#: libraries/Util.class.php:1275
#, fuzzy
#| msgid "Edit index"
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "Index szerkesztése"
msgstr "Szerkesztés helyben"
#. l10n: Short week day name
#: libraries/Util.class.php:1580
@ -4899,13 +4896,12 @@ msgstr "Letiltott"
#: libraries/config.values.php:98
msgid "key"
msgstr ""
msgstr "kulcs"
#: libraries/config.values.php:99
#, fuzzy
#| msgid "Display columns table"
msgid "display column"
msgstr "Oszlopok tábla megjelenítése"
msgstr "oszlop megjelenítése"
#: libraries/config.values.php:122
msgid "Open"
@ -5152,8 +5148,8 @@ msgid ""
"%sLogin cookie validity%s greater than %ssession.gc_maxlifetime%s may cause "
"random session invalidation (currently session.gc_maxlifetime is %d)."
msgstr ""
"A %sLogin cookie validity%s, amely nagyobb, mint a %ssession.gc_maxlifetime"
"%s, véletlenszerű munkamenet érvénytelenítést okozhat (a session."
"A %sLogin cookie validity%s, amely nagyobb, mint a %ssession.gc_maxlifetime%"
"s, véletlenszerű munkamenet érvénytelenítést okozhat (a session."
"gc_maxlifetime értéke jelenleg: %d)."
#: libraries/config/ServerConfigChecks.class.php:410
@ -5184,8 +5180,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
"Ha szükségesnek érzi, használjon további védelmi beállításokat: "
"%sgéphitelesítés%s beállítások és %smegbízható proxyk listája%s. Az IP-alapú "
"Ha szükségesnek érzi, használjon további védelmi beállításokat: %"
"sgéphitelesítés%s beállítások és %smegbízható proxyk listája%s. Az IP-alapú "
"védelem azonban lehet, hogy nem megbízható, ha az Ön IP-címe olyan "
"internetszolgáltatóhoz tartozik, ahol több ezer felhasználó, köztük Ön is, "
"csatlakozik az internethez."
@ -6332,13 +6328,12 @@ msgstr "A memória korlátozása"
#: libraries/config/messages.inc.php:418
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
msgstr "A navigációs panelen lecseréli az adatbázisfát egy kiválasztóra"
#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Show hidden navigation tree items."
msgid "Show databases navigation as tree"
msgstr "Rejtett navigációs faszerkezet elemeinek megjelenítése."
msgstr "Adatbázisok navigációjának megjelenítése faszerkezetként"
#: libraries/config/messages.inc.php:420
msgid "Link with main panel by highlighting the current database or table."
@ -6641,16 +6636,14 @@ msgid "Grid editing: trigger action"
msgstr "Rács szerkesztés: eseményindító művelet"
#: libraries/config/messages.inc.php:535
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "Relációs megjelenítési oszlop"
msgstr "Relációs megjelenítés"
#: libraries/config/messages.inc.php:536
#, fuzzy
#| msgid "Servers display options."
msgid "For display Options"
msgstr "A kiszolgálók megjelenítésének beállításai."
msgstr "A beállítások megjelenítéséhez"
#: libraries/config/messages.inc.php:537
msgid "Grid editing: save all edited cells at once"
@ -7350,22 +7343,22 @@ msgid "Suhosin warning"
msgstr "Suhosin figyelmeztetés"
#: libraries/config/messages.inc.php:757
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the Structure page if "
#| "column names in a table are reserved MySQL words."
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"A Szerkezet oldalon megjelenített alapértelmezett figyelmeztetés letiltása, "
"ha a táblában lévő oszlopnevek a MySQL által fenntartott szavak."
"A főoldalon megjelenített alapértelmezett figyelmeztetés letiltása, ha a "
"session.gc_maxlifetime PHP beállítás értéke kisebb a „LoginCookieValidity” "
"értékénél."
#: libraries/config/messages.inc.php:758
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "A bejelentkezési cookie érvényessége"
msgstr "Bejelentkezési cookie érvényesség figyelmeztetés"
#: libraries/config/messages.inc.php:759
msgid ""
@ -7967,8 +7960,8 @@ msgstr ", @TABLE@ lesz a tábla neve"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Ennek az értéknek az értelmezése a(z) %1$sstrftime%2$s használatával "
"történik, vagyis időformázó karakterláncokat használhat. Továbbá a következő "
@ -8515,11 +8508,11 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
"Dokumentáció és további információ a PBXT honlapján: %sPrimeBase XT Honlap:"
"%s."
"Dokumentáció és további információ a PBXT honlapján: %sPrimeBase XT Honlap:%"
"s."
#: libraries/engines/pbxt.lib.php:138
msgid "Related Links"
@ -9001,19 +8994,18 @@ msgstr ""
"panelen."
#: libraries/navigation/NavigationTree.class.php:864
#, fuzzy, php-format
#, php-format
#| msgid "%s other result found"
#| msgid_plural "%s other results found"
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] "%s további találat"
msgstr[1] "%s további találat"
msgstr[0] "%s eredmény található"
msgstr[1] "%s eredmény található"
#: libraries/navigation/NavigationTree.class.php:1203
#, fuzzy
#| msgid "Please select a database"
msgid "Please select a database."
msgstr "Válasszon adatbázist"
msgstr "Válasszon egy adatbázist."
#: libraries/navigation/NavigationTree.class.php:1261
msgid "Filter databases by name or regex"
@ -9685,11 +9677,11 @@ msgstr "Üdvözli a %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A "
"%1$stelepítőszkripttel%2$s el tudja készíteni."
"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A %1"
"$stelepítőszkripttel%2$s el tudja készíteni."
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
msgid ""
@ -10202,7 +10194,7 @@ msgstr "Oszlopnevek: "
msgid "Invalid parameter for CSV import: %s"
msgstr "A CSV importálás paramétere érvénytelen: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@ -10211,13 +10203,13 @@ msgstr ""
"Érvénytelen oszlop (%s) van megadva! Győződjön meg arról, hogy oszlopok "
"nevét helyesen írta, vesszővel lett elválasztva, nem idézőjellel."
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "A CSV bevitel %d. sorában a formázás érvénytelen."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Érvénytelen oszlopszám a CSV bemenet %d. sorában."
@ -10514,7 +10506,7 @@ msgstr "Az ellenőrzés nem sikerült a következő bemeneti karakterláncnál:
#: libraries/plugins/transformations/abstract/SQLTransformationsPlugin.class.php:31
msgid "Formats text as SQL query with syntax highlighting."
msgstr "SQL-lekérdezésként, színkódolással formázza a szöveget."
msgstr "SQL-lekérdezésként formázza a szöveget szintaxis kiemeléssel."
#: libraries/plugins/transformations/abstract/SubstringTransformationsPlugin.class.php:31
msgid ""
@ -10559,10 +10551,9 @@ msgstr ""
"lehetőség a hivatkozás címe."
#: libraries/plugins/transformations/output/Text_Plain_Json.class.php:38
#, fuzzy
#| msgid "Formats text as SQL query with syntax highlighting."
msgid "Formats text as JSON with syntax highlighting."
msgstr "SQL-lekérdezésként, színkódolással formázza a szöveget."
msgstr "JSON-ként formázza a szöveget szintaxis kiemeléssel."
#: libraries/pmd_common.php:492
msgid "Error: relation already exists."
@ -10723,13 +10714,13 @@ msgstr ""
msgid "no description"
msgstr "nincs leírás"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "A phpMyAdmin beállítástároló %slétrehozása%s a jelenlegi adatbázisban."
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr "Hiányzó phpMyAdmin beállítástároló táblák %slétrehozása%s."
@ -12086,13 +12077,13 @@ msgstr "Felhasználók áttekintése"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Megjegyzés: a phpMyAdmin a felhasználók jogait közvetlenül a MySQL "
"privilégium táblákból veszi. Ezen táblák tartalma eltérhet a szerver által "
"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben "
"%stöltse be újra a jogokat%s a folytatás előtt."
"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben %"
"stöltse be újra a jogokat%s a folytatás előtt."
#: libraries/server_privileges.lib.php:4060
msgid "The selected user was not found in the privilege table."
@ -13532,10 +13523,9 @@ msgid "Add %s column(s)"
msgstr "%s oszlop hozzáadása"
#: libraries/structure.lib.php:1712
#, fuzzy
#| msgid "Beginning of table"
msgid "at beginning of table"
msgstr "A tábla eleje"
msgstr "a tábla elejénél"
#: libraries/structure.lib.php:1717
#: libraries/tbl_columns_definition_form.lib.php:827
@ -13733,10 +13723,9 @@ msgid "Storage Engine:"
msgstr "Tárolómotor:"
#: libraries/tbl_columns_definition_form.lib.php:81
#, fuzzy
#| msgid "Connections"
msgid "Connection:"
msgstr "Kapcsolatok"
msgstr "Kapcsolat:"
#: libraries/tbl_columns_definition_form.lib.php:127
msgid "PARTITION definition:"
@ -13878,24 +13867,22 @@ msgstr ""
"b> lennie!"
#: libraries/tbl_indexes.lib.php:307
#, fuzzy
#| msgid "Index cache size"
msgid "Index choice:"
msgstr "Indexgyorsítótár mérete"
msgstr "Index választás:"
#: libraries/tbl_indexes.lib.php:323
msgid "Key block size:"
msgstr ""
msgstr "Kulcs blokkméret:"
#: libraries/tbl_indexes.lib.php:335
msgid "Index type:"
msgstr "Index típusa:"
#: libraries/tbl_indexes.lib.php:347
#, fuzzy
#| msgid "User:"
msgid "Parser:"
msgstr "Felhasználó:"
msgstr "Feldolgozó:"
#: libraries/tbl_indexes.lib.php:359
msgid "Comment:"
@ -14248,8 +14235,8 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
"További beállításokat állíthat be a config.inc.php modosításával, pl. "
"%sBeállító parancsfájl%s használatával."
"További beállításokat állíthat be a config.inc.php modosításával, pl. %"
"sBeállító parancsfájl%s használatával."
#: prefs_manage.php:315
msgid "Save to browser's storage"
@ -14653,8 +14640,8 @@ msgstr ""
#, php-format
msgid "The slow query rate should be below 5%%, your value is %s%%."
msgstr ""
"A lassú lekérdezések mértékének kisebbnek kellene 5%%nál lennie, az érték %s"
"%%."
"A lassú lekérdezések mértékének kisebbnek kellene 5%%nál lennie, az érték %s%"
"%."
#: libraries/advisory_rules.txt:70
msgid "Slow query rate"
@ -14673,8 +14660,8 @@ msgid ""
"You have a slow query rate of %s per hour, you should have less than 1%% per "
"hour."
msgstr ""
"A lassú lekérdezések mértéke %s óránként, kevesebbnek kellene lennie, mint "
"1%% óránként."
"A lassú lekérdezések mértéke %s óránként, kevesebbnek kellene lennie, mint 1%"
"% óránként."
#: libraries/advisory_rules.txt:77
msgid "Long query time"
@ -14945,8 +14932,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
"A szabad lekérdezési gyorsítótár-memória jelenlegi aránya a teljes "
"lekérdezési gyorsítótár méretéhez %s%%. 80%% felett kellene lennie"
@ -15103,8 +15090,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
"A rendezések %s%%-a átmeneti táblákat hoz létre, ennek az értéknek "
"alacsonyabbnak kell lennie, mint 10%%."
@ -16240,8 +16227,8 @@ msgstr "A concurrent_insert 0-ra van állítva"
#~ "installed the necessary PHP extensions as described in the %sdocumentation"
#~ "%s."
#~ msgstr ""
#~ "Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a "
#~ "%sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-"
#~ "Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a %"
#~ "sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-"
#~ "kiterjesztést."
#, fuzzy
@ -17006,8 +16993,8 @@ msgstr "A concurrent_insert 0-ra van állítva"
#~ "No themes support; please check your configuration and/or your themes in "
#~ "directory %s."
#~ msgstr ""
#~ "Nincs téma támogatás, ellenőrizze a beállításokat és/vagy a témákat a(z) "
#~ "%s könyvtárban."
#~ "Nincs téma támogatás, ellenőrizze a beállításokat és/vagy a témákat a(z) %"
#~ "s könyvtárban."
#~ msgid "Switch to"
#~ msgstr "Váltás"

View File

@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-11-14 19:09+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Armenian <https://hosted.weblate.org/projects/phpmyadmin/"
"master/hy/>\n"
"Language: hy\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: hy\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 2.1-dev\n"
@ -618,8 +618,8 @@ msgstr ""
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
#: import.php:343 import.php:626
@ -3055,25 +3055,25 @@ msgstr "Հեռացնել"
msgid "Delete bookmark"
msgstr "Հեռացնել"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr ""
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr ""
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3273,8 +3273,8 @@ msgstr ""
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
#: libraries/DisplayResults.class.php:4492
@ -4179,14 +4179,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -6994,8 +6994,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -7579,8 +7580,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -8070,8 +8071,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -9198,8 +9199,8 @@ msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
@ -9700,20 +9701,20 @@ msgstr ""
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -10160,13 +10161,13 @@ msgstr ""
msgid "no description"
msgstr ""
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -11465,8 +11466,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
#: libraries/server_privileges.lib.php:4060
@ -14085,8 +14086,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -14204,8 +14205,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

132
po/ia.po
View File

@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2015-02-04 22:14+0200\n"
"Last-Translator: Giovanni Sora <g.sora@tiscali.it>\n"
"Language-Team: Interlingua "
"<https://hosted.weblate.org/projects/phpmyadmin/master/ia/>\n"
"Language: ia\n"
"Language-Team: Interlingua <https://hosted.weblate.org/projects/phpmyadmin/"
"master/ia/>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ia\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 2.2-dev\n"
@ -262,8 +262,8 @@ msgstr "Le base de datos %1$s ha essite copiate como %2$s."
msgid ""
"The phpMyAdmin configuration storage has been deactivated. %sFind out why%s."
msgstr ""
"Le immagazinage de configuration de phpMyAdmin ha essite deactivate. "
"%sDiscoperi perque%s."
"Le immagazinage de configuration de phpMyAdmin ha essite deactivate. %"
"sDiscoperi perque%s."
#: db_printview.php:48 db_tracking.php:124 db_tracking.php:264
#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:770
@ -609,8 +609,8 @@ msgstr "Parametros incomplete"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Probabilemente tu es essayante incargar un file troppo grande. Pro favor tu "
"refere al %sdocumentation%s pro eluder iste limite."
@ -853,22 +853,16 @@ msgstr ""
"pote divider catenas correctemente e on poterea obtener exitos inexpectate."
#: index.php:488
#| msgid ""
#| "Your PHP parameter [a@http://php.net/manual/en/session.configuration."
#| "php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower "
#| "than cookie validity configured in phpMyAdmin, because of this, your "
#| "login will expire sooner than configured in phpMyAdmin."
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than "
"cookie validity configured in phpMyAdmin, because of this, your login might "
"expire sooner than configured in phpMyAdmin."
msgstr ""
"Tu parametro PHP "
"[a@http://php.net/manual/en/session.configuration.php#ini.session.gc-"
"maxlifetime@_blank]session.gc_maxlifetime[/a] es inferior del validitate de "
"cookie configurate in phpMyAdmin, debite a isto, tu authentication poterea "
"expirar ante que lo que es configurate in phpMyAdmin."
"Tu parametro PHP [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] es inferior del "
"validitate de cookie configurate in phpMyAdmin, debite a isto, tu "
"authentication poterea expirar ante que lo que es configurate in phpMyAdmin."
#: index.php:501
msgid ""
@ -929,8 +923,8 @@ msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
"Sur le servitor es executante Suhosin. Controla le documentation: "
"%sdocumentation%s pro possibile problema."
"Sur le servitor es executante Suhosin. Controla le documentation: %"
"sdocumentation%s pro possibile problema."
#: js/messages.php:29 libraries/import.lib.php:125 sql.php:143
msgid "\"DROP DATABASE\" statements are disabled."
@ -2258,8 +2252,8 @@ msgstr ""
#: js/messages.php:437
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
"Pro favor, tu inserta in valide catena hexadecimal. Characteres valide es "
"0-9, A-F."
"Pro favor, tu inserta in valide catena hexadecimal. Characteres valide es 0-"
"9, A-F."
#: js/messages.php:438
msgid ""
@ -3123,7 +3117,7 @@ msgstr "Actualisa marcator de libro"
msgid "Delete bookmark"
msgstr "Dele marcator de libro"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@ -3131,21 +3125,21 @@ msgstr ""
"Le servitor non es respondente (o le socket del servitor local non es "
"configurate correctemente)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "Le servitor non es respondente."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
"Pro favor, controla le permissiones del directorio continente le base de "
"datos."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Detalios…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Connexion per usatores de controlo de usator (controluser) falleva como in "
@ -3344,11 +3338,11 @@ msgstr "Le demanda (query) SQL ha essite executate con successo."
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Iste vista ha al minus iste numero de rangos. Pro favor refere a "
"%sdocumentation%s."
"Iste vista ha al minus iste numero de rangos. Pro favor refere a %"
"sdocumentation%s."
#: libraries/DisplayResults.class.php:4492
#, php-format
@ -4245,9 +4239,9 @@ msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
"Le extension de un integer de 8 bytes signate es ex "
"--9,223,372,036,854,775,808 a 9,223,372,036,854,775,807, si non signate es "
"ex 0 a 18,446,744,073,709,551,615"
"Le extension de un integer de 8 bytes signate es ex --"
"9,223,372,036,854,775,808 a 9,223,372,036,854,775,807, si non signate es ex "
"0 a 18,446,744,073,709,551,615"
#: libraries/Types.class.php:330 libraries/Types.class.php:772
msgid ""
@ -4260,17 +4254,16 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"Pro un parve numero a virgula/puncto mobile, valores disponibile es ex "
"-3.402823466E+38 a -1.175494351E-38, 0, e ex 1.175494351E-38 a 3.402823466E"
"+38"
"Pro un parve numero a virgula/puncto mobile, valores disponibile es ex -"
"3.402823466E+38 a -1.175494351E-38, 0, e ex 1.175494351E-38 a 3.402823466E+38"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"Pro un numero a virgula/puncto mobile de duple precision, valores "
@ -4322,8 +4315,8 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
"Un marca de tempore, extension es 1970-01-01 00:00:01 UTC to 2038-01-09 "
"03:14:07 UTC, immagazinate como le numero de secundas ex le epocha "
"(1970-01-01 00:00:00 UTC)"
"03:14:07 UTC, immagazinate como le numero de secundas ex le epocha (1970-01-"
"01 00:00:00 UTC)"
#: libraries/Types.class.php:350 libraries/Types.class.php:788
#, php-format
@ -4587,7 +4580,6 @@ msgid "Create PHP Code"
msgstr "Crea codice PHP"
#: libraries/Util.class.php:1275
#| msgid "Edit in window"
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "Modifica in linea (inline)"
@ -7382,18 +7374,19 @@ msgid "Suhosin warning"
msgstr "Aviso de Suhosin"
#: libraries/config/messages.inc.php:757
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the Structure page if "
#| "column names in a table are reserved MySQL words."
#| "Disable the default warning that is displayed on the main page if session."
#| "gc_maxlifetime is less than `LoginCookieValidity`."
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"Dishabilita le aviso predefinite que es monstrate sur le pagina principal si "
"session.gc_maxlifetime es minor que `LoginCookieValidity`."
#: libraries/config/messages.inc.php:758
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "Avis de validitate de cookie de authentication de accesso"
@ -8002,8 +7995,8 @@ msgstr ", @TABLE@ devenira le nomine de tabella"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Iste valor es interpretate per usar %1$sstrftime%2$s, assi que tu pote usar "
"catenas de formatation per le datas/tempore. Anque on potera adder le "
@ -8553,11 +8546,11 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
"Documentation e ulterior information re PBXT pote esser trovate a "
"%sPrimeBase XT Home Page%s."
"Documentation e ulterior information re PBXT pote esser trovate a %"
"sPrimeBase XT Home Page%s."
#: libraries/engines/pbxt.lib.php:138
msgid "Related Links"
@ -9665,8 +9658,8 @@ msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
@ -10171,20 +10164,20 @@ msgstr "Nomines de columna: "
msgid "Invalid parameter for CSV import: %s"
msgstr "Parametro invalide per le importation de CSV: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -10618,7 +10611,7 @@ msgstr ""
msgid "no description"
msgstr ""
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
@ -10626,7 +10619,7 @@ msgstr ""
"%sCrea%s le immagazinage de configuration de phpMyAdmin in le base de datos "
"currente."
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -11928,8 +11921,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
#: libraries/server_privileges.lib.php:4060
@ -13386,7 +13379,6 @@ msgid "Storage Engine:"
msgstr ""
#: libraries/tbl_columns_definition_form.lib.php:81
#| msgid "Connections"
msgid "Connection:"
msgstr "Connexion:"
@ -14496,8 +14488,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -14615,8 +14607,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

115
po/id.po
View File

@ -3,15 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2015-01-29 02:58+0200\n"
"Last-Translator: Dadan Setia <da2n_s@yahoo.co.id>\n"
"Language-Team: Indonesian <https://hosted.weblate.org/projects/phpmyadmin/"
"master/id/>\n"
"Language: id\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: id\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 2.2-dev\n"
"X-Poedit-Basepath: ../../..\n"
@ -602,11 +602,11 @@ msgstr "Parameter kurang lengkap"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Anda mungkin mencoba mengunggah berkas yang terlalu besar. Silahkan lihat "
"%sdokumentasi%s untuk mendapatkan solusi tentang batasan ini."
"Anda mungkin mencoba mengunggah berkas yang terlalu besar. Silahkan lihat %"
"sdokumentasi%s untuk mendapatkan solusi tentang batasan ini."
#: import.php:343 import.php:626
msgid "Showing bookmark"
@ -3202,7 +3202,7 @@ msgstr "Perbarui bookmark"
msgid "Delete bookmark"
msgstr "Hapus bookmark"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@ -3210,19 +3210,19 @@ msgstr ""
"Server tidak merespons (atau soket server lokal tidak dikonfigurasi dengan "
"benar)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "Server tidak merespons."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr "Harap periksa hak akses direktori basis data."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Rincian…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Koneksi untuk controluser yang di definisikan di konfigurasi Anda gagal."
@ -3418,11 +3418,11 @@ msgstr "Kueri SQL Anda berhasil dieksekusi."
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Sebuah view setidaknya mempunyai jumlah kolom berikut. Harap lihat "
"%sdokumentasi%s."
"Sebuah view setidaknya mempunyai jumlah kolom berikut. Harap lihat %"
"sdokumentasi%s."
#: libraries/DisplayResults.class.php:4492
#, php-format
@ -4342,20 +4342,20 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"small floating-point number, mengizinkan nilai dari -3.402823466E+38 sampai "
"-1.175494351E-38, 0, dan 1.175494351E-38 sampai 3.402823466E+38"
"small floating-point number, mengizinkan nilai dari -3.402823466E+38 sampai -"
"1.175494351E-38, 0, dan 1.175494351E-38 sampai 3.402823466E+38"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"double-precision floating-point number, mengizinkan nilai antara "
"-1.7976931348623157E+308 sampai -2.2250738585072014E-308, 0, dan "
"double-precision floating-point number, mengizinkan nilai antara -"
"1.7976931348623157E+308 sampai -2.2250738585072014E-308, 0, dan "
"2.2250738585072014E-308 sampai 1.7976931348623157E+308"
#: libraries/Types.class.php:336
@ -5306,22 +5306,22 @@ msgstr ""
#: libraries/config/ServerConfigChecks.class.php:416
#, fuzzy, php-format
#| msgid ""
#| "If using cookie authentication and %sLogin cookie store%s is not 0, "
#| "%sLogin cookie validity%s must be set to a value less or equal to it."
#| "If using cookie authentication and %sLogin cookie store%s is not 0, %"
#| "sLogin cookie validity%s must be set to a value less or equal to it."
msgid ""
"If using [kbd]cookie[/kbd] authentication and %sLogin cookie store%s is not "
"0, %sLogin cookie validity%s must be set to a value less or equal to it."
msgstr ""
"JIka menggunakan otentikasi cookie dan %sLogin cookie store%s bukan 0, "
"%sLogin cookie validity%s harus diatur ke nilai kurang atau sama dengan itu."
"JIka menggunakan otentikasi cookie dan %sLogin cookie store%s bukan 0, %"
"sLogin cookie validity%s harus diatur ke nilai kurang atau sama dengan itu."
#: libraries/config/ServerConfigChecks.class.php:423
#, fuzzy, php-format
#| msgid ""
#| "If you feel this is necessary, use additional protection settings - "
#| "%shost authentication%s settings and %strusted proxies list%s. However, "
#| "IP-based protection may not be reliable if your IP belongs to an ISP "
#| "where thousands of users, including you, are connected to."
#| "If you feel this is necessary, use additional protection settings - %"
#| "shost authentication%s settings and %strusted proxies list%s. However, IP-"
#| "based protection may not be reliable if your IP belongs to an ISP where "
#| "thousands of users, including you, are connected to."
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
"authentication%s settings and %strusted proxies list%s. However, IP-based "
@ -5345,8 +5345,8 @@ msgstr ""
"Anda mengatur [kbd]config[/kbd] tipe otentikasi dan termasuk username dan "
"password untuk login otomatis, yang mana bukan pilihan yang tepat untuk host "
"selalu aktif. Siapapun yang mengetahui atau menebak URL phpMyAdmin anda "
"dapat langsung mengakses panel phpMyAdmin anda. Set type%s "
"%sauthentication ke [kbd]cookie[/kbd] atau [kbd]http[/kbd]."
"dapat langsung mengakses panel phpMyAdmin anda. Set type%s %"
"sauthentication ke [kbd]cookie[/kbd] atau [kbd]http[/kbd]."
#: libraries/config/ServerConfigChecks.class.php:437
#, php-format
@ -7610,8 +7610,9 @@ msgstr "Peringatan Suhosin"
#| "Disable the default warning that is displayed on the Structure page if "
#| "column names in a table are reserved MySQL words."
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"Nonaktifkan peringatan bawaan yang ditampilkan sewaktu nama kolom dalam "
"tabel tabel telah dipesan oleh MySQL."
@ -8259,8 +8260,8 @@ msgstr ", @TABLE@ akan menjadi nama tabel"
#, fuzzy, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Nilai ini ditafsir menggunakan %1$sstrftime%2$s, sehingga Anda dapat "
"menggunakan format string waktu. Tambahan ditransformasi sehingga menjadi: "
@ -8844,8 +8845,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, fuzzy, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
"Dokumentasi dan informasi lebih lanjut mengenai PBXT dapat ditemukan pada %s "
"PrimeBase XT Halaman %s."
@ -10120,11 +10121,11 @@ msgstr "Selamat Datang di %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Anda mungkin belum membuat berkas konfigurasi. Anda bisa menggunakan "
"%1$ssetup script%2$s untuk membuatnya."
"Anda mungkin belum membuat berkas konfigurasi. Anda bisa menggunakan %1"
"$ssetup script%2$s untuk membuatnya."
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
msgid ""
@ -10699,7 +10700,7 @@ msgstr "Nama kolom: "
msgid "Invalid parameter for CSV import: %s"
msgstr "Parameter yang salah untuk impor CSV: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, fuzzy, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@ -10708,13 +10709,13 @@ msgstr ""
"Kolom tidak valid (%s) yang ditentukan! Pastikan bahwa nama kolom dieja "
"dengan benar, dipisahkan dengan koma, dan tidak tertutup dalam tanda kutip."
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Format masukan CSV tidak valid pada baris %d."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, fuzzy, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Format masukan CSV tidak valid pada baris %d."
@ -11251,14 +11252,14 @@ msgstr "Login ulang ke phpMyAdmin untuk memuat file konfigurasi yang baru."
msgid "no description"
msgstr "tidak ada deskripsi"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "Tabel penyimpanan konfigurasi phpMyAdmin tidak ditemukan"
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@ -12697,8 +12698,8 @@ msgstr "Ikhtisar pengguna"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Perhatian: phpMyAdmin membaca data tentang pengguna secara langsung dari "
"tabel profil pengguna MySQL. Isi dari tabel bisa saja berbeda dengan profil "
@ -14923,8 +14924,8 @@ msgstr "Tidak ada data"
#, php-format
msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s"
msgstr ""
"Tampilkan %1$s berdasarkan tanggal dari %2$s sampai %3$s oleh pengguna %4$s "
"%5$s"
"Tampilkan %1$s berdasarkan tanggal dari %2$s sampai %3$s oleh pengguna %4$s %"
"5$s"
#: libraries/tracking.lib.php:634
msgid "SQL dump (file download)"
@ -15870,8 +15871,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, fuzzy, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
"Rasio lancar gratis permintaan memori cache untuk ukuran total cache query "
"adalah %s%%. Ini harus di atas 80%%"
@ -16040,8 +16041,8 @@ msgstr ""
#| "Rate of temporary tables being written to disk: %s, this value should be "
#| "less than 1 per hour"
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
"Tingkat pembuatan tabel temporer ke diska: %s, nilai ini hasul kurang dari 1 "
"per jam"

197
po/it.po
View File

@ -3,11 +3,11 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"PO-Revision-Date: 2015-01-09 15:52+0200\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2015-02-07 14:23+0200\n"
"Last-Translator: Marco Pozzato <ironpotts@gmail.com>\n"
"Language-Team: Italian <https://hosted.weblate.org/projects/phpmyadmin/"
"master/it/>\n"
"Language-Team: Italian "
"<https://hosted.weblate.org/projects/phpmyadmin/master/it/>\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -21,8 +21,8 @@ msgid ""
"The %s file is not available on this system, please visit www.phpmyadmin.net "
"for more information."
msgstr ""
"Il file %s non è disponibile sul sistema, visita www.phpmyadmin.net per "
"maggiori informazioni."
"Il file %s non è disponibile in questo sistema, visita www.phpmyadmin.net "
"per maggiori informazioni."
#: db_central_columns.php:85
msgid "The central list of columns for the current database is empty."
@ -33,10 +33,10 @@ msgid "Click to sort."
msgstr "Clicca per ordinare."
#: db_central_columns.php:125
#, fuzzy, php-format
#, php-format
#| msgid "Showing row(s) %1$s - %2$s"
msgid "Showing rows %1$s - %2$s."
msgstr "Mostro le righe %1$s - %2$s"
msgstr "Mostro le righe %1$s - %2$s."
#: db_create.php:61
#, php-format
@ -331,23 +331,23 @@ msgid "Access denied!"
msgstr "Accesso negato!"
#: db_tracking.php:38 db_tracking.php:63
#, fuzzy
#| msgid "Tracking data definition successfully deleted"
msgid "Tracking data deleted successfully."
msgstr "Le definizioni dei dati di monitoraggio eliminati con successo"
msgstr "Dati di monitoraggio eliminati correttamente."
#: db_tracking.php:47
#, fuzzy, php-format
#, php-format
#| msgid "Version %1$s was created, tracking for %2$s is active."
msgid ""
"Version %1$s was created for selected tables, tracking is active for them."
msgstr "Versione %1$s creata, monitoraggio attivato per %2$s."
msgstr ""
"Versione %1$s creata per le tabelle selezionate, il monitoraggio su di loro "
"è attivo."
#: db_tracking.php:78
#, fuzzy
#| msgid "No databases selected."
msgid "No tables selected."
msgstr "Nessun database selezionato."
msgstr "Nessuna tabella selezionata."
#: db_tracking.php:113
msgid "Tracked tables"
@ -395,10 +395,9 @@ msgid "Delete tracking data for this table"
msgstr "Cancella dati di tracciamento per questa tabella"
#: db_tracking.php:146 db_tracking.php:208
#, fuzzy
#| msgid "Deleting tracking data"
msgid "Delete tracking"
msgstr "Cancella dati di tracciamento"
msgstr "Cancella monitoraggio"
#: db_tracking.php:184
msgid "Versions"
@ -609,8 +608,8 @@ msgstr "Parametri incompleti"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Stai probabilmente cercando di caricare sul server un file troppo grande. "
"Fai riferimento alla %sdocumentazione%s se desideri aggirare questo limite."
@ -855,7 +854,6 @@ msgstr ""
"e questo può portare a risultati inaspettati."
#: index.php:488
#, fuzzy
#| msgid ""
#| "Your PHP parameter [a@http://php.net/manual/en/session.configuration."
#| "php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower "
@ -867,10 +865,11 @@ msgid ""
"cookie validity configured in phpMyAdmin, because of this, your login might "
"expire sooner than configured in phpMyAdmin."
msgstr ""
"Il tuo parametero PHP [a@http://php.net/manual/en/session.configuration."
"php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] é inferiore "
"alla validitá del cookie configurata in phpMyAdmin, per questo motivo, i "
"dati di login scadranno prima di come configurato in phpMyAdmin."
"Il parametro "
"[a@http://php.net/manual/en/session.configuration.php#ini.session.gc-"
"maxlifetime@_blank]session.gc_maxlifetime[/a] di PHP é inferiore alla "
"validitá del cookie configurata in phpMyAdmin; per questo motivo, il login "
"potrebbe scadere prima di quanto configurato in phpMyAdmin."
#: index.php:501
msgid ""
@ -931,8 +930,8 @@ msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
"Sul server è in esecuzione Suhosin. Controlla la documentazione: "
"%sdocumentation%s per possibili problemi."
"Sul server è in esecuzione Suhosin. Controlla la documentazione: %"
"sdocumentation%s per possibili problemi."
#: js/messages.php:29 libraries/import.lib.php:125 sql.php:143
msgid "\"DROP DATABASE\" statements are disabled."
@ -960,28 +959,24 @@ msgid "You are about to TRUNCATE a complete table!"
msgstr "Stai per TRONCARE COMPLETAMENTE il contenuto della tabella!"
#: js/messages.php:40
#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Delete tracking data for this table?"
msgstr "Cancella dati di tracciamento per questa tabella"
msgstr "Cancellare dati di monitoraggio per questa tabella?"
#: js/messages.php:41
#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Delete tracking data for these tables?"
msgstr "Cancella dati di tracciamento per questa tabella"
msgstr "Cancellare dati di monitoraggio per queste tabelle?"
#: js/messages.php:42
#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Delete tracking data for this version?"
msgstr "Cancella dati di tracciamento per questa tabella"
msgstr "Cancellare il monitoraggio dati per questa versione?"
#: js/messages.php:43
#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Delete tracking data for these versions?"
msgstr "Cancella dati di tracciamento per questa tabella"
msgstr "Cancellare il monitoraggio dati per queste versioni?"
#: js/messages.php:44
msgid "Deleting tracking data"
@ -992,10 +987,9 @@ msgid "Dropping Primary Key/Index"
msgstr "Cancellazione Chiave primaria/index"
#: js/messages.php:46
#, fuzzy
#| msgid "Select Foreign Key"
msgid "Dropping Foreign key."
msgstr "Scarta Foreign Key."
msgstr "Scarta Foreign key."
#: js/messages.php:47
msgid "This operation could take a long time. Proceed anyway?"
@ -1065,7 +1059,6 @@ msgid "Add %s column(s) to index"
msgstr "Aggiungi %s campo/i all'indice"
#: js/messages.php:66
#, fuzzy
#| msgid "Create routine"
msgid "Create single-column index"
msgstr "Crea indice a colonna singola"
@ -3236,7 +3229,7 @@ msgstr "Aggiorna segnalibro"
msgid "Delete bookmark"
msgstr "Elimina segnalibro"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@ -3244,19 +3237,19 @@ msgstr ""
"Il server non risponde (o il socket del server locale MySQL non è "
"correttamente configurato)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "Il server non risponde."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr "Controllate i privilegi della cartella che contiene il database."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Dettagli…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Connessione per controluser come definito nella configurazione fallita."
@ -3454,8 +3447,8 @@ msgstr "La query SQL è stata eseguita con successo."
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Questa vista ha, come minimo, questo numero di righe. Per informazioni "
"controlla la %sdocumentazione%s."
@ -4377,21 +4370,20 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"Un piccolo numero in virgola mobile, i valore accettati vanno da "
"-3.402823466E+38 a -1.175494351E-38, 0, e da 1.175494351E-38 a 3.402823466E"
"+38"
"Un piccolo numero in virgola mobile, i valore accettati vanno da -"
"3.402823466E+38 a -1.175494351E-38, 0, e da 1.175494351E-38 a 3.402823466E+38"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"Un numero in virgola mobile a doppia precisione, sono accettati i valori da "
"-1.7976931348623157E+308 a -2.2250738585072014E-308, 0, e da "
"Un numero in virgola mobile a doppia precisione, sono accettati i valori da -"
"1.7976931348623157E+308 a -2.2250738585072014E-308, 0, e da "
"2.2250738585072014E-308 a 1.7976931348623157E+308"
#: libraries/Types.class.php:336
@ -5332,8 +5324,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
"Se lo ritieni necessario, usa ulteriori impostazioni di protezione - "
"%sautenticazione degli host%s e %slista di proxy fidati%s. Comunque, la "
"Se lo ritieni necessario, usa ulteriori impostazioni di protezione - %"
"sautenticazione degli host%s e %slista di proxy fidati%s. Comunque, la "
"protezione a basata su IP potrebbe non essere affidabile se il tuo IP "
"appartiene ad un ISP al quale migliaia di utenti, incluso te, sono connessi."
@ -5349,8 +5341,8 @@ msgstr ""
"Hai impostato il tipo di autenticazione [kbd]config[/kbd] e hai inclusi il "
"nome utente e la parola chiave per l'auto-login, questo non è desiderato per "
"gli host in uso live. Chiunque che conosce o indovina il tuo URL di "
"phpMyAdmin potrá direttamente accedere al pannello di phpMyAdmin. Imposta "
"%sil tipo di autenticazione%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
"phpMyAdmin potrá direttamente accedere al pannello di phpMyAdmin. Imposta %"
"sil tipo di autenticazione%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
#: libraries/config/ServerConfigChecks.class.php:437
#, php-format
@ -7737,8 +7729,9 @@ msgstr "Avviso Suhosin"
#| "Disable the default warning that is displayed on the Structure page if "
#| "column names in a table are reserved MySQL words"
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"Disabilita l'avviso predefinito che viene visualizzato sulla pagina dei "
"dettagli della Struttura dei database se una tabella contiene colonne i cui "
@ -7768,7 +7761,6 @@ msgid "Textarea columns"
msgstr "Campi di aree di testo"
#: libraries/config/messages.inc.php:761
#, fuzzy
#| msgid ""
#| "Textarea size (rows) in edit mode, this value will be emphasized for SQL "
#| "query textareas (*2) and for query window (*1.25)"
@ -7776,44 +7768,39 @@ msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)."
msgstr ""
"La dimensione dell'area di testo (righe) nella modalitá di modifica, questo "
"valore incrementato per le aree di testo delle query SQL (x2) e per la "
"finestra di query (x1.25)"
"Dimensione dell'area di testo (righe) in modalitá di modifica, questo valore "
"viene incrementato per le aree di testo delle query SQL (×2) e per la "
"finestra di query (×1.25)."
#: libraries/config/messages.inc.php:762
msgid "Textarea rows"
msgstr "Righe con aree di testo"
msgstr "Righe nelle aree di testo"
#: libraries/config/messages.inc.php:763
#, fuzzy
#| msgid "Title of browser window when a database is selected"
msgid "Title of browser window when a database is selected."
msgstr "Titolo della finestra del browser quando un database è selezionato"
msgstr "Titolo della finestra del browser quando un database è selezionato."
#: libraries/config/messages.inc.php:765
#, fuzzy
#| msgid "Title of browser window when nothing is selected"
msgid "Title of browser window when nothing is selected."
msgstr "Titolo della finestra del browser quando nessun oggetto è selezionato"
msgstr "Titolo della finestra del browser quando niente è selezionato."
#: libraries/config/messages.inc.php:766
msgid "Default title"
msgstr "Titolo Predefinito"
#: libraries/config/messages.inc.php:767
#, fuzzy
#| msgid "Title of browser window when a server is selected"
msgid "Title of browser window when a server is selected."
msgstr "Titolo della finestra del browser quando un server è selezionato"
msgstr "Titolo della finestra del browser quando un server è selezionato."
#: libraries/config/messages.inc.php:769
#, fuzzy
#| msgid "Title of browser window when a table is selected"
msgid "Title of browser window when a table is selected."
msgstr "Titolo della finestra del browser quando una tebella è selezionata"
msgstr "Titolo della finestra del browser quando una tabella è selezionata."
#: libraries/config/messages.inc.php:771
#, fuzzy
#| msgid ""
#| "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following "
#| "example specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-"
@ -7825,31 +7812,29 @@ msgid ""
"For) header coming from the proxy 1.2.3.4:[br][kbd]1.2.3.4: "
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
"Le proxy di input come [kbd]IP: trusted HTTP header[/kbd]. Il seguente "
"esempio specifica che phpMyAdmin dovrebbe accettare un intestazione "
"HTTP_X_FORWARDED_FOR (X-Forwarded-For) proveniente dalla proxy 1.2.3.4[br]"
"[kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
"Inserire i proxy secondo lo schema [kbd]IP: trusted HTTP header[/kbd]. Il "
"seguente esempio specifica che phpMyAdmin dovrebbe accettare un intestazione "
"HTTP_X_FORWARDED_FOR (X-Forwarded-For) proveniente dal proxy "
"1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]."
#: libraries/config/messages.inc.php:772
msgid "List of trusted proxies for IP allow/deny"
msgstr "Lista dei proxy di fiducia per filtarre gli IP, accetta/rifiuta"
msgstr "Lista dei proxy di fiducia per l'accettazione/rifiuto degli IP"
#: libraries/config/messages.inc.php:773
#, fuzzy
#| msgid "Directory on server where you can upload files for import"
msgid "Directory on server where you can upload files for import."
msgstr ""
"La cartella sul server dove è possibile caricare i file per l'importazione"
"La cartella sul server dove è possibile caricare i file per l'importazione."
#: libraries/config/messages.inc.php:774
msgid "Upload directory"
msgstr "Cartella di caricamento"
msgstr "Cartella di upload"
#: libraries/config/messages.inc.php:775
#, fuzzy
#| msgid "Allow for searching inside the entire database"
msgid "Allow for searching inside the entire database."
msgstr "Consenti la ricerca all'interno di un intero database"
msgstr "Consenti la ricerca all'interno di un intero database."
#: libraries/config/messages.inc.php:776
msgid "Use database search"
@ -8419,8 +8404,8 @@ msgstr ", @TABLE@ diventerá il nome della tabella"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Questo valore è interpretato usando %1$sstrftime%2$s: in questo modo puoi "
"usare stringhe di formattazione per le date/tempi. Verranno anche aggiunte "
@ -8990,8 +8975,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
"La documentazione ed ulteriori informazioni a riguardo di PBXT é disponibile "
"su %sPrimeBase XT Home Page%s."
@ -10172,8 +10157,8 @@ msgstr "Benvenuto in %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"La ragione di questo è che probabilmente non hai creato alcun file di "
"configurazione. Potresti voler usare %1$ssetup script%2$s per crearne uno."
@ -10733,7 +10718,7 @@ msgstr "Nomi dei campi: "
msgid "Invalid parameter for CSV import: %s"
msgstr "Parametro non valido per importazione CSV: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@ -10743,13 +10728,13 @@ msgstr ""
"scritti correttemente, sono separati da virgole e non racchiusi in "
"virgolette."
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Formato non valido per l'input CSV alla linea %d."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Il numero dei campi non é valido nell'input CSV alla linea %d."
@ -11297,14 +11282,14 @@ msgstr ""
msgid "no description"
msgstr "nessuna descrizione"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "Mancano le tabelle di configurazione di phpMyAdmin"
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@ -12739,8 +12724,8 @@ msgstr "Vista d'insieme degli utenti"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"N.B.: phpMyAdmin legge i privilegi degli utenti direttamente nella tabella "
"dei privilegi di MySQL. Il contenuto di questa tabella può differire dai "
@ -15804,12 +15789,12 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
"Il rapporto corrente tra la memoria libera nella cache delle query e la "
"dimensione totale della cache delle query è %s%%. Dovrebbe essere sopra "
"l'80%%"
"dimensione totale della cache delle query è %s%%. Dovrebbe essere sopra l'80%"
"%"
#: libraries/advisory_rules.txt:181
msgid "Query cache fragmentation"
@ -15967,8 +15952,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
"%s%% di tutti gli ordinamenti causano la creazione di tabelle temporanee, "
"questo valore dovrebbe essere inferiore al 10%%."
@ -17174,8 +17159,8 @@ msgstr "concurrent_insert è impostato a 0"
#~ "%s."
#~ msgstr ""
#~ "Il validatore SQL non può essere inizializzato. Prego controllare di "
#~ "avere installato le estensioni php necessarie come descritto nella "
#~ "%sdocumentazione%s."
#~ "avere installato le estensioni php necessarie come descritto nella %"
#~ "sdocumentazione%s."
#, fuzzy
#~| msgid "Error: Relation not added."
@ -17841,8 +17826,8 @@ msgstr "concurrent_insert è impostato a 0"
#~ msgid ""
#~ "Are you sure you want to disable all BLOB references for database %s?"
#~ msgstr ""
#~ "Sei sicuro di voler disabilitare tutte le referenze BLOB per il database "
#~ "%s?"
#~ "Sei sicuro di voler disabilitare tutte le referenze BLOB per il database %"
#~ "s?"
#~ msgid "Unknown error while uploading."
#~ msgstr "Errore sconosciuto durante il caricamento del file."

352
po/ja.po
View File

@ -3,11 +3,11 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"PO-Revision-Date: 2015-01-17 20:36+0200\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2015-02-08 08:28+0200\n"
"Last-Translator: worldwideskier <worldwideskier@yahoo.co.jp>\n"
"Language-Team: Japanese <https://hosted.weblate.org/projects/phpmyadmin/"
"master/ja/>\n"
"Language-Team: Japanese "
"<https://hosted.weblate.org/projects/phpmyadmin/master/ja/>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -597,19 +597,18 @@ msgstr "成功しました"
#: import.php:58 js/messages.php:443
msgid "Failed"
msgstr ""
msgstr "失敗しました"
#: import.php:62
#, fuzzy
#| msgid "complete inserts"
msgid "Incomplete params"
msgstr "完全な INSERT 文を作成する"
msgstr "不完全なパラメータ"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"アップロードしようとしたファイルが大きすぎるようです。この制限に関する対策に"
"ついては %sドキュメント%s をご覧ください。"
@ -628,13 +627,14 @@ msgid ""
"Uploaded file cannot be moved, because the server has open_basedir enabled "
"without access to the %s directory (for temporary files)."
msgstr ""
"アップロードされたファイルは、移動できませんでした。なぜなら、サーバは、open_basedirのディレクトリ%s "
"(テンポラリファイル)へのアクセス許可がありません。"
#: import.php:467 import.php:528 libraries/File.class.php:418
#: libraries/File.class.php:512
#, fuzzy
#| msgid "File could not be read"
msgid "File could not be read!"
msgstr "ファイルを読み込めませんでした"
msgstr "ファイルを読み込めませんでした!"
#: import.php:477 import.php:488 import.php:509 import.php:520
#: libraries/File.class.php:578
@ -657,14 +657,12 @@ msgstr ""
"FAQ 1.16[/doc] をご覧ください。"
#: import.php:554
#, fuzzy
#| msgid ""
#| "Cannot convert file's character set without character set conversion "
#| "library"
msgid ""
"Cannot convert file's character set without character set conversion library!"
msgstr ""
"文字セット変換ライブラリがないので、ファイルの文字セットが変換できません"
msgstr "文字セット変換ライブラリがないので、ファイルの文字セットが変換できません!"
#: import.php:594 libraries/display_import.inc.php:32
msgid "Could not load import plugins, please check your installation!"
@ -673,10 +671,10 @@ msgstr ""
"ください!"
#: import.php:629 libraries/sql.lib.php:881 libraries/sql.lib.php:1654
#, fuzzy, php-format
#, php-format
#| msgid "Bookmark %s created"
msgid "Bookmark %s has been created."
msgstr "ブックマーク %s を作成しました"
msgstr "ブックマーク %s を作成しました"
#: import.php:638
#, php-format
@ -717,6 +715,8 @@ msgid ""
"change root, debian-sys-maint and pma users. More information is available "
"at %s."
msgstr ""
"あなたはでもサーバを利用しています。あなたは、ここで何でもできます。しかし、root、debian-sys-"
"maintとpmaは変更しないで下さい。詳しい情報は、%sを参照ください。"
#: index.php:158
msgid "General Settings"
@ -3281,7 +3281,7 @@ msgstr "表示中のブックマーク"
msgid "Delete bookmark"
msgstr "リレーションを削除"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@ -3289,20 +3289,20 @@ msgstr ""
"サーバが応答しません (あるいはローカルサーバのソケットが正しく設定されていま"
"せん)。"
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "サーバが応答しません。"
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
"データベースを含んでいるディレクトリのパーミッションを確認してください。"
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "詳細…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"設定ファイルに定義されている管理ユーザ(controluser)での接続に失敗しました。"
@ -3510,8 +3510,8 @@ msgstr "SQL は正常に実行されました"
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr "このビューの最低行数。詳しくは%sドキュメント%sをご覧ください。"
#: libraries/DisplayResults.class.php:4492
@ -4471,20 +4471,20 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"単精度浮動小数、有効範囲は -3.402823466E+38 から -1.175494351E-38、0、"
"1.175494351E-38 から 3.402823466E+38"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"倍精度浮動小数、有効範囲は -1.7976931348623157E+308 から "
"-2.2250738585072014E-308、0、2.2250738585072014E-308 から 1.7976931348623157E"
"倍精度浮動小数、有効範囲は -1.7976931348623157E+308 から -"
"2.2250738585072014E-308、0、2.2250738585072014E-308 から 1.7976931348623157E"
"+308"
#: libraries/Types.class.php:336
@ -5427,8 +5427,8 @@ msgstr ""
#: libraries/config/ServerConfigChecks.class.php:416
#, fuzzy, php-format
#| msgid ""
#| "If using cookie authentication and %sLogin cookie store%s is not 0, "
#| "%sLogin cookie validity%s must be set to a value less or equal to it."
#| "If using cookie authentication and %sLogin cookie store%s is not 0, %"
#| "sLogin cookie validity%s must be set to a value less or equal to it."
msgid ""
"If using [kbd]cookie[/kbd] authentication and %sLogin cookie store%s is not "
"0, %sLogin cookie validity%s must be set to a value less or equal to it."
@ -5440,21 +5440,20 @@ msgstr ""
#: libraries/config/ServerConfigChecks.class.php:423
#, fuzzy, php-format
#| msgid ""
#| "If you feel this is necessary, use additional protection settings - "
#| "%shost authentication%s settings and %strusted proxies list%s. However, "
#| "IP-based protection may not be reliable if your IP belongs to an ISP "
#| "where thousands of users, including you, are connected to."
#| "If you feel this is necessary, use additional protection settings - %"
#| "shost authentication%s settings and %strusted proxies list%s. However, IP-"
#| "based protection may not be reliable if your IP belongs to an ISP where "
#| "thousands of users, including you, are connected to."
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
"authentication%s settings and %strusted proxies list%s. However, IP-based "
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定"
"%sホスト認証%s設定および%s信頼されたプロキシのリスト%sを使用してくださ"
"い。しかしながら、ユーザが数千人もいるような ISP に所属している、含まれてい"
"る、接続されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえま"
"せん。"
"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定(%"
"sホスト認証%s設定および%s信頼されたプロキシのリスト%sを使用してください。し"
"かしながら、ユーザが数千人もいるような ISP に所属している、含まれている、接続"
"されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえません。"
#: libraries/config/ServerConfigChecks.class.php:431
#, php-format
@ -8027,8 +8026,9 @@ msgstr "Suhosin 警告"
#| "Structure page if any of the required tables for the phpMyAdmin "
#| "configuration storage could not be found"
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"phpMyAdmin 環境保管領域に必要なテーブルを見つけることができなかった場合、デー"
"タベースの構造詳細ページに表示されるデフォルトの警告を無効にします。"
@ -8219,8 +8219,8 @@ msgid ""
"for import and export operations."
msgstr ""
"インポートおよびエクスポートの操作に対して [a@http://ja.wikipedia.org/wiki/"
"ZIP_%28%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E3%83%95%E3%82%A9%E3%83%BC"
"%E3%83%9E%E3%83%83%E3%83%88%29]ZIP[/a] 圧縮を有効にします。"
"ZIP_%28%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E3%83%95%E3%82%A9%E3%83%BC%E3%83%"
"9E%E3%83%83%E3%83%88%29]ZIP[/a] 圧縮を有効にします。"
#: libraries/config/messages.inc.php:790
msgid "ZIP"
@ -8705,8 +8705,8 @@ msgstr "、@TABLE@ はテーブル名に"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"この値は %1$sstrftime%2$s を使用して解釈されますので、時刻の書式文字列を使用"
"することができます。また、埋め込み変数変換も行われます(%3$s変換されま"
@ -9267,8 +9267,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
"PBXT に関するドキュメントおよび詳細な情報は、%sPrimeBase XT オフィシャルサイ"
"ト%sにあります。"
@ -10457,11 +10457,11 @@ msgstr "%s へようこそ"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプ"
"ト%2$s を利用して設定ファイルを作成してください。"
"設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプト%2"
"$s を利用して設定ファイルを作成してください。"
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
msgid ""
@ -11005,7 +11005,7 @@ msgstr "カラム名: "
msgid "Invalid parameter for CSV import: %s"
msgstr "CSV インポートのパラメータが不正です: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@ -11014,13 +11014,13 @@ msgstr ""
"指定されたカラム (%s) は無効です。カラム名のスペルが正しいか、カンマで区切ら"
"れていないか、引用符で囲まれていないかを確認してください。"
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "CSV 入力の書式が不正です (行: %d)。"
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "CSV 入力のカラム数が不正です (行: %d)。"
@ -11556,14 +11556,14 @@ msgstr "更新した設定ファイルを読み込むために phpMyAdmin にロ
msgid "no description"
msgstr "説明がありません"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "phpMyAdmin 環境保管領域用のテーブルが不明"
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@ -12975,8 +12975,8 @@ msgstr "ユーザ概略"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"注意: phpMyAdmin は MySQL の特権テーブルから直接ユーザ特権を取得しますが、手"
"作業で特権を更新した場合は phpMyAdmin が利用しているテーブルの内容とサーバの"
@ -15954,7 +15954,7 @@ msgstr "{query_cache_limit} の増加を検討してください。"
#: libraries/advisory_rules.txt:172
#, php-format
msgid "The current query cache hit rate of %s%% is below 20%%"
msgstr "現在のクエリキャッシュのヒット率が %s%% と、20%% を下回っています"
msgstr "現在のクエリキャッシュのヒット率が %s%% と、20%% を下回っています"
#: libraries/advisory_rules.txt:174
msgid "Query Cache usage"
@ -15976,11 +15976,9 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
msgstr ""
"クエリキャッシュの総量に対するクエリキャッシュの空きメモリの割合は、%s%% で"
"す。この値は、80%% 以上がいいと言われています。"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr "クエリキャッシュの総量に対するクエリキャッシュの空きメモリの割合は、%s%% です。この値は、80%% 以上がいいと言われています"
#: libraries/advisory_rules.txt:181
msgid "Query cache fragmentation"
@ -16001,14 +15999,11 @@ msgid ""
"using this formula: (query_cache_size - qcache_free_memory) / "
"qcache_queries_in_cache"
msgstr ""
"深刻な断片化は Qcache_lowmem_prunes の (大きな) 増加を示唆しています。"
"{query_cache_size} が小さすぎることが原因で、小さなクエリキャッシュメモリの切"
"り詰めが多数発生したことにより、このようになったものと思われます。今すぐクエ"
"リキャッシュのフラッシュを行えば、しばらくは (長期間クエリキャッシュをロック"
"していたような) 断片化は解消されます。{query_cache_min_res_unit} を小さめな値"
"に慎重に調整することで、断片化をかなり抑制できるかもしれません。設定例とし"
"て、クエリキャッシュの 1 つ当たりの平均使用サイズ ( = (query_cache_size - "
"qcache_free_memory) / qcache_queries_in_cache ) などがあります。"
"深刻な断片化は Qcache_lowmem_prunes の (大きな) 増加を示唆しています。{query_cache_size} が小さすぎることが原"
"因で、小さなクエリキャッシュメモリの切り詰めが多数発生したことにより、このようになったものと思われます。今すぐクエリキャッシュのフラッシュを行えば、"
"しばらくは (長期間クエリキャッシュをロックしていたような) 断片化は解消されます。{query_cache_min_res_unit} "
"を小さめな値に慎重に調整することで、断片化をかなり抑制できるかもしれません。設定例として、クエリキャッシュの 1 つ当たりの平均使用サイズ ( = ("
"query_cache_size - qcache_free_memory) / qcache_queries_in_cache ) などがあります"
#: libraries/advisory_rules.txt:186
#, php-format
@ -16048,9 +16043,7 @@ msgstr ""
msgid ""
"The ratio of removed queries to inserted queries is %s%%. The lower this "
"value is, the better (This rules firing limit: 0.1%%)"
msgstr ""
"追加クエリに対する削除クエリの割合は、%s%% です。この値は低いほど良いです (こ"
"こでは 0.1%% を超えたらで判断しています)。"
msgstr "追加クエリに対する削除クエリの割合は、%s%% です。この値は低いほど良いです (ここでは 0.1%% を超えたらで判断しています)"
#: libraries/advisory_rules.txt:195
msgid "Query cache max size"
@ -16108,7 +16101,7 @@ msgstr ""
#: libraries/advisory_rules.txt:207
msgid "query_cache_limit is set to 1 MiB"
msgstr "query_cache_limit は 1 MiB に設定されています"
msgstr "query_cache_limit は 1 MiB に設定されています"
#: libraries/advisory_rules.txt:211
msgid "Percentage of sorts that cause temporary tables"
@ -16134,8 +16127,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
"全ソートの内 %s%% が一時テーブルを使用しています。この値は、10%% 未満がいいと"
"言われています。"
@ -16167,9 +16160,8 @@ msgid ""
"indexed columns in the ORDER BY clause, as this will result in much faster "
"sorting"
msgstr ""
"多くの行がソートされていても特に問題ないのであれば、多くのソートを必要とする"
"クエリに対して、ORDER BY 節にインデックスのあるカラムを使うのを検討する程度で"
"いいでしょう。そのクエリ結果のソートは、とても速くなるかもしれません。"
"多くの行がソートされていても特に問題ないのであれば、多くのソートを必要とするクエリに対して、ORDER BY "
"節にインデックスのあるカラムを使うのを検討する程度でいいでしょう。そのクエリ結果のソートは、とても速くなるかもしれません"
#: libraries/advisory_rules.txt:230
#, php-format
@ -16189,15 +16181,13 @@ msgid ""
"This means that joins are doing full table scans. Adding indexes for the "
"columns being used in the join conditions will greatly speed up table joins"
msgstr ""
"これは結合において、テーブルが全スキャンされていることを示しています。結合条"
"件に合ったカラムにインデックスを追加することで、テーブル結合のスピードは大幅"
"に上がるでしょう。"
"これは結合において、テーブルが全スキャンされていることを示しています。結合条件に合ったカラムにインデックスを追加することで、テーブル結合のスピードは大幅に"
"上がるでしょう"
#: libraries/advisory_rules.txt:238
#, php-format
msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
"テーブル結合の平均:%s。この値は、1 時間当たり 1 未満がいいと言われています。"
msgstr "テーブル結合の平均:%s。この値は、1 時間当たり 1 未満がいいと言われています"
#: libraries/advisory_rules.txt:240
msgid "Rate of reading first index entry"
@ -16227,9 +16217,7 @@ msgstr ""
#: libraries/advisory_rules.txt:245
#, php-format
msgid "Index scans average: %s, this value should be less than 1 per hour"
msgstr ""
"インデックススキャンの平均:%s。この値は、1 時間当たり 1 未満がいいと言われて"
"います。"
msgstr "インデックススキャンの平均:%s。この値は、1 時間当たり 1 未満がいいと言われています"
#: libraries/advisory_rules.txt:247
msgid "Rate of reading fixed position"
@ -16254,9 +16242,7 @@ msgstr ""
msgid ""
"Rate of reading fixed position average: %s, this value should be less than 1 "
"per hour"
msgstr ""
"決まった位置を読み込む割合の平均:%s。この値は、1 時間当たり 1 未満がいいと言"
"われています。"
msgstr "決まった位置を読み込む割合の平均:%s。この値は、1 時間当たり 1 未満がいいと言われています"
#: libraries/advisory_rules.txt:254
msgid "Rate of reading next table row"
@ -16278,9 +16264,7 @@ msgstr ""
#, php-format
msgid ""
"Rate of reading next table row: %s, this value should be less than 1 per hour"
msgstr ""
"テーブルの次行を読み込む割合:%s。この値は、1 時間当たり 1 未満がいいと言われ"
"ています。"
msgstr "テーブルの次行を読み込む割合:%s。この値は、1 時間当たり 1 未満がいいと言われています"
#: libraries/advisory_rules.txt:262
#, fuzzy
@ -16308,8 +16292,7 @@ msgstr ""
#: libraries/advisory_rules.txt:267
#, php-format
msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
"両者の現在の値は、tmp_table_size が %s、max_heap_table_size が %s です。"
msgstr "両者の現在の値は、tmp_table_size が %s、max_heap_table_size が %s です"
#: libraries/advisory_rules.txt:269
msgid "Percentage of temp tables on disk"
@ -16331,22 +16314,18 @@ msgid ""
"mentioned in the beginning of an <a href=\"http://www.facebook.com/note.php?"
"note_id=10150111255065841&comments\">Article by the Pythian Group</a>"
msgstr ""
"{max_heap_table_size} と {tmp_table_size} を増加させることで改善されるかもし"
"れません。しかしながら、これらの変数値に関わりなく、常にディスクに展開される"
"一時テーブルは存在します。この状況をも改善したいのであれば、BLOB や TEXT のカ"
"ラムもしくは 512 バイトを超えるカラムを使わないように、クエリを書き直す必要が"
"あるでしょう。このことは、<a href=\"http://www.facebook.com/note.php?"
"note_id=10150111255065841&comments\">The Pythian Group の記事 (英語)</a>に詳"
"しく記載されています。"
"{max_heap_table_size} と {tmp_table_size} を増加させることで改善されるかもしれません。しかしながら、これらの変数値"
"に関わりなく、常にディスクに展開される一時テーブルは存在します。この状況をも改善したいのであれば、BLOB や TEXT のカラムもしくは 512 "
"バイトを超えるカラムを使わないように、クエリを書き直す必要があるでしょう。このことは、<a href=\""
"http://www.facebook.com/note.php?note_id=10150111255065841&comments\">The "
"Pythian Group の記事 (英語)</a>に詳しく記載されています"
#: libraries/advisory_rules.txt:274
#, php-format
msgid ""
"%s%% of all temporary tables are being written to disk, this value should be "
"below 25%%"
msgstr ""
"全一時テーブルの内 %s%% がディスク上に展開されています。この値は、25%% 未満が"
"いいと言われています。"
msgstr "全一時テーブルの内 %s%% がディスク上に展開されています。この値は、25%% 未満がいいと言われています"
#: libraries/advisory_rules.txt:276
msgid "Temp disk rate"
@ -16362,22 +16341,18 @@ msgid ""
"mentioned in the <a href=\"http://dev.mysql.com/doc/refman/5.5/en/internal-"
"temporary-tables.html\">MySQL Documentation</a>"
msgstr ""
"{max_heap_table_size} と {tmp_table_size} を増加させることで改善されるかもし"
"れません。しかしながら、これらの変数値に関わりなく、常にディスクに展開される"
"一時テーブルは存在します。この状況をも改善したいのであれば、BLOB や TEXT のカ"
"ラムもしくは 512 バイトを超えるカラムを使わないように、クエリを書き直す必要が"
"あるでしょう。このことは、<a href=\"http://dev.mysql.com/doc/refman/5.5/en/"
"internal-temporary-tables.html\">MySQL ドキュメント</a>に詳しく記載されていま"
"す。"
"{max_heap_table_size} と {tmp_table_size} を増加させることで改善されるかもしれません。しかしながら、これらの変数値"
"に関わりなく、常にディスクに展開される一時テーブルは存在します。この状況をも改善したいのであれば、BLOB や TEXT のカラムもしくは 512 "
"バイトを超えるカラムを使わないように、クエリを書き直す必要があるでしょう。このことは、<a href=\""
"http://dev.mysql.com/doc/refman/5.5/en/internal-temporary-tables.html\">"
"MySQL ドキュメント</a>に詳しく記載されています"
#: libraries/advisory_rules.txt:281
#, php-format
msgid ""
"Rate of temporary tables being written to disk: %s, this value should be "
"less than 1 per hour"
msgstr ""
"ディスク書き込みを伴う一時テーブル割合:%s。この値は、1 時間当たり 1 未満がい"
"いと言われています。"
msgstr "ディスク書き込みを伴う一時テーブル割合:%s。この値は、1 時間当たり 1 未満がいいと言われています"
#: libraries/advisory_rules.txt:296
msgid "MyISAM key buffer size"
@ -16399,7 +16374,7 @@ msgstr ""
#: libraries/advisory_rules.txt:301
msgid "key_buffer_size is 0"
msgstr "key_buffer_size は 0 です"
msgstr "key_buffer_size は 0 です"
#: libraries/advisory_rules.txt:303
#, php-format
@ -16425,9 +16400,7 @@ msgstr ""
#, php-format
msgid ""
"max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%"
msgstr ""
"使われていた MyISAM キーバッファの最大比率: %s%%。この値は、95%% 以上がいいと"
"言われています。"
msgstr "使われていた MyISAM キーバッファの最大比率: %s%%。この値は、95%% 以上がいいと言われています"
#: libraries/advisory_rules.txt:311
msgid "Percentage of MyISAM key buffer used"
@ -16436,9 +16409,7 @@ msgstr "MyISAM キーバッファの使用比率"
#: libraries/advisory_rules.txt:316
#, php-format
msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%"
msgstr ""
"MyISAM キーバッファの使用比率: %s%%。この値は、95%% 以上がいいと言われていま"
"す。"
msgstr "MyISAM キーバッファの使用比率: %s%%。この値は、95%% 以上がいいと言われています"
#: libraries/advisory_rules.txt:318
msgid "Percentage of index reads from memory"
@ -16456,9 +16427,7 @@ msgstr "{key_buffer_size} を増やす必要があるかもしれません。"
#: libraries/advisory_rules.txt:323
#, php-format
msgid "Index reads from memory: %s%%, this value should be above 95%%"
msgstr ""
"メモリから読み込まれるインデックスの比率: %s%%。この値は、95%% 以上がいいと言"
"われています。"
msgstr "メモリから読み込まれるインデックスの比率: %s%%。この値は、95%% 以上がいいと言われています"
#: libraries/advisory_rules.txt:327
msgid "Rate of table open"
@ -16479,9 +16448,7 @@ msgstr ""
#: libraries/advisory_rules.txt:332
#, php-format
msgid "Opened table rate: %s, this value should be less than 10 per hour"
msgstr ""
"テーブルを開く割合:%s。この値は、1 時間当たり 10 未満がいいと言われていま"
"す。"
msgstr "テーブルを開く割合:%s。この値は、1 時間当たり 10 未満がいいと言われています"
#: libraries/advisory_rules.txt:334
msgid "Percentage of used open files limit"
@ -16511,9 +16478,7 @@ msgstr ""
#, php-format
msgid ""
"The number of opened files is at %s%% of the limit. It should be below 85%%"
msgstr ""
"開いているファイルの数は上限に対して %s%% です。この値は、85%% 未満がいいと言"
"われています。"
msgstr "開いているファイルの数は上限に対して %s%% です。この値は、85%% 未満がいいと言われています"
#: libraries/advisory_rules.txt:341
msgid "Rate of open files"
@ -16526,9 +16491,7 @@ msgstr "開いているファイルの割合が高いです。"
#: libraries/advisory_rules.txt:346
#, php-format
msgid "Opened files rate: %s, this value should be less than 5 per hour"
msgstr ""
"開いているファイルの割合:%s。この値は、1 時間当たり 5 未満がいいと言われてい"
"ます。"
msgstr "開いているファイルの割合:%s。この値は、1 時間当たり 5 未満がいいと言われています"
#: libraries/advisory_rules.txt:348
#, php-format
@ -16548,9 +16511,7 @@ msgstr ""
#: libraries/advisory_rules.txt:353
#, php-format
msgid "Immediate table locks: %s%%, this value should be above 95%%"
msgstr ""
"速やかに行われたテーブルロック: %s%%。この値は、95%% 以上がいいと言われていま"
"す。"
msgstr "速やかに行われたテーブルロック: %s%%。この値は、95%% 以上がいいと言われています"
#: libraries/advisory_rules.txt:355
msgid "Table lock wait rate"
@ -16559,9 +16520,7 @@ msgstr "テーブルロックの待つ割合"
#: libraries/advisory_rules.txt:360
#, php-format
msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
msgstr ""
"テーブルロックの待つ割合: %s。この値は、1 時間当たり 1 未満がいいと言われてい"
"ます。"
msgstr "テーブルロックの待つ割合: %s。この値は、1 時間当たり 1 未満がいいと言われています"
#: libraries/advisory_rules.txt:362
msgid "Thread cache"
@ -16583,7 +16542,7 @@ msgstr ""
#: libraries/advisory_rules.txt:367
msgid "The thread cache is set to 0"
msgstr "スレッドキャッシュは 0 に設定されています"
msgstr "スレッドキャッシュは 0 に設定されています"
#: libraries/advisory_rules.txt:369
#, php-format
@ -16601,9 +16560,7 @@ msgstr "{thread_cache_size} を増やしてください。"
#: libraries/advisory_rules.txt:374
#, php-format
msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
msgstr ""
"スレッドキャッシュのヒット率: %s%%。この値は、80%% 以上がいいと言われていま"
"す。"
msgstr "スレッドキャッシュのヒット率: %s%%。この値は、80%% 以上がいいと言われています"
#: libraries/advisory_rules.txt:376
msgid "Threads that are slow to launch"
@ -16624,9 +16581,7 @@ msgstr ""
#: libraries/advisory_rules.txt:381
#, php-format
msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
msgstr ""
"%s スレッドの開始に %s 秒以上かかっています。この値は、0 がいいと言われていま"
"す。"
msgstr "%s スレッドの開始に %s 秒以上かかっています。この値は、0 がいいと言われています"
#: libraries/advisory_rules.txt:383
msgid "Slow launch time"
@ -16634,7 +16589,7 @@ msgstr "遅い起動時間"
#: libraries/advisory_rules.txt:386
msgid "Slow_launch_threads is above 2s"
msgstr "Slow_launch_threads が 2 秒を超えています"
msgstr "Slow_launch_threads が 2 秒を超えています"
#: libraries/advisory_rules.txt:387
#, fuzzy
@ -16651,7 +16606,7 @@ msgstr ""
#: libraries/advisory_rules.txt:388
#, php-format
msgid "slow_launch_time is set to %s"
msgstr "slow_launch_time は %s に設定されています"
msgstr "slow_launch_time は %s に設定されています"
#: libraries/advisory_rules.txt:392
msgid "Percentage of used connections"
@ -16690,8 +16645,7 @@ msgstr ""
msgid ""
"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
msgstr ""
"Max_used_connections は max_connections の %s%% になっています。この値は、"
"80%% 未満がいいと言われています。"
"Max_used_connections は max_connections の %s%% になっています。この値は、80%% 未満がいいと言われています"
#: libraries/advisory_rules.txt:399
msgid "Percentage of aborted connections"
@ -16716,9 +16670,7 @@ msgstr ""
#: libraries/advisory_rules.txt:404
#, php-format
msgid "%s%% of all connections are aborted. This value should be below 1%%"
msgstr ""
"全接続のうち %s%% が中断されています。この値は、1%% 未満がいいと言われていま"
"す。"
msgstr "全接続のうち %s%% が中断されています。この値は、1%% 未満がいいと言われています"
#: libraries/advisory_rules.txt:406
msgid "Rate of aborted connections"
@ -16728,9 +16680,7 @@ msgstr "中断された接続の割合"
#, php-format
msgid ""
"Aborted connections rate is at %s, this value should be less than 1 per hour"
msgstr ""
"中断された接続の割合は %s です。この値は、1 時間当たり 1 未満がいいと言われて"
"います。"
msgstr "中断された接続の割合は %s です。この値は、1 時間当たり 1 未満がいいと言われています"
#: libraries/advisory_rules.txt:413
msgid "Percentage of aborted clients"
@ -16754,9 +16704,7 @@ msgstr ""
#: libraries/advisory_rules.txt:418
#, php-format
msgid "%s%% of all clients are aborted. This value should be below 2%%"
msgstr ""
"全クライアントの内 %s%% が中断されています。この値は、2%% 未満がいいと言われ"
"ています。"
msgstr "全クライアントの内 %s%% が中断されています。この値は、2%% 未満がいいと言われています"
#: libraries/advisory_rules.txt:420
msgid "Rate of aborted clients"
@ -16765,9 +16713,7 @@ msgstr "中断されたクライアントの割合"
#: libraries/advisory_rules.txt:425
#, php-format
msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
msgstr ""
"中断されたクライアントの割合: %s。この値は、1 時間当たり 1 未満がいいと言われ"
"ています。"
msgstr "中断されたクライアントの割合: %s。この値は、1 時間当たり 1 未満がいいと言われています"
#: libraries/advisory_rules.txt:429
msgid "Is InnoDB disabled?"
@ -16783,7 +16729,7 @@ msgstr "一般的に、InnoDB はテーブル用のエンジンとして適切
#: libraries/advisory_rules.txt:434
msgid "have_innodb is set to 'value'"
msgstr "have_innodb は 'value' に設定されています"
msgstr "have_innodb は 'value' に設定されています"
#: libraries/advisory_rules.txt:436
msgid "InnoDB log size"
@ -16810,16 +16756,14 @@ msgid ""
"fine. See also <a href=\"http://mysqldatabaseadministration.blogspot."
"com/2007/01/increase-innodblogfilesize-proper-way.html\">this blog entry</a>"
msgstr ""
"特に、InnoDB のテーブルへの書き込みが多いシステムの場合には、"
"{innodb_log_file_size} は {innodb_buffer_pool_size} の 25%% に設定するといい"
"でしょう。しかしながら、この値が大きくなると、データベースが壊れたときの修復"
"に時間がかかるようになります。そのため、この値は 256 MiB を超えないほうがいい"
"と言われています。なお、この変数は簡単には変更できないので注意してください。"
"サーバを停止させ、InnoDB ログファイルを削除し、my.cnf に新しい値を設定して、"
"そうした後にサーバは起動し直す必要があります。そして、全ての設定が正しく設定"
"できているのかを、エラーログで確認しなければなりません。<a href=\"http://"
"mysqldatabaseadministration.blogspot.com/2007/01/increase-innodblogfilesize-"
"proper-way.html\">こちらのブログ記事 (英語)</a> もご覧になってください。"
"特に、InnoDB のテーブルへの書き込みが多いシステムの場合には、{innodb_log_file_size} は "
"{innodb_buffer_pool_size} の 25%% "
"に設定するといいでしょう。しかしながら、この値が大きくなると、データベースが壊れたときの修復に時間がかかるようになります。そのため、この値は 256 "
"MiB を超えないほうがいいと言われています。なお、この変数は簡単には変更できないので注意してください。サーバを停止させ、InnoDB "
"ログファイルを削除し、my.cnf に新しい値を設定して、そうした後にサーバは起動し直す必要があります。そして、全ての設定が正しく設定できているのかを、エ"
"ラーログで確認しなければなりません。<a href=\""
"http://mysqldatabaseadministration.blogspot.com/2007/01/increase-"
"innodblogfilesize-proper-way.html\">こちらのブログ記事 (英語)</a> もご覧になってください"
#: libraries/advisory_rules.txt:441
#, php-format
@ -16827,9 +16771,8 @@ msgid ""
"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
"it should not be below 20%%"
msgstr ""
"ご使用されている InnoDB のログサイズは、関連のある InnoDB バッファプールの大"
"きさに対して %s%% です。この値は、20%% 未満にしないほうがいいと言われていま"
"す。"
"ご使用されている InnoDB のログサイズは、関連のある InnoDB バッファプールの大きさに対して %s%% です。この値は、20%% "
"未満にしないほうがいいと言われています"
#: libraries/advisory_rules.txt:443
msgid "Max InnoDB log size"
@ -16852,22 +16795,19 @@ msgid ""
"mysqldatabaseadministration.blogspot.com/2007/01/increase-innodblogfilesize-"
"proper-way.html\">this blog entry</a>"
msgstr ""
"一般的には、innodb_log_file_size に {innodb_buffer_pool_size} の 25%% の値を"
"設定すれば十分です。innodb_log_file_size の値が非常に大きい場合、データベース"
"が多量に破損した後の修復に時間がかかるようになります。<a href=\"http://www."
"mysqlperformanceblog.com/2006/07/03/choosing-proper-innodb_log_file_size/\">"
"こちらの記事 (英語)</a> も参照してください。なお、この変数を変更するには、"
"サーバを停止させ、InnoDB ログファイルを削除し、my.cnf に新しい値を設定してか"
"ら、サーバを起動し直す必要があります。それから、全ての設定が正しく行えたかを"
"確認するために、エラーログを確認しなければなりません。設定に関しては、<a "
"href=\"http://mysqldatabaseadministration.blogspot.com/2007/01/increase-"
"innodblogfilesize-proper-way.html\">こちらのブログ記事 (英語)</a> もご覧くだ"
"さい。"
"一般的には、innodb_log_file_size に {innodb_buffer_pool_size} の 25%% の値を設定すれば十分です。"
"innodb_log_file_size の値が非常に大きい場合、データベースが多量に破損した後の修復に時間がかかるようになります。<a href=\""
"http://www.mysqlperformanceblog.com/2006/07/03/choosing-proper-"
"innodb_log_file_size/\">こちらの記事 (英語)</a> も参照してください。なお、この変数を変更するには、サーバを停止させ、"
"InnoDB ログファイルを削除し、my.cnf に新しい値を設定してから、サーバを起動し直す必要があります。それから、全ての設定が正しく行えたかを確認す"
"るために、エラーログを確認しなければなりません。設定に関しては、<a href=\""
"http://mysqldatabaseadministration.blogspot.com/2007/01/increase-"
"innodblogfilesize-proper-way.html\">こちらのブログ記事 (英語)</a> もご覧ください"
#: libraries/advisory_rules.txt:448
#, php-format
msgid "Your absolute InnoDB log size is %s MiB"
msgstr "使用されている InnoDB のログサイズの総計は、%s MiB です"
msgstr "使用されている InnoDB のログサイズの総計は、%s MiB です"
#: libraries/advisory_rules.txt:450
msgid "InnoDB buffer pool size"
@ -16891,17 +16831,13 @@ msgid ""
"\"http://www.mysqlperformanceblog.com/2007/11/03/choosing-"
"innodb_buffer_pool_size/\">this article</a>"
msgstr ""
"InnoDB のバッファプールは、InnoDB テーブルのパフォーマンスに対して強い影響力"
"を持っています。使用されていないメモリを全てこのバッファに割り当ててくださ"
"い。ストレージエンジンとして InnoDB のみを使用しており、他のサービス (例え"
"ば、ウェブサーバ) を稼動していないデータベースサーバに対しては、使用可能なメ"
"モリの 80%% 以上にあたる大きな値をバッファプール変数に設定するといいでしょ"
"う。そのような状況以外では、使用されている他のサービスや InnoDB ではないテー"
"ブルの使用メモリ量を慎重に見極めながら、この変数を設定する必要があります。大"
"きすぎる値を設定されてしまった場合、システムはメモリスワップをするようにな"
"り、パフォーマンスは著しく低下するようになります。<a href=\"http://www."
"mysqlperformanceblog.com/2007/11/03/choosing-innodb_buffer_pool_size/\">こち"
"らの記事 (英語)</a> も参考にしてください。"
"InnoDB のバッファプールは、InnoDB "
"テーブルのパフォーマンスに対して強い影響力を持っています。使用されていないメモリを全てこのバッファに割り当ててください。ストレージエンジンとして "
"InnoDB のみを使用しており、他のサービス (例えば、ウェブサーバ) を稼動していないデータベースサーバに対しては、使用可能なメモリの 80%% "
"以上にあたる大きな値をバッファプール変数に設定するといいでしょう。そのような状況以外では、使用されている他のサービスや InnoDB ではないテーブルの使"
"用メモリ量を慎重に見極めながら、この変数を設定する必要があります。大きすぎる値を設定されてしまった場合、システムはメモリスワップをするようになり、パフォー"
"マンスは著しく低下するようになります。<a href=\"http://www.mysqlperformanceblog.com/2007/11/03"
"/choosing-innodb_buffer_pool_size/\">こちらの記事 (英語)</a> も参考にしてください"
#: libraries/advisory_rules.txt:455
#, php-format
@ -16911,10 +16847,10 @@ msgid ""
"perfectly adequate for your system if you don't have much InnoDB tables or "
"other services running on the same machine."
msgstr ""
"現在、メモリの %s%% が InnoDB バッファプールに使われています。割り当てが "
"60%% 未満の時にこの事象が表示されるようになりますが、多くの InnoDB テーブルを"
"使用していない、もしくは同マシン上で他のサービスを稼動させていないのであれ"
"ば、ご使用のシステムではこの設定で十分かもしれません。"
"現在、メモリの %s%% が InnoDB バッファプールに使われています。割り当てが 60%"
"% 未満の時にこの事象が表示されるようになりますが、多くの InnoDB テーブルを使"
"用していない、もしくは同マシン上で他のサービスを稼動させていないのであれば、"
"ご使用のシステムではこの設定で十分かもしれません。"
#: libraries/advisory_rules.txt:459
msgid "MyISAM concurrent inserts"

View File

@ -3,15 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-03-27 15:20+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Georgian <https://hosted.weblate.org/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.9-dev\n"
@ -618,8 +618,8 @@ msgstr "სრული ჩასმები"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
#: import.php:343 import.php:626
@ -3428,7 +3428,7 @@ msgstr "ძებნა"
msgid "Delete bookmark"
msgstr "ძებნა"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@ -3436,21 +3436,21 @@ msgid ""
"configured)."
msgstr "(or the local MySQL server's socket is not correctly configured)"
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "სერვერი არ პასუხობს"
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "დეტალები…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3684,8 +3684,8 @@ msgstr "%s databases have been dropped successfully."
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
#: libraries/DisplayResults.class.php:4492
@ -4657,14 +4657,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -7901,8 +7901,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -8585,16 +8586,16 @@ msgstr ""
#, fuzzy, php-format
#| msgid ""
#| "s value is interpreted using %1$sstrftime%2$s, so you can use time "
#| "matting strings. Additionally the following transformations will pen: "
#| "%3$s. Other text will be kept as is."
#| "matting strings. Additionally the following transformations will pen: %3"
#| "$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is."
#: libraries/display_export.lib.php:526
msgid "use this for future exports"
@ -9113,8 +9114,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -10292,8 +10293,8 @@ msgstr "მოგესალმებათ %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
@ -10853,20 +10854,20 @@ msgstr "სვეტების სახელები"
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, fuzzy, php-format
#| msgid "Invalid field count in CSV input on line %d."
msgid "Invalid column count in CSV input on line %d."
@ -11413,13 +11414,13 @@ msgstr ""
msgid "no description"
msgstr ""
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -12866,8 +12867,8 @@ msgstr "მომხმარებლის მიმოხილვა"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
#: libraries/server_privileges.lib.php:4060
@ -15749,8 +15750,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -15884,8 +15885,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

View File

@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-03-31 14:26+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Kazakh <https://hosted.weblate.org/projects/phpmyadmin/master/"
"kk/>\n"
"Language: kk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: kk\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 1.9-dev\n"
@ -634,11 +634,11 @@ msgstr ""
#: import.php:163
#, fuzzy, php-format
#| msgid ""
#| "You probably tried to upload too large file. Please refer to "
#| "%sdocumentation%s for ways to workaround this limit."
#| "You probably tried to upload too large file. Please refer to %"
#| "sdocumentation%s for ways to workaround this limit."
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Мүмкін, жүктегелі отырған файлдың өлшемі тым үлкен. Осы шектеуді айналып өту "
"әдістері, %sқұжаттамада%s сипатталған."
@ -3173,25 +3173,25 @@ msgstr "Жою"
msgid "Delete bookmark"
msgstr "Жою"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr ""
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr ""
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3398,8 +3398,8 @@ msgstr "SQL-сұранысы сәтті орындалды"
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
#: libraries/DisplayResults.class.php:4492
@ -4319,14 +4319,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -7163,8 +7163,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -7760,8 +7761,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -8255,8 +8256,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -9398,8 +9399,8 @@ msgstr "%s-ге қош келдіңіз"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
@ -9904,20 +9905,20 @@ msgstr ""
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -10368,13 +10369,13 @@ msgstr ""
msgid "no description"
msgstr ""
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -11686,8 +11687,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
#: libraries/server_privileges.lib.php:4060
@ -14401,8 +14402,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -14527,8 +14528,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

View File

@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-04-19 18:59+0200\n"
"Last-Translator: Sovichet Tep <sovichet.tep@gmail.com>\n"
"Language-Team: Central Khmer <https://hosted.weblate.org/projects/phpmyadmin/"
"master/km/>\n"
"Language: km\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: km\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 1.9-dev\n"
@ -606,8 +606,8 @@ msgstr ""
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
#: import.php:343 import.php:626
@ -3040,25 +3040,25 @@ msgstr "ធ្វើ​បច្ចុប្បន្នភាព​ចំណា
msgid "Delete bookmark"
msgstr ""
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr ""
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr ""
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3255,8 +3255,8 @@ msgstr ""
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
#: libraries/DisplayResults.class.php:4492
@ -4141,14 +4141,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -6936,8 +6936,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -7519,8 +7520,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -8008,8 +8009,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -9109,8 +9110,8 @@ msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
@ -9591,20 +9592,20 @@ msgstr ""
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -10049,13 +10050,13 @@ msgstr ""
msgid "no description"
msgstr ""
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -11356,8 +11357,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
#: libraries/server_privileges.lib.php:4060
@ -13938,8 +13939,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -14057,8 +14058,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

View File

@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-12-24 02:27+0200\n"
"Last-Translator: Robin van der Vliet <info@robinvandervliet.nl>\n"
"Language-Team: Kannada <https://hosted.weblate.org/projects/phpmyadmin/"
"master/kn/>\n"
"Language: kn\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: kn\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 2.2-dev\n"
@ -595,8 +595,8 @@ msgstr ""
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
#: import.php:343 import.php:626
@ -2956,25 +2956,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr ""
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr ""
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3171,8 +3171,8 @@ msgstr ""
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
#: libraries/DisplayResults.class.php:4492
@ -4055,14 +4055,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -6840,8 +6840,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -7419,8 +7420,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -7902,8 +7903,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -8996,8 +8997,8 @@ msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
@ -9478,20 +9479,20 @@ msgstr ""
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -9923,13 +9924,13 @@ msgstr ""
msgid "no description"
msgstr ""
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -11229,8 +11230,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
#: libraries/server_privileges.lib.php:4060
@ -13793,8 +13794,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -13912,8 +13913,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

View File

@ -3,15 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2015-01-04 06:01+0200\n"
"Last-Translator: Yong Kim <kim@nhn.com>\n"
"Language-Team: Korean <https://hosted.weblate.org/projects/phpmyadmin/master/"
"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 2.2-dev\n"
@ -601,11 +601,11 @@ msgstr "불완전한 인자"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"너무 큰 파일을 업로드하려고 시도했습니다. 제한을 해결하기 위해서는 "
"%sdocumentation%s를 참조하여 주십시오."
"너무 큰 파일을 업로드하려고 시도했습니다. 제한을 해결하기 위해서는 %"
"sdocumentation%s를 참조하여 주십시오."
#: import.php:343 import.php:626
msgid "Showing bookmark"
@ -904,8 +904,8 @@ msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
"Server 가 Suhosin 으로 운영중입니다. 이로 인해 발생할 수 있는 문제는 "
"%sdocumentation%s 에서 확인이 가능합니다."
"Server 가 Suhosin 으로 운영중입니다. 이로 인해 발생할 수 있는 문제는 %"
"sdocumentation%s 에서 확인이 가능합니다."
#: js/messages.php:29 libraries/import.lib.php:125 sql.php:143
msgid "\"DROP DATABASE\" statements are disabled."
@ -3066,7 +3066,7 @@ msgstr "북마크 업데이트"
msgid "Delete bookmark"
msgstr "북마크 삭제"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@ -3074,19 +3074,19 @@ msgstr ""
"서버가 응답하지 않습니다 (또는 로컬 서버의 소켓이 현재 제대로 구성되어 있지 "
"않습니다)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "서버가 응답하지 않습니다."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr "디렉토리를 포함하는 데이터베이스의 권한을 확인하십시오."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "자세히…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr "관리사용자(controluser, 설정에 정의됨)로서의 접속에 실패."
@ -3281,8 +3281,8 @@ msgstr "쿼리가 성공적으로 실행되었습니다."
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"이 뷰는 최소 이 숫자 이상의 열을 가지고 있습니다. %s문서%s를 참조해 주십시오."
@ -4183,21 +4183,20 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"작은 부동소수점 숫자, 허용 가능한 값은 -3.402823466E+38 에서 "
"-1.175494351E-38 까지, 0, 그리고 1.175494351E-38 에서 3.402823466E+38 까지입"
"니다"
"작은 부동소수점 숫자, 허용 가능한 값은 -3.402823466E+38 에서 -1.175494351E-"
"38 까지, 0, 그리고 1.175494351E-38 에서 3.402823466E+38 까지입니다"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"배정밀도 부동소수점 숫자, 허용 가능한 값은 -1.7976931348623157E+308 에서 "
"-2.2250738585072014E-308 까지, 0, 그리고 2.2250738585072014E-308 에서 "
"배정밀도 부동소수점 숫자, 허용 가능한 값은 -1.7976931348623157E+308 에서 -"
"2.2250738585072014E-308 까지, 0, 그리고 2.2250738585072014E-308 에서 "
"1.7976931348623157E+308 까지입니다"
#: libraries/Types.class.php:336
@ -5089,8 +5088,8 @@ msgid ""
"If using [kbd]cookie[/kbd] authentication and %sLogin cookie store%s is not "
"0, %sLogin cookie validity%s must be set to a value less or equal to it."
msgstr ""
"[kbd]쿠키[/kbd] 인증을 사용하면서 %sLogin cookie store%s가 0이 아니라면, "
"%sLogin cookie validity%s은 그 값 이하의 값을 가져야합니다."
"[kbd]쿠키[/kbd] 인증을 사용하면서 %sLogin cookie store%s가 0이 아니라면, %"
"sLogin cookie validity%s은 그 값 이하의 값을 가져야합니다."
#: libraries/config/ServerConfigChecks.class.php:423
#, php-format
@ -5115,8 +5114,8 @@ msgid ""
msgstr ""
"[kbd]config[/kbd] 권한 타입 설정에 자동 로그인을 위해 사용자명과 암호를 포함"
"했습니다. 이 설정은 실서비스용으로는 권장하지 않습니다. 누군가가 phpMyAdmin"
"이 설치된 주소를 추측하고 접속하여 phpMyAdmin 패널을 건드릴 수 있습니다. "
"%sauthentication type%s을 [kbd]cookie[/kbd]나 [kbd]http[/kbd]로 설정하세요."
"이 설치된 주소를 추측하고 접속하여 phpMyAdmin 패널을 건드릴 수 있습니다. %"
"sauthentication type%s을 [kbd]cookie[/kbd]나 [kbd]http[/kbd]로 설정하세요."
#: libraries/config/ServerConfigChecks.class.php:437
#, php-format
@ -7203,8 +7202,9 @@ msgstr "수호신 경고"
#| "Disable the default warning that is displayed on the Structure page if "
#| "column names in a table are reserved MySQL words."
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"테이블의 컬럼 이름이 MySQL 예약어일 경우 구조 페이지에서 출력되는 기본 경고"
"를 끄기."
@ -7801,8 +7801,8 @@ msgstr ", @TABLE@은 테이블 이름이 됨"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"이 값은 %1$sstrftime%2$s에 의해 생성되었습니다. 따라서, 시간 포맷 문자열을 써"
"서 변경할 수 있습니다. 또한, 다음과 같은 변환도 일어납니다: %3$s. 그 외의 문"
@ -8321,8 +8321,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr "PBXT에 관한 문서나 추가 정보는 %sPrimeBase XT 홈페이지%s에 있습니다."
#: libraries/engines/pbxt.lib.php:138
@ -9437,8 +9437,8 @@ msgstr "%s에 오셨습니다"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"설정 파일을 생성하지 않은 것 같습니다. %1$ssetup script%2$s 를 사용해 설정 파"
"일을 생성할 수 있습니다."
@ -9943,7 +9943,7 @@ msgstr "열(컬럼) 이름: "
msgid "Invalid parameter for CSV import: %s"
msgstr "CSV를 가져오기 위한 파라미터가 잘못됨: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@ -9952,14 +9952,14 @@ msgstr ""
"지정한 컬럼(%s)이 잘못되었습니다. 각 컬럼의 이름에 대해, 오타가 없는지, 콤마"
"로 구분되어 있는지 확인하시고, 컬럼 이름을 따옴표로 묶지 않도록 하세요."
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, fuzzy, php-format
#| msgid "Invalid rule declaration on line %s."
msgid "Invalid format of CSV input on line %d."
msgstr "%s 행에 잘못된 규칙 선언"
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, fuzzy, php-format
#| msgid "Invalid rule declaration on line %s."
msgid "Invalid column count in CSV input on line %d."
@ -10439,14 +10439,14 @@ msgstr "수정된 설정 파일을 적용하기 위해 phpMyAdmin에 다시 로
msgid "no description"
msgstr "설명이 없습니다"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "phpMyAdmin 설정 공간 테이블이 없습니다"
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@ -11796,8 +11796,8 @@ msgstr "사용자 개요"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"주의: phpMyAdmin은 사용자의 권한 정보를 MySQL의 privilege 테이블에서 가져옵니"
"다. 만약 수동으로 서버의 권한 정보를 수정하였다면, 서버의 정보와 맞지 않을 "
@ -14577,8 +14577,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
"전체 쿼리 캐시 크기(Size)에서 남은 쿼리 캐시 메모리의 현재 비율은 %s%% 입니"
"다. 80%%보다 높아야 됩니다"
@ -14708,8 +14708,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
"정렬 연산의 %s%%가 임시 테이블을 생성합니다. 이 값은 10%% 미만인 것이 좋습니"
"다."

View File

@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-10-02 15:09+0200\n"
"Last-Translator: Purodha <publi@web.de>\n"
"Language-Team: Colognian <https://hosted.weblate.org/projects/phpmyadmin/"
"master/ksh/>\n"
"Language: ksh\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ksh\n"
"Plural-Forms: nplurals=3; plural=n==0 ? 0 : n==1 ? 1 : 2;\n"
"X-Generator: Weblate 1.10-dev\n"
@ -601,8 +601,8 @@ msgstr ""
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
#: import.php:343 import.php:626
@ -2973,25 +2973,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr ""
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr ""
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3190,8 +3190,8 @@ msgstr ""
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
#: libraries/DisplayResults.class.php:4492
@ -4079,14 +4079,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -6871,8 +6871,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -7450,8 +7451,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -7939,8 +7940,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -9038,8 +9039,8 @@ msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
@ -9520,20 +9521,20 @@ msgstr ""
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -9966,13 +9967,13 @@ msgstr ""
msgid "no description"
msgstr ""
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -11274,8 +11275,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
#: libraries/server_privileges.lib.php:4060
@ -13837,8 +13838,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -13956,8 +13957,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

View File

@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-02-03 16:59+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Kyrgyz <http://hosted.weblate.org/projects/phpmyadmin/master/"
"ky/>\n"
"Language: ky\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ky\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 1.9-dev\n"
@ -267,8 +267,8 @@ msgstr "%1$s берилиштер базасы %2$s на(га) кочурулд
msgid ""
"The phpMyAdmin configuration storage has been deactivated. %sFind out why%s."
msgstr ""
"пхпМенинАдминимдин конфигурацияларын сактоо очурулду. Табуу учун эмнеге "
"%shere%s бастыныз."
"пхпМенинАдминимдин конфигурацияларын сактоо очурулду. Табуу учун эмнеге %"
"shere%s бастыныз."
#: db_printview.php:48 db_tracking.php:124 db_tracking.php:264
#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:770
@ -609,8 +609,8 @@ msgstr ""
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
#: import.php:343 import.php:626
@ -857,8 +857,8 @@ msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. %sFind out why%s. "
msgstr ""
"пхпМенинАдминимдин конфигурацияларын сактоо очурулду. Табуу учун эмнеге "
"%shere%s бастыныз."
"пхпМенинАдминимдин конфигурацияларын сактоо очурулду. Табуу учун эмнеге %"
"shere%s бастыныз."
#: index.php:542
msgid ""
@ -2991,25 +2991,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr ""
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr ""
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3208,8 +3208,8 @@ msgstr ""
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
#: libraries/DisplayResults.class.php:4492
@ -4096,14 +4096,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -6894,8 +6894,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -7473,8 +7474,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -7962,8 +7963,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -9066,8 +9067,8 @@ msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
@ -9548,20 +9549,20 @@ msgstr ""
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -10008,13 +10009,13 @@ msgstr ""
msgid "no description"
msgstr ""
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -11314,8 +11315,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
#: libraries/server_privileges.lib.php:4060
@ -13904,8 +13905,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -14023,8 +14024,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-12-21 13:06+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: li\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: li\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
#: changelog.php:36 license.php:28
@ -593,8 +593,8 @@ msgstr ""
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
#: import.php:343 import.php:626
@ -2954,25 +2954,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr ""
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr ""
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3169,8 +3169,8 @@ msgstr ""
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
#: libraries/DisplayResults.class.php:4492
@ -4053,14 +4053,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -6838,8 +6838,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -7417,8 +7418,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -7900,8 +7901,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -8994,8 +8995,8 @@ msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
@ -9476,20 +9477,20 @@ msgstr ""
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -9921,13 +9922,13 @@ msgstr ""
msgid "no description"
msgstr ""
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -11227,8 +11228,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
#: libraries/server_privileges.lib.php:4060
@ -13791,8 +13792,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -13910,8 +13911,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

View File

@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-03-28 11:03+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Lithuanian <https://hosted.weblate.org/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"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
"%100<10 || n%100>=20) ? 1 : 2;\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.9-dev\n"
#: changelog.php:36 license.php:28
@ -633,11 +633,11 @@ msgstr "užbaigti įterpimus"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti "
"%sdokumentaciją%s būdams kaip apeiti šį apribojimą."
"Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti %"
"sdokumentaciją%s būdams kaip apeiti šį apribojimą."
#: import.php:343 import.php:626
msgid "Showing bookmark"
@ -2908,8 +2908,8 @@ msgstr ""
#| "Failed formatting string for rule '%s'. PHP threw following error: %s"
msgid "Failed formatting string for rule '%s'."
msgstr ""
"Nepavyko suformuoti eilutės taisyklei „%s“. PHP išspjovė štai tokią klaidą: "
"%s"
"Nepavyko suformuoti eilutės taisyklei „%s“. PHP išspjovė štai tokią klaidą: %"
"s"
#: libraries/Advisor.class.php:396
#, php-format
@ -3320,7 +3320,7 @@ msgstr "Rodomos žymelės"
msgid "Delete bookmark"
msgstr "Ištrinti sąryšį"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
#, fuzzy
#| msgid " the local MySQL server's socket is not correctly configured)"
msgid ""
@ -3328,21 +3328,21 @@ msgid ""
"configured)."
msgstr "(arba vietiniai MySQL serverio socketai yra blogai sukonfigūruoti)"
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Serveris neatsako"
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Detalės…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3565,11 +3565,11 @@ msgstr "Jūsų SQL užklausa sėkmingai įvykdyta"
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos "
"%sdokumentacijoje%s."
"Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos %"
"sdokumentacijoje%s."
#: libraries/DisplayResults.class.php:4492
#, fuzzy, php-format
@ -4543,14 +4543,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -7972,8 +7972,9 @@ msgstr "Suhosin įspėjimas"
#| "Structure page if any of the required tables for the phpMyAdmin "
#| "configuration storage could not be found"
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"Išjungti standartinį perspėjimą, kuris rodomas duomenų bazės struktūros "
"puslapyje, kai neįmanoma rasti phpMyAdmin nustatymų saugyklai reikalingų "
@ -8630,8 +8631,8 @@ msgstr ", @TABLE@ taps lentelės pavadinimu"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Ši reikšmė interpretuojama naudojant %1$sstrftime%2$s, taigi Jūs galite "
"keisti laiko formatavimą. Taip pat pakeičiamos šios eilutės: %3$s. Kitas "
@ -9161,8 +9162,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -10337,8 +10338,8 @@ msgstr "Jūs naudojate %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Jūs dar turbūt nesukūrėte nustatymų failo. Galite pasinaudoti %1$snustatymų "
"skriptu%2$s, kad sukurtumėte failą."
@ -10891,7 +10892,7 @@ msgstr "Stulpelių vardai: "
msgid "Invalid parameter for CSV import: %s"
msgstr "Negalimas parametras CSV importavimui: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@ -10900,13 +10901,13 @@ msgstr ""
"Blogai nurodyti stulpeliai (%s)! Įsitikinkite, kad stulpelių vardai parašyti "
"gerai, atskirti kableliais ir apskliausti (apimti, aptverti) kabutėmis."
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Neteisingas CSV įvedimo formatas eilutėje %d."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Neteisingas stulpelių skaičius CSV įvedimo eilutėje %d."
@ -11458,14 +11459,14 @@ msgstr ""
msgid "no description"
msgstr "Aprašymo nėra"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "Trūksta phpMyAdmin nustatymų saugyklos lentelių"
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@ -12899,8 +12900,8 @@ msgstr "Naudotojų apžvalga"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Pastaba: phpMyAdmin gauna vartotojų teises tiesiai iš MySQL privilegijų "
"lentelės. Šiose lentelėse nurodytos teisės gali skirtis nuo nustatymų "
@ -15763,8 +15764,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -15897,8 +15898,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

View File

@ -3,15 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-11-05 10:37+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Latvian <https://hosted.weblate.org/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 2.0-dev\n"
@ -617,11 +617,11 @@ msgstr "Pilnas INSERT izteiksmes"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Visticamāk Jūs mēģinājāt augšupielādēt failu, kas ir par lielu. Skaties "
"%sdocumentation%s, lai atrastu risinājumu šai problēmai."
"Visticamāk Jūs mēģinājāt augšupielādēt failu, kas ir par lielu. Skaties %"
"sdocumentation%s, lai atrastu risinājumu šai problēmai."
#: import.php:343 import.php:626
msgid "Showing bookmark"
@ -3262,27 +3262,27 @@ msgstr "Rāda grāmatzīmi"
msgid "Delete bookmark"
msgstr "Meklēt"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Serveris neatbild"
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr ""
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3519,8 +3519,8 @@ msgstr "Jūsu SQL vaicājums tika veiksmīgi izpildīts"
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
#: libraries/DisplayResults.class.php:4492
@ -4484,14 +4484,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -7472,8 +7472,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -8137,8 +8138,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -8649,8 +8650,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -9828,8 +9829,8 @@ msgstr "Laipni lūgti %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
@ -10392,20 +10393,20 @@ msgstr "Kolonnu nosaukumi"
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -10933,13 +10934,13 @@ msgstr ""
msgid "no description"
msgstr "Bez apraksta"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -12370,13 +12371,13 @@ msgstr "Lietotāju pārskats"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Piezīme: phpMyAdmin saņem lietotāju privilēģijas pa taisno no MySQL "
"privilēģiju tabilām. Šo tabulu saturs var atšķirties no privilēģijām, ko "
"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams "
"%spārlādēt privilēģijas%s pirms Jūs turpināt."
"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams %"
"spārlādēt privilēģijas%s pirms Jūs turpināt."
#: libraries/server_privileges.lib.php:4060
msgid "The selected user was not found in the privilege table."
@ -15231,8 +15232,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -15360,8 +15361,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218
@ -16288,8 +16289,8 @@ msgstr ""
#~ "%s."
#~ msgstr ""
#~ "Nevar inicializēt SQL pārbaudītāju. Lūdzu pārbaudiet, vai esat "
#~ "uzinstalējuši nepieciešamos PHP paplašinājumus, kā aprakstīts "
#~ "%sdokumentācijā%s."
#~ "uzinstalējuši nepieciešamos PHP paplašinājumus, kā aprakstīts %"
#~ "sdokumentācijā%s."
#, fuzzy
#~| msgid "Copy"

View File

@ -3,15 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-11-05 10:33+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Macedonian <https://hosted.weblate.org/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 2.0-dev\n"
@ -643,8 +643,8 @@ msgstr "Комплетен INSERT (со имиња на полињата)"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
#: import.php:343 import.php:626
@ -3391,7 +3391,7 @@ msgstr "Пребарување"
msgid "Delete bookmark"
msgstr "Пребарување"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@ -3399,21 +3399,21 @@ msgid ""
"configured)."
msgstr "(или приклучокот со локалниот MySQL сервер не е исправно подесен)"
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Серверот не одговара"
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr ""
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3652,8 +3652,8 @@ msgstr "Вашиот SQL упит успешно е извршен"
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
#: libraries/DisplayResults.class.php:4492
@ -4621,14 +4621,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -7622,8 +7622,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -8285,8 +8286,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -8817,8 +8818,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -10000,8 +10001,8 @@ msgstr "%s Добредојдовте"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
@ -10564,20 +10565,20 @@ msgstr "Имиња на колони"
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -11123,13 +11124,13 @@ msgstr ""
msgid "no description"
msgstr "нема опис"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -12571,8 +12572,8 @@ msgstr "Преглед на корисници"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Напомена: phpMyAdmin ги зема привилегиите на корисникот директно од MySQL "
"табелата на привилегии. Содржината на оваа табела табела може да се "
@ -15432,8 +15433,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -15562,8 +15563,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

View File

@ -5,15 +5,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-02-27 10:56+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Malayalam <https://hosted.weblate.org/projects/phpmyadmin/"
"master/ml/>\n"
"Language: ml\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ml\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 1.9-dev\n"
@ -607,8 +607,8 @@ msgstr ""
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
#: import.php:343 import.php:626
@ -3021,25 +3021,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr ""
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr ""
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3244,8 +3244,8 @@ msgstr "%s എന്ന വിവരശേഖരം ഉപേക്ഷിച്
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
#: libraries/DisplayResults.class.php:4492
@ -4145,14 +4145,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -6970,8 +6970,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -7551,8 +7552,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -8040,8 +8041,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -9169,8 +9170,8 @@ msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
@ -9659,20 +9660,20 @@ msgstr ""
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -10117,13 +10118,13 @@ msgstr ""
msgid "no description"
msgstr ""
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -11424,8 +11425,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
#: libraries/server_privileges.lib.php:4060
@ -14057,8 +14058,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -14176,8 +14177,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

View File

@ -3,15 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-11-05 10:28+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Mongolian <https://hosted.weblate.org/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 2.0-dev\n"
@ -629,8 +629,8 @@ msgstr "Оруулалтыг дуусгах"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Хэтэрхий том хэмжээтэй файл ачаалахыг оролдсон бололтой. Үүнийг хэрхэн "
"шийдэхийг %sбаримтжуулалт%s-с уншина уу."
@ -3426,7 +3426,7 @@ msgstr "Хавчуургыг харуулж байна"
msgid "Delete bookmark"
msgstr "Холбоог устгах"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
#, fuzzy
#| msgid " the local MySQL server's socket is not correctly configured)"
msgid ""
@ -3434,21 +3434,21 @@ msgid ""
"configured)."
msgstr "(эсвэл дотоод MySQL сервэрийн socket нь зөв тохируулагдаагүй)"
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Сервэрээс хариу алга"
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr ""
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3682,8 +3682,8 @@ msgstr "Таны SQL-асуулт амжилттай ажиллав"
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
#: libraries/DisplayResults.class.php:4492
@ -4650,14 +4650,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -7652,8 +7652,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -8324,12 +8325,12 @@ msgstr ""
#| "will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Энэ утга нь %1$sstrftime%2$s -ийг хэрэглэж үүссэн, тиймээс та хугацааны "
"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: "
"%3$s. Бусад бичвэрүүд үүн шиг хадгалагдана."
"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: %"
"3$s. Бусад бичвэрүүд үүн шиг хадгалагдана."
#: libraries/display_export.lib.php:526
msgid "use this for future exports"
@ -8867,8 +8868,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -10054,11 +10055,11 @@ msgstr "%s-д тавтай морилно уу"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та "
"%1$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно."
"Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та %1"
"$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно."
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
msgid ""
@ -10618,20 +10619,20 @@ msgstr "Баганын нэрс"
msgid "Invalid parameter for CSV import: %s"
msgstr "CSV оруулалтад буруу параметр нь: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "CSV оруулалтад %d мөрөнд буруу тогтнол байна."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, fuzzy, php-format
#| msgid "Invalid field count in CSV input on line %d."
msgid "Invalid column count in CSV input on line %d."
@ -11166,13 +11167,13 @@ msgstr ""
msgid "no description"
msgstr "тайлбаргүй"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -12617,8 +12618,8 @@ msgstr "User overview"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Тэмдэглэл: phpMyAdmin нь MySQL-ийн онцгой эрхийн хүснэгтээс хэрэглэгчдийн "
"онцгой эрхийг авна. Хэрэв тэд гараар өөрчлөгдсөн бол эдгээр хүснэгтийн "
@ -15538,8 +15539,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -15671,8 +15672,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218
@ -17121,8 +17122,8 @@ msgstr "ХИ. давхацсан холболтууд"
#~ "The additional features for working with linked tables have been "
#~ "deactivated. To find out why click %shere%s."
#~ msgstr ""
#~ "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд"
#~ "%s дарж шалгах."
#~ "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд%"
#~ "s дарж шалгах."
#~ msgid "Ignore duplicate rows"
#~ msgstr "Давхардсан мөрүүдийг алгасах"

View File

@ -3,15 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-11-05 10:35+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Malay <https://hosted.weblate.org/projects/phpmyadmin/master/"
"ms/>\n"
"Language: ms\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ms\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 2.0-dev\n"
@ -640,11 +640,11 @@ msgstr "Kemasukkan Selesai"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Anda mungkin cuba memuatnaik fail yang terlalu besar. Sila rujuk "
"%sdocumentation%s untuk mengetahui had yang dibenarkan."
"Anda mungkin cuba memuatnaik fail yang terlalu besar. Sila rujuk %"
"sdocumentation%s untuk mengetahui had yang dibenarkan."
#: import.php:343 import.php:626
msgid "Showing bookmark"
@ -3341,25 +3341,25 @@ msgstr "Memaparkan penanda halaman"
msgid "Delete bookmark"
msgstr "Cari"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr ""
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr ""
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3583,8 +3583,8 @@ msgstr "Kueri-SQL anda telah dilaksanakan dengan jaya"
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
#: libraries/DisplayResults.class.php:4492
@ -4534,14 +4534,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -7485,8 +7485,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -8139,8 +8140,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -8651,8 +8652,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -9816,8 +9817,8 @@ msgstr "Selamat Datang ke %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
@ -10360,20 +10361,20 @@ msgstr "Nama Kolum"
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -10836,13 +10837,13 @@ msgstr ""
msgid "no description"
msgstr "tiada keterangan"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -12236,8 +12237,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
#: libraries/server_privileges.lib.php:4060
@ -15041,8 +15042,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -15168,8 +15169,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

View File

@ -3,15 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2015-01-29 16:02+0200\n"
"Last-Translator: Christoffer Haugom <ph3n1x.nobody@gmail.com>\n"
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/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 2.2-dev\n"
@ -614,11 +614,11 @@ msgstr "Ufullstendige parametre"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Du forsøkte sannsynligvis å laste opp en fil som var for stor. Sjekk "
"%sdokumentasjonen%s for måter å omgå denne begrensningen på."
"Du forsøkte sannsynligvis å laste opp en fil som var for stor. Sjekk %"
"sdokumentasjonen%s for måter å omgå denne begrensningen på."
#: import.php:343 import.php:626
msgid "Showing bookmark"
@ -3195,7 +3195,7 @@ msgstr "Oppdater bokmerke"
msgid "Delete bookmark"
msgstr "Slett bokmerke"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@ -3203,19 +3203,19 @@ msgstr ""
"Tjeneren svarer ikke (eller den lokale MySQL tjenerens sokkel er ikke "
"korrekt konfigurert)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "Tjeneren svarer ikke."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr "Vennligst sjekk privilegiene på mappen som inneholder databasen."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Detaljer…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Tilkoblingen for kontrollbrukeren som definert i din konfigurasjon feilet."
@ -3415,8 +3415,8 @@ msgstr "Kommandoen/spørringen er utført."
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr "Denne visningen har minst dette antall rader. Sjekk %sdocumentation%s."
#: libraries/DisplayResults.class.php:4492
@ -3558,8 +3558,8 @@ msgstr "Ukjent feil oppstod under filopplastingen."
#: libraries/File.class.php:461
msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]."
msgstr ""
"Feil oppstod under forsøk på flytting av den opplastede filen, se "
"[doc@faq1-11]FAQ 1.11[/doc]."
"Feil oppstod under forsøk på flytting av den opplastede filen, se [doc@faq1-"
"11]FAQ 1.11[/doc]."
#: libraries/File.class.php:479
msgid "Error while moving uploaded file."
@ -4338,16 +4338,16 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"Et lite flyttall, tillatte verdier er fra -3,402823466E+38 til "
"-1,175494351E-38, 0, og fra 1,175494351E-38 til 3,402823466E+38"
"Et lite flyttall, tillatte verdier er fra -3,402823466E+38 til -1,175494351E-"
"38, 0, og fra 1,175494351E-38 til 3,402823466E+38"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"Et dobbelt presisjons flyttall, tillatte verdier er fra -1,7976931348623157E"
@ -5325,8 +5325,8 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
"Hvis du føler at dette er nødvending, så bruk ekstra "
"beskyttelsesinnstillinger - [a@?page=servers&amp;mode=edit&amp;id="
"%1$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?"
"beskyttelsesinnstillinger - [a@?page=servers&amp;mode=edit&amp;id=%1"
"$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?"
"page=form&amp;formset=features#tab_Security]godkjente mellomlagerliste[/a]. "
"Merk at IP-basert beskyttelse ikke er så god hvis din IP tilhører en "
"Internettilbyder som har tusenvis av brukere, inkludert deg, tilknyttet."
@ -7855,8 +7855,9 @@ msgstr ""
#| "Structure page if any of the required tables for the phpMyAdmin "
#| "configuration storage could not be found"
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"Deaktiver varselet som vises på databasedetaljsiden Struktur om det er noen "
"påkrevde tabeller for phpMyAdmins konfigurasjonslager som ikke ble funnet"
@ -8536,8 +8537,8 @@ msgstr ", @TABLE@ vil bli tabellnavnet"
#| "will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Denne verdien blir tolket slik som %1$sstrftime%2$s, så du kan bruke "
"tidformateringsstrenger. I tillegg vil følgende transformasjoner skje: %3$s. "
@ -9099,8 +9100,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -10291,8 +10292,8 @@ msgstr "Velkommen til %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"En mulig årsak for dette er at du ikke opprettet konfigurasjonsfila. Du bør "
"kanskje bruke %1$ssetup script%2$s for å opprette en."
@ -10845,20 +10846,20 @@ msgstr "Kolonnenavn: "
msgid "Invalid parameter for CSV import: %s"
msgstr "Ugyldig parameter for CSV import: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Ugyldig format i CSV importen i linje %d."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Ugyldig antall kolonner i CSV importen i linje %d."
@ -11406,14 +11407,14 @@ msgstr ""
msgid "no description"
msgstr "ingen beskrivelse"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "Mangler phpMyAdmin konfigurasjonslagertabeller"
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@ -12907,8 +12908,8 @@ msgstr "Brukeroversikt"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Merk: phpMyAdmin får brukerprivilegiene direkte fra MySQL "
"privilegietabeller. Innholdet i disse tabellene kan være forskjellig fra de "
@ -15971,8 +15972,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -16107,8 +16108,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218
@ -17298,8 +17299,8 @@ msgstr "concurrent_insert er satt til 0"
#~ "For a list of available transformation options and their MIME type "
#~ "transformations, click on %stransformation descriptions%s"
#~ msgstr ""
#~ "For en liste over tilgjengelige transformasjonsvalg, klikk på "
#~ "%stransformasjonsbeskrivelser%s"
#~ "For en liste over tilgjengelige transformasjonsvalg, klikk på %"
#~ "stransformasjonsbeskrivelser%s"
#~ msgid "SQL command to fetch available databases"
#~ msgstr "SQL kommando for å hente liste over databaser"
@ -17784,8 +17785,8 @@ msgstr "concurrent_insert er satt til 0"
#~ msgid ""
#~ "Are you sure you want to disable all BLOB references for database %s?"
#~ msgstr ""
#~ "Er du sikker på at du ønsker å slå av alle BLOB referanser for databasen "
#~ "%s?"
#~ "Er du sikker på at du ønsker å slå av alle BLOB referanser for databasen %"
#~ "s?"
#, fuzzy
#~ msgid "Unknown error while uploading."

View File

@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-08-26 15:28+0200\n"
"Last-Translator: Nabin Ghimire <nnabinn@hotmail.com>\n"
"Language-Team: Nepali <https://hosted.weblate.org/projects/phpmyadmin/master/"
"ne/>\n"
"Language: ne\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ne\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 1.10-dev\n"
@ -607,8 +607,8 @@ msgstr ""
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
#: import.php:343 import.php:626
@ -2980,25 +2980,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr ""
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr ""
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3195,8 +3195,8 @@ msgstr ""
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
#: libraries/DisplayResults.class.php:4492
@ -4079,14 +4079,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -6867,8 +6867,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -7446,8 +7447,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -7929,8 +7930,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -9023,8 +9024,8 @@ msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
@ -9505,20 +9506,20 @@ msgstr ""
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -9950,13 +9951,13 @@ msgstr ""
msgid "no description"
msgstr ""
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -11256,8 +11257,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
#: libraries/server_privileges.lib.php:4060
@ -13823,8 +13824,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -13942,8 +13943,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

131
po/nl.po
View File

@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"PO-Revision-Date: 2015-02-04 20:30+0200\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2015-02-06 15:41+0200\n"
"Last-Translator: dingo thirteen <dingo13@gmail.com>\n"
"Language-Team: Dutch "
"<https://hosted.weblate.org/projects/phpmyadmin/master/nl/>\n"
@ -604,11 +604,11 @@ msgstr "Onvolledige parameters"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"U probeerde waarschijnlijk een bestand te uploaden dat te groot is. Zie "
"%sdocumentatie%s om deze limiet te omzeilen."
"U probeerde waarschijnlijk een bestand te uploaden dat te groot is. Zie %"
"sdocumentatie%s om deze limiet te omzeilen."
#: import.php:343 import.php:626
msgid "Showing bookmark"
@ -847,22 +847,16 @@ msgstr ""
"strings niet correct splitsen, wat tot onverwachte resultaten kan leiden."
#: index.php:488
#| msgid ""
#| "Your PHP parameter [a@http://php.net/manual/en/session.configuration."
#| "php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower "
#| "than cookie validity configured in phpMyAdmin, because of this, your "
#| "login will expire sooner than configured in phpMyAdmin."
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than "
"cookie validity configured in phpMyAdmin, because of this, your login might "
"expire sooner than configured in phpMyAdmin."
msgstr ""
"De PHP-parameter "
"[a@http://php.net/manual/en/session.configuration.php#ini.session.gc-"
"maxlifetime@_blank]session.gc_maxlifetime[/a] is korter dan de ingestelde "
"cookie validatie in phpMyAdmin. Hierdoor verloopt uw sessie eerder dan in "
"phpMyAdmin is ingesteld."
"De PHP-parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is korter dan de "
"ingestelde cookie validatie in phpMyAdmin. Hierdoor verloopt uw sessie "
"eerder dan in phpMyAdmin is ingesteld."
#: index.php:501
msgid ""
@ -3115,26 +3109,26 @@ msgstr "Bladwijzer bijwerken"
msgid "Delete bookmark"
msgstr "Bladwijzer verwijderen"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
"De server reageert niet (of de socket van de server is niet juist ingesteld)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "De server reageert niet."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr "Controleer de rechten op de map met de database."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Details…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Verbinding voor de controlegebruiker zoals in de configuratie is opgegeven "
@ -3333,8 +3327,8 @@ msgstr "Uw SQL-query is succesvol uitgevoerd."
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Deze view heeft minimaal deze hoeveelheid aan rijen. Zie de %sdocumentatie%s."
@ -4248,17 +4242,17 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"Een klein getal met variabele kommapositie, toegelaten waarden zijn "
"-3,402823466E+38 tot -1,175494351E-38, 0, en 1,175494351E-38 tot 3.402823466E"
"Een klein getal met variabele kommapositie, toegelaten waarden zijn -"
"3,402823466E+38 tot -1,175494351E-38, 0, en 1,175494351E-38 tot 3.402823466E"
"+38"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"Een getal met variabele kommapositie met dubbel nauwkeurigheid, toegelaten "
@ -4577,7 +4571,6 @@ msgid "Create PHP Code"
msgstr "Genereer PHP-code"
#: libraries/Util.class.php:1275
#| msgid "Edit index"
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "Inline bewerken"
@ -5214,8 +5207,8 @@ msgstr ""
"U gebruikt het [kbd]config[/kbd]-authenticatietype en heeft de te gebruiken "
"gebruikersnaam en wachtwoord hierbij opgegeven voor automatisch aanmelden. "
"Dit is niet aanbevolen voor productiesystemen gezien iemand die het URL van "
"phpMyAdmin achterhaald direct toegang heeft. Gebruik het %sauthenticatietype"
"%s [kbd]cookie[/kbd] of [kbd]http[/kbd]."
"phpMyAdmin achterhaald direct toegang heeft. Gebruik het %sauthenticatietype%"
"s [kbd]cookie[/kbd] of [kbd]http[/kbd]."
#: libraries/config/ServerConfigChecks.class.php:437
#, php-format
@ -7358,17 +7351,18 @@ msgstr "Suhosin-waarschuwing"
#: libraries/config/messages.inc.php:757
#| msgid ""
#| "Disable the default warning that is displayed on the Structure page if "
#| "column names in a table are reserved MySQL words."
#| "Disable the default warning that is displayed on the main page if session."
#| "gc_maxlifetime is less than `LoginCookieValidity`."
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"De waarschuwing uitschakelen die getoond wordt op de hoofdpagina wanneer "
"session.gc_maxlifetime lager is dan 'LoginCookieValidity'."
"De waarschuwing uitschakelen die getoond wordt op de hoofdpagina wanneer de "
"waarde van de PHP instelling 'session.gc_maxlifetime' lager is dan de waarde "
"van 'LoginCookieValidity'."
#: libraries/config/messages.inc.php:758
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "Waarschuwing geldigheid inlog-cookie"
@ -7978,13 +7972,13 @@ msgstr ", @TABLE@ wordt vervangen door de tabelnaam"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Deze waarde wordt geïnterpreteerd met behulp van %1$sstrftime%2$s, het "
"gebruik van opmaakcodes is dan ook toegestaan. Daarnaast worden de volgende "
"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ"
"%5$s voor meer details."
"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ%5"
"$s voor meer details."
#: libraries/display_export.lib.php:526
msgid "use this for future exports"
@ -8532,11 +8526,11 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
"Documentatie en meer informatie over PBXT kan gevonden worden op de "
"%sPrimeBase XT home pagina%s."
"Documentatie en meer informatie over PBXT kan gevonden worden op de %"
"sPrimeBase XT home pagina%s."
#: libraries/engines/pbxt.lib.php:138
msgid "Related Links"
@ -9702,8 +9696,8 @@ msgstr "Welkom bij %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"U heeft waarschijnlijk geen configuratiebestand aangemaakt. Het beste kunt u "
"%1$ssetup script%2$s gebruiken om een te maken."
@ -10221,7 +10215,7 @@ msgstr "Kolomnamen: "
msgid "Invalid parameter for CSV import: %s"
msgstr "Ongeldige parameter voor CSV-import: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@ -10230,13 +10224,13 @@ msgstr ""
"Ongeldige kolom (%s) gespecificeerd! Zorg ervoor dat de kolomnamen juist "
"gespeld zijn, gescheiden door komma's en niet voorzien van aanhalingstekens."
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Ongeldig formaat van CSV-invoer op regel %d."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Verkeerd aantal kolommen in CSV-invoer op regel %d."
@ -10575,7 +10569,6 @@ msgstr ""
"voor de link."
#: libraries/plugins/transformations/output/Text_Plain_Json.class.php:38
#| msgid "Formats text as SQL query with syntax highlighting."
msgid "Formats text as JSON with syntax highlighting."
msgstr "Maakt de tekst op in JSON met syntaxis markeringen."
@ -10740,14 +10733,14 @@ msgstr ""
msgid "no description"
msgstr "Geen beschrijving aanwezig"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
"%sMaak%s de configuratie-opslag van phpMyAdmin aan in de huidige database."
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr "%sCreate%s ontbrekende phpMyAdmin configuratie opslag tabellen."
@ -12113,8 +12106,8 @@ msgstr "Gebruikers overzicht"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Opmerking: phpMyAdmin krijgt de rechten voor de gebruikers uit de MySQL-"
"privilegestabel. De inhoud van deze tabel kan verschillen met de rechten van "
@ -12319,8 +12312,8 @@ msgid ""
"it is advisable to select only a small time span and to disable the "
"general_log and empty its table once monitoring is not required any more."
msgstr ""
"Het inschakelen van de general_log kan de serverbelasting verhogen met "
"5-15%. Wees er ook bewust van dat het genereren van statistieken uit de "
"Het inschakelen van de general_log kan de serverbelasting verhogen met 5-"
"15%. Wees er ook bewust van dat het genereren van statistieken uit de "
"logboeken een belastende taak is, daarom is het aan te raden om alleen een "
"kleine periode te selecteren, en de general_log uit te schakelen en de tabel "
"te legen zodra het monitoren niet meer nodig is."
@ -13502,8 +13495,8 @@ msgid ""
"May be approximate. Click on the number to get the exact count. See "
"[doc@faq3-11]FAQ 3.11[/doc]."
msgstr ""
"Bij benadering. Klik op het getal voor de exacte hoeveelheid. Zie "
"[doc@faq3-11]FAQ 3.11[/doc]."
"Bij benadering. Klik op het getal voor de exacte hoeveelheid. Zie [doc@faq3-"
"11]FAQ 3.11[/doc]."
#: libraries/structure.lib.php:862 libraries/structure.lib.php:2353
#: libraries/tbl_printview.lib.php:324
@ -13774,7 +13767,6 @@ msgid "Storage Engine:"
msgstr "Opslag-engine:"
#: libraries/tbl_columns_definition_form.lib.php:81
#| msgid "Connections"
msgid "Connection:"
msgstr "Verbinding:"
@ -13931,7 +13923,6 @@ msgid "Index type:"
msgstr "Indextype:"
#: libraries/tbl_indexes.lib.php:347
#| msgid "User:"
msgid "Parser:"
msgstr "Lezer:"
@ -14993,8 +14984,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
"De huidige verhouding van vrij querycachegeheugen tot de totale "
"querycachegrootte is %s%%. Dit zou meer dan 80%% moeten zijn"
@ -15151,8 +15142,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
"%s%% van alle sorteeracties veroorzaken tijdelijke tabellen, deze waarde zou "
"lager moeten zijn dan 10%%."
@ -16285,8 +16276,8 @@ msgstr "concurrent_insert is ingesteld op 0"
#~ "%s."
#~ msgstr ""
#~ "De SQL-validatie kon niet worden geïnitialiseerd. Controleer of u de "
#~ "nodige PHP-uitbreidingen heeft geïnstalleerd, zoals beschreven in de "
#~ "%sdocumentatie%s."
#~ "nodige PHP-uitbreidingen heeft geïnstalleerd, zoals beschreven in de %"
#~ "sdocumentatie%s."
#, fuzzy
#~| msgid "Error: Relation not added."

View File

@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-01-06 12:13+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Punjabi <http://hosted.weblate.org/projects/phpmyadmin/master/"
"pa/>\n"
"Language: pa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pa\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 1.9-dev\n"
@ -597,8 +597,8 @@ msgstr ""
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
#: import.php:343 import.php:626
@ -2967,25 +2967,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr ""
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr ""
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3184,8 +3184,8 @@ msgstr ""
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
#: libraries/DisplayResults.class.php:4492
@ -4074,14 +4074,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -6865,8 +6865,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -7444,8 +7445,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -7927,8 +7928,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -9023,8 +9024,8 @@ msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
@ -9505,20 +9506,20 @@ msgstr ""
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -9962,13 +9963,13 @@ msgstr ""
msgid "no description"
msgstr ""
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -11268,8 +11269,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
#: libraries/server_privileges.lib.php:4060
@ -13841,8 +13842,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -13960,8 +13961,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

View File

@ -8,11 +8,10 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -594,8 +593,8 @@ msgstr ""
#: import.php:163
#, possible-php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
#: import.php:343 import.php:626
@ -2955,25 +2954,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr ""
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr ""
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3170,8 +3169,8 @@ msgstr ""
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, possible-php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
#: libraries/DisplayResults.class.php:4492
@ -4054,14 +4053,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -6839,8 +6838,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -7418,8 +7418,8 @@ msgstr ""
#, possible-php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -7901,8 +7901,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, possible-php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -8995,8 +8995,8 @@ msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, possible-php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
@ -9477,20 +9477,20 @@ msgstr ""
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, possible-php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, possible-php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, possible-php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -9922,13 +9922,13 @@ msgstr ""
msgid "no description"
msgstr ""
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, possible-php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, possible-php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -11228,8 +11228,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
#: libraries/server_privileges.lib.php:4060

109
po/pl.po
View File

@ -3,15 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2015-01-21 02:11+0200\n"
"Last-Translator: Krystian Biesaga <krystian4842@gmail.com>\n"
"Language-Team: Polish <https://hosted.weblate.org/projects/phpmyadmin/master/"
"pl/>\n"
"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pl\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 2.2-dev\n"
@ -612,8 +612,8 @@ msgstr "Niekompletne parametry"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Prawdopodobnie nastąpiła próba załadowania zbyt dużego pliku. Proszę "
"zapoznać się %sdokumentacją%s, aby obejść to ograniczenie."
@ -924,8 +924,8 @@ msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja"
"%s."
"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja%"
"s."
#: js/messages.php:29 libraries/import.lib.php:125 sql.php:143
msgid "\"DROP DATABASE\" statements are disabled."
@ -3108,7 +3108,7 @@ msgstr "Aktualizuj zakładkę"
msgid "Delete bookmark"
msgstr "Usuń zakładkę"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@ -3116,19 +3116,19 @@ msgstr ""
"Serwer nie odpowiada (lub gniazdo lokalnego serwera nie jest prawidłowo "
"skonfigurowane)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "Serwer nie odpowiada."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr "Proszę sprawdzić uprawnienia katalogu zawierającej bazę danych."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Szczegóły…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Połączenie dla użytkownika kontrolnego zdefiniowanego w pliku "
@ -3329,8 +3329,8 @@ msgstr "Zapytanie SQL zostało wykonane pomyślnie."
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Ten widok ma przynajmniej taką liczbę wierszy (rekordów). Proszę odnieść się "
"do %sdokumentacji%s."
@ -4248,16 +4248,16 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"Małe wartości zmiennoprzecinkowych numer, dopuszczalne są - 3.402823466E 38 "
"do - 1.175494351E-38, 0 i 1.175494351E-38 do 3.402823466E 38"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"Podwójnej precyzji numer, dopuszczalne wartości zmiennoprzecinkowych są - "
@ -5151,8 +5151,8 @@ msgid ""
"random session invalidation (currently session.gc_maxlifetime is %d)."
msgstr ""
"%sWażność ciasteczka logowania%s większa niż %ssession.gc_maxlifetime%s może "
"powodować losowe wygasanie sesji (aktualnie session.gc_maxlifetime wynosi "
"%d)."
"powodować losowe wygasanie sesji (aktualnie session.gc_maxlifetime wynosi %"
"d)."
#: libraries/config/ServerConfigChecks.class.php:410
#, php-format
@ -5167,23 +5167,23 @@ msgstr ""
#: libraries/config/ServerConfigChecks.class.php:416
#, fuzzy, php-format
#| msgid ""
#| "If using cookie authentication and %sLogin cookie store%s is not 0, "
#| "%sLogin cookie validity%s must be set to a value less or equal to it."
#| "If using cookie authentication and %sLogin cookie store%s is not 0, %"
#| "sLogin cookie validity%s must be set to a value less or equal to it."
msgid ""
"If using [kbd]cookie[/kbd] authentication and %sLogin cookie store%s is not "
"0, %sLogin cookie validity%s must be set to a value less or equal to it."
msgstr ""
"W przypadku korzystania z uwierzytelniania [kbd]cookie[/kbd] i "
"%Przechowalnia sciasteczek logowania%s nie jest 0, %sWażności plików cookie"
"%s musi być ustawiona na wartość mniejsza lub równą jej."
"W przypadku korzystania z uwierzytelniania [kbd]cookie[/kbd] i %"
"Przechowalnia sciasteczek logowania%s nie jest 0, %sWażności plików cookie%s "
"musi być ustawiona na wartość mniejsza lub równą jej."
#: libraries/config/ServerConfigChecks.class.php:423
#, fuzzy, php-format
#| msgid ""
#| "If you feel this is necessary, use additional protection settings - "
#| "%shost authentication%s settings and %strusted proxies list%s. However, "
#| "IP-based protection may not be reliable if your IP belongs to an ISP "
#| "where thousands of users, including you, are connected to."
#| "If you feel this is necessary, use additional protection settings - %"
#| "shost authentication%s settings and %strusted proxies list%s. However, IP-"
#| "based protection may not be reliable if your IP belongs to an ISP where "
#| "thousands of users, including you, are connected to."
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
"authentication%s settings and %strusted proxies list%s. However, IP-based "
@ -7381,8 +7381,8 @@ msgstr "Szczegółowa nazwa serwera"
#| msgid "Whether a user should be displayed a \"show all (rows)\" button"
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
"Czy użytkownik powinien mieć wyświetlony przycisk \"pokaż wszystkie "
"(wiersze)\";"
"Czy użytkownik powinien mieć wyświetlony przycisk \"pokaż wszystkie (wiersze)"
"\";"
#: libraries/config/messages.inc.php:724
msgid "Allow to display all the rows"
@ -7562,8 +7562,9 @@ msgstr "Ostrzeżenie Suhosin"
#| "Disable the default warning that is displayed on the Structure page if "
#| "column names in a table are reserved MySQL words"
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"Wyłącz domyślne ostrzeżenia na stronie Struktura, które są wyświetlane, "
"jeśli jakiekolwiek ze słów w nazwach kolumn są zastrzeżone dla MySQL"
@ -8209,8 +8210,8 @@ msgstr ", @TABLE@ zostanie zastąpione nazwą wybranej tabeli"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Wartość ta jest interpretowana za pomocą %1$sstrftime%2$s, dzięki czemu "
"można używać wartości czasu formatowania. Dodatkowo po transformacji stanie "
@ -8771,8 +8772,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
"Dokumentacja i dodatkowe informacje o PBXT można znaleźć na %sStronie "
"domowej PrimeBase XT%s."
@ -9923,8 +9924,8 @@ msgstr "Witamy w %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Prawdopodobnie powodem jest brak utworzonego pliku konfiguracyjnego. Możesz "
"użyć %1$s skryptu instalacyjnego %2$s, aby utworzyć jedną."
@ -10449,7 +10450,7 @@ msgstr "Nazwy kolumn: "
msgid "Invalid parameter for CSV import: %s"
msgstr "Niewłaściwy parametr importu CSV: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@ -10458,13 +10459,13 @@ msgstr ""
"Nieprawidłowa kolumna (%s) określona! Upewnij się, że nazwy kolumn są "
"napisane poprawnie, oddzielone przecinkami, a nie w cudzysłowie."
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Niewłaściwy format w linii %d danych wejściowych CSV."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Niewłaściwa suma kolumn w CSV w linii %d."
@ -11001,14 +11002,14 @@ msgstr ""
msgid "no description"
msgstr "brak opisu"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "Brakuje tabel przechowujących konfigurację phpMyAdmin"
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@ -12397,8 +12398,8 @@ msgstr "Omówienie użytkowników"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Uwaga: phpMyAdmin pobiera uprawnienia użytkowników wprost z tabeli uprawnień "
"MySQL-a. Zawartość tej tabeli, jeśli zostały w niej dokonane ręczne zmiany, "
@ -15342,8 +15343,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
"Bieżący współczynnik wolnej pamięci pamięci podręcznej zapytań do "
"całkowitego zapytania wielkości cache to %s%%. Powinno być powyżej 80%%"
@ -15499,8 +15500,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
"%s%% wszelkiego rodzaju spowodować tabel tymczasowych, ta wartość ta powinna "
"być niższa niż 10%%."
@ -16054,8 +16055,8 @@ msgstr ""
#, php-format
msgid "%s%% of all connections are aborted. This value should be below 1%%"
msgstr ""
"%s%% wszystkich połączeń jest przerwana. Ta wartość ta powinna być poniżej "
"1%%"
"%s%% wszystkich połączeń jest przerwana. Ta wartość ta powinna być poniżej 1%"
"%"
#: libraries/advisory_rules.txt:406
msgid "Rate of aborted connections"
@ -17551,8 +17552,8 @@ msgstr "concurrent_insert jest ustawiony na 0"
#~ "The result of this query can't be used for a chart. See [doc@faq6-29]FAQ "
#~ "6.29[/doc]"
#~ msgstr ""
#~ "W wyniku tej kwerendy nie może być używany dla wykresu. Zobacz "
#~ "[doc@faq6-29]FAQ 6.29[/doc]"
#~ "W wyniku tej kwerendy nie może być używany dla wykresu. Zobacz [doc@faq6-"
#~ "29]FAQ 6.29[/doc]"
#~ msgid "Theme / Style"
#~ msgstr "Motyw / Styl"

View File

@ -3,15 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-11-20 14:21+0200\n"
"Last-Translator: Sandro Amaral <sandro123iv@gmail.com>\n"
"Language-Team: Portuguese <https://hosted.weblate.org/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 2.1-dev\n"
@ -608,8 +608,8 @@ msgstr "Parâmetros incompletos"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Provavelmente tentou importar um ficheiro demasiado grande. Por favor veja a "
"%sdocumentação%s para encontrar formas de contornar esta limitação."
@ -3128,7 +3128,7 @@ msgstr "Atualizar marcador"
msgid "Delete bookmark"
msgstr "Eliminar marcador"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@ -3136,19 +3136,19 @@ msgstr ""
"O servidor não está a responder (ou o socket do servidor local está mal "
"configurado)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "O servidor não está a responder."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr "Verifique quais os privilégios que o directório da base de dados tem."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Informações…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"A ligação como utilizador de controlo definida na sua configuração falhou."
@ -3346,11 +3346,11 @@ msgstr "A sua consulta SQL foi executada com êxito."
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Esta vista tem número de linhas aproximado. Por favor, consulte a "
"%sdocumentação%s."
"Esta vista tem número de linhas aproximado. Por favor, consulte a %"
"sdocumentação%s."
#: libraries/DisplayResults.class.php:4492
#, php-format
@ -4259,21 +4259,21 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"Um pequeno número de ponto flutuante, os valores permitidos são -3.402823466E"
"+38 a -1.175494351E-38, 0 e 1.175494351E-38 a 3.402823466E+38"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"Um número de ponto flutuante com dupla precisão, os valores permitidos são "
"-1.7976931348623157E+308 a -2.2250738585072014E-308, 0 e "
"2.2250738585072014E-308 a 1.7976931348623157E+308"
"Um número de ponto flutuante com dupla precisão, os valores permitidos são -"
"1.7976931348623157E+308 a -2.2250738585072014E-308, 0 e 2.2250738585072014E-"
"308 a 1.7976931348623157E+308"
#: libraries/Types.class.php:336
msgid ""
@ -4318,9 +4318,9 @@ msgid ""
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
"Um carimbo temporal, intervalo é desde 1970-01-01 00:00:01 UTC até "
"2038-01-09 03:14:07 UTC, guardado como um número de segundos desde a época "
"(1970-01-01 00:00:00 UTC)"
"Um carimbo temporal, intervalo é desde 1970-01-01 00:00:01 UTC até 2038-01-"
"09 03:14:07 UTC, guardado como um número de segundos desde a época (1970-01-"
"01 00:00:00 UTC)"
#: libraries/Types.class.php:350 libraries/Types.class.php:788
#, php-format
@ -4514,8 +4514,8 @@ msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
"O intervalo de um número inteiro de 8-byte é entre "
"-9,223,372,036,854,775,808 e 9,223,372,036,854,775,807"
"O intervalo de um número inteiro de 8-byte é entre -"
"9,223,372,036,854,775,808 e 9,223,372,036,854,775,807"
#: libraries/Types.class.php:774
msgid "A system's default double-precision floating-point number"
@ -7405,8 +7405,9 @@ msgstr "Aviso do Suhosin"
#| "Disable the default warning that is displayed on the Structure page if "
#| "column names in a table are reserved MySQL words."
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"Desativa o aviso padrão que é mostrado na página de detalhes de estrutura da "
"base de dados se algum dos nomes de coluna numa tabela forem palavras "
@ -8058,8 +8059,8 @@ msgstr ", @TABLE@ será o nome da tabela"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -8578,8 +8579,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -9760,11 +9761,11 @@ msgstr "Bemvindo ao %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Provavelmente um ficheiro de configuração não foi criado. O %1$ssetup script"
"%2$s pode ser utilizado para criar um."
"Provavelmente um ficheiro de configuração não foi criado. O %1$ssetup script%"
"2$s pode ser utilizado para criar um."
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
msgid ""
@ -10325,20 +10326,20 @@ msgstr "Nome dos Campos"
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -10817,14 +10818,14 @@ msgstr ""
msgid "no description"
msgstr "sem Descrição"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "Tabelas de configuração de armazenamento phpMyAdmin em falta"
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@ -12246,8 +12247,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Nota: O phpMyAdmin recebe os privilégios dos utilizadores directamente da "
"tabela de privilégios do MySQL. O conteúdo destas tabelas pode diferir dos "
@ -15134,8 +15135,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -15265,8 +15266,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

View File

@ -3,11 +3,11 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"PO-Revision-Date: 2015-01-30 01:11+0200\n"
"Last-Translator: Douglas Eccker <douglaseccker@hotmail.com>\n"
"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
"phpmyadmin/master/pt_BR/>\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2015-02-07 04:08+0200\n"
"Last-Translator: Junior Zancan <jrzancan@hotmail.com>\n"
"Language-Team: Portuguese (Brazil) "
"<https://hosted.weblate.org/projects/phpmyadmin/master/pt_BR/>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -607,8 +607,8 @@ msgstr "Parâmetros incompletos"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Você provavelmente tentou carregar um arquivo muito grande. Veja referências "
"na %sdocumentação%s para resolver esse problema."
@ -901,8 +901,8 @@ msgid ""
"extended features have been deactivated. %sFind out why%s. "
msgstr ""
"O armazenamento de configurações do phpMyAdmin não está completamente "
"configurado, algumas funções avançadas foram desativadas. %sDescubra porque"
"%s. "
"configurado, algumas funções avançadas foram desativadas. %sDescubra porque%"
"s. "
#: index.php:542
msgid ""
@ -2912,10 +2912,9 @@ msgid "Profiling"
msgstr "Perfil"
#: libraries/Console.class.php:183
#, fuzzy
#| msgid "Bookmark table"
msgid "Bookmark"
msgstr "Tabela de favoritos"
msgstr "Marcadores"
#: libraries/Console.class.php:184
msgid "Query failed"
@ -3136,7 +3135,7 @@ msgstr "Atualizar marcador"
msgid "Delete bookmark"
msgstr "Excluir marcador"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@ -3144,20 +3143,20 @@ msgstr ""
"O servidor não está respondendo (ou o soquete do servidor local não está "
"configurado corretamente)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "O servidor não está respondendo."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
"Por favor verifique os privilégios do diretório que contém o banco de dados."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Detalhes…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"A conexão para o controle do usuário, como definida nas configurações, "
@ -3356,11 +3355,11 @@ msgstr "Seu comando SQL foi executado com sucesso."
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Esta view tem pelo menos esse número de linhas. Por favor, consulte a "
"%sdocumentação%s."
"Esta view tem pelo menos esse número de linhas. Por favor, consulte a %"
"sdocumentação%s."
#: libraries/DisplayResults.class.php:4492
#, php-format
@ -4273,16 +4272,16 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"Um número curto de ponto flutuante, os valores permitidos são: de "
"-3,402823466E+38 a -1,175494351E-38, 0 e de 1,175494351E-38 a 3,402823466E+38"
"Um número curto de ponto flutuante, os valores permitidos são: de -"
"3,402823466E+38 a -1,175494351E-38, 0 e de 1,175494351E-38 a 3,402823466E+38"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"Um número de ponto flutuante de dupla precisão (longo), os valores "
@ -7398,8 +7397,9 @@ msgstr "Aviso do Suhosin"
#| "Disable the default warning that is displayed on the Structure page if "
#| "column names in a table are reserved MySQL words."
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"Desabilita o aviso padrão que é exibido na página de Estrutura se os nomes "
"de colunas em uma tabela forem palavras reservadas do MySQL."
@ -8029,8 +8029,8 @@ msgstr ", @TABLE@ se tornará o nome da tabela"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Esse valor é interpretado usando %1$sstrftime%2$s, então você pode usar as "
"strings de formatação de tempo. Adicionalmente a seguinte transformação "
@ -8591,8 +8591,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
"Documentação e mais informações sobre PBXT podem ser encontradas na %sPágina "
"Inicial da PrimeBase XT%s."
@ -9735,11 +9735,11 @@ msgstr "Bem-vindo ao %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Você provavelmente não criou o arquivo de configuração. Você deve usar o "
"%1$sscript de setup%2$s para criar um."
"Você provavelmente não criou o arquivo de configuração. Você deve usar o %1"
"$sscript de setup%2$s para criar um."
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
msgid ""
@ -10257,7 +10257,7 @@ msgstr "Nome das colunas: "
msgid "Invalid parameter for CSV import: %s"
msgstr "Parâmetro inválido para importação CSV: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@ -10267,13 +10267,13 @@ msgstr ""
"estejam escritos corretamente, separados por vírgulas e que não estejam "
"entre aspas."
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Formato inválido de input CSV na linha %d."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Contador de colunas inválido no input CSV na linha %d."
@ -10805,14 +10805,14 @@ msgstr ""
msgid "no description"
msgstr "sem descrição"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "Tabelas do armazenamento de configurações do phpMyAdmin faltando"
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@ -12165,8 +12165,8 @@ msgstr "Visão geral dos usuários"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Nota: O phpMyAdmin recebe os privilégios dos usuário diretamente da tabela "
"de privilégios do MySQL. O conteúdo destas tabelas pode divergir dos "
@ -15089,8 +15089,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
"A relação entre a memória livre do cache de consultas e o tamanho total do "
"cache de consultas é de %s%%. Deveria ser maior do que 80%%"
@ -15245,8 +15245,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
"%s%% de todas as ordenações criam tabelas temporárias, este valor deveria "
"ser menor do que 10%%."
@ -15417,8 +15417,8 @@ msgstr ""
#, php-format
msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
msgstr ""
"Os valores atuais de tmp_table_size são de: %s e de max_heap_table_size de: "
"%s"
"Os valores atuais de tmp_table_size são de: %s e de max_heap_table_size de: %"
"s"
#: libraries/advisory_rules.txt:269
msgid "Percentage of temp tables on disk"
@ -16960,8 +16960,8 @@ msgstr "concurrent_insert está com valor 0"
#~ "Suggest a database name on the \"Create Database\" form (if possible) or "
#~ "keep the text field empty"
#~ msgstr ""
#~ "Sugerir um nome do banco de dados no formulário \"Criar Banco de Dados"
#~ "%quot; (se possível) ou manter o campo texto vazio"
#~ "Sugerir um nome do banco de dados no formulário \"Criar Banco de Dados%"
#~ "quot; (se possível) ou manter o campo texto vazio"
#~ msgid "Suggest new database name"
#~ msgstr "Sugerir nome para o banco de dados"

View File

@ -3,15 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-10-23 14:29+0200\n"
"Last-Translator: Ion Adrian-Ionut <john@panevo.ro>\n"
"Language-Team: Romanian <https://hosted.weblate.org/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 2.0-dev\n"
@ -612,11 +612,11 @@ msgstr "Parametrii incompleți"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la "
"%sdocumentație%s pentru căi de ocolire a acestei limite."
"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la %"
"sdocumentație%s pentru căi de ocolire a acestei limite."
#: import.php:343 import.php:626
msgid "Showing bookmark"
@ -2268,8 +2268,8 @@ msgstr ""
#: js/messages.php:437
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
"Vă rugăm să introduceţi un şir hexazecimal valid. Caracterele valide sunt "
"0-9, A-F."
"Vă rugăm să introduceţi un şir hexazecimal valid. Caracterele valide sunt 0-"
"9, A-F."
#: js/messages.php:438
msgid ""
@ -3139,7 +3139,7 @@ msgstr "Actualizare semn de carte"
msgid "Delete bookmark"
msgstr "Ștergeți semnul de carte"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@ -3147,21 +3147,21 @@ msgstr ""
"Server-ul nu răspunde (sau soclul serverului MySQL local nu este configurat "
"corect)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "Serverul nu răspunde."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
"Vă rugăm să verificați drepturile de acces ale directorului ce conține baza "
"de date."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Detalii…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3361,8 +3361,8 @@ msgstr "Comanda SQL a fost executată cu succes."
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Această vedere are minim acest număr de rânduri. Vedeți %sdocumentation%s."
@ -4278,14 +4278,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -7659,8 +7659,9 @@ msgstr "Avertizare Suhosin"
#: libraries/config/messages.inc.php:757
#, fuzzy
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"Dezactivează avertismentul implicit care este afişat pe pagina cu detalii de "
"structură ale bazei de date, dacă oricare dintre tabelele necesare pentru "
@ -8366,17 +8367,17 @@ msgstr ", @TABLE@ va deveni numele tabelei"
#, fuzzy, php-format
#| msgid ""
#| "s value is interpreted using %1$sstrftime%2$s, so you can use time "
#| "matting strings. Additionally the following transformations will pen: "
#| "%3$s. Other text will be kept as is."
#| "matting strings. Additionally the following transformations will pen: %3"
#| "$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Această valoare este interpretată folosind %1$sstrftime%2$s, ca sa puteţi "
"folosi şiruri de formatare a timpului. În plus, următoarele transformări vor "
"avea loc: %3$s. Orice alt text va fi păstrat aşa cum este. Vedeţi %4$sFAQ"
"%5$s pentru detalii."
"avea loc: %3$s. Orice alt text va fi păstrat aşa cum este. Vedeţi %4$sFAQ%5"
"$s pentru detalii."
#: libraries/display_export.lib.php:526
msgid "use this for future exports"
@ -8936,8 +8937,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -10138,8 +10139,8 @@ msgstr "Bine ați venit la %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Motivul probabil pentru aceasta este că nu ați creat un fișier de "
"configurare. Puteți folosi %1$s vrăjitorul de setări %2$s pentru a crea un "
@ -10700,20 +10701,20 @@ msgstr "Denumirile coloanelor"
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, fuzzy, php-format
#| msgid "Invalid field count in CSV input on line %d."
msgid "Invalid column count in CSV input on line %d."
@ -11272,14 +11273,14 @@ msgstr ""
msgid "no description"
msgstr "Nu există descriere"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "Tabele de stocare a configurării phpMyAdmin absente"
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@ -12762,8 +12763,8 @@ msgstr "Descriere utilizator"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Notă: phpMyAdmin folosește privilegiile utilizatorilor direct din tabelul de "
"privilegii din MySQL. Conținutul acestui tabel poate diferi de cel original. "
@ -15667,8 +15668,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
"Raportul curent dintre memoria cache liberă a interogărilor și memoria cache "
"totală a interogărilor este %s%%. Ar trebui să fie peste 80%%"
@ -15839,8 +15840,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
"%s%% din sortări au generat tabele temporare, această valoare ar trebui să "
"fie mai mică de 10%%."
@ -16490,8 +16491,8 @@ msgid ""
"mysqldatabaseadministration.blogspot.com/2007/01/increase-innodblogfilesize-"
"proper-way.html\">this blog entry</a>"
msgstr ""
"De obicei, este suficientă setarea propietății {innodb_log_file_size} la "
"25%% din mărimea lui {innodb_buffer_pool_size}. O valoare foarte mare pentru "
"De obicei, este suficientă setarea propietății {innodb_log_file_size} la 25%"
"% din mărimea lui {innodb_buffer_pool_size}. O valoare foarte mare pentru "
"{innodb_log_file_size} va încetini considerabil timpul de recuperare după o "
"distrugere(eroare gravă) a unei baze de date. A se vedea de asemenea <a "
"href=\"http://www.mysqlperformanceblog.com/2006/07/03/choosing-proper-"

111
po/ru.po
View File

@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-12-24 03:16+0200\n"
"Last-Translator: Robin van der Vliet <info@robinvandervliet.nl>\n"
"Language-Team: Russian <https://hosted.weblate.org/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"
"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"
"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 2.2-dev\n"
#: changelog.php:36 license.php:28
@ -608,8 +608,8 @@ msgstr "Неполные параметры"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Вероятно, размер загружаемого файла слишком велик. Способы обхода данного "
"ограничения описаны в %sдокументации%s."
@ -2783,8 +2783,8 @@ msgstr "Неожиданные символы на строке %s."
#, php-format
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"."
msgstr ""
"Неожиданный символ на строке %1$s. Ожидается символ табуляции, а найден "
"\"%2$s\"."
"Неожиданный символ на строке %1$s. Ожидается символ табуляции, а найден \"%2"
"$s\"."
#: libraries/Advisor.class.php:475
msgid "per second"
@ -3116,26 +3116,26 @@ msgstr "Обновить закладку"
msgid "Delete bookmark"
msgstr "Удалить закладку"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
"Сервер не отвечает (либо локальный сокет сервера MySQL неверно настроен)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "Сервер не отвечает."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr "Пожалуйста, проверьте привилегии каталога содержащего базу данных."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Детали…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr "Ошибка при указании соединения для controluser в конфигурации."
@ -3334,8 +3334,8 @@ msgstr "SQL-запрос успешно выполнен."
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Данное представление имеет, по меньшей мере, указанное количество строк. "
"Пожалуйста, обратитесь к %sдокументации%s."
@ -4240,8 +4240,8 @@ msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
"Восьми-байтовое целое число, диапазон чисел со знаком от "
"-9,223,372,036,854,775,808 до 9,223,372,036,854,775,807, диапазон чисел без "
"Восьми-байтовое целое число, диапазон чисел со знаком от -"
"9,223,372,036,854,775,808 до 9,223,372,036,854,775,807, диапазон чисел без "
"знака от 0 до 18,446,744,073,709,551,615"
#: libraries/Types.class.php:330 libraries/Types.class.php:772
@ -4255,20 +4255,20 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"Малое число с плавающей точкой, допустимые значения от -3.402823466E+38 до "
"-1.175494351E-38, 0, и от 1.175494351E-38 до 3.402823466E+38"
"Малое число с плавающей точкой, допустимые значения от -3.402823466E+38 до -"
"1.175494351E-38, 0, и от 1.175494351E-38 до 3.402823466E+38"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"Число с плавающей точкой удвоенной точности, допустимые значения от "
"-1.7976931348623157E+308 до -2.2250738585072014E-308, 0, и от "
"Число с плавающей точкой удвоенной точности, допустимые значения от -"
"1.7976931348623157E+308 до -2.2250738585072014E-308, 0, и от "
"2.2250738585072014E-308 до 1.7976931348623157E+308"
#: libraries/Types.class.php:336
@ -4315,8 +4315,8 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
"Временная метка, диапазон от \"1970-01-01 00:00:01\" UTC до \"2038-01-09 "
"03:14:07\" UTC, содержит количество секунд прошедших со времени "
"(\"1970-01-01 00:00:00\" UTC)"
"03:14:07\" UTC, содержит количество секунд прошедших со времени (\"1970-01-"
"01 00:00:00\" UTC)"
#: libraries/Types.class.php:350 libraries/Types.class.php:788
#, php-format
@ -5173,8 +5173,8 @@ msgid ""
"random session invalidation (currently session.gc_maxlifetime is %d)."
msgstr ""
"%sLogin cookie validity%s более %ssession.gc_maxlifetime%s секунд может "
"вызывать случайные сбросы сессии (текущее значение session.gc_maxlifetime - "
"%d)."
"вызывать случайные сбросы сессии (текущее значение session.gc_maxlifetime - %"
"d)."
#: libraries/config/ServerConfigChecks.class.php:410
#, php-format
@ -5204,8 +5204,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
"При необходимости используйте дополнительные настройки безопасности - "
"%sидентификация по хосту%s и %sсписок доверенных прокси серверов%s. Однако, "
"При необходимости используйте дополнительные настройки безопасности - %"
"sидентификация по хосту%s и %sсписок доверенных прокси серверов%s. Однако, "
"защита по IP может быть ненадежной, если ваш IP не является выделенным и "
"кроме вас принадлежит тысячам пользователей того же интернет провайдера."
@ -7360,8 +7360,9 @@ msgstr "Предупреждение о Suhosin"
#| "Disable the default warning that is displayed on the Structure page if "
#| "column names in a table are reserved MySQL words."
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"Отключить предупреждение, отображаемое на странице структуры при наличии "
"столбцов таблицы с именами, являющимися зарезервированными словами MySQL."
@ -7977,8 +7978,8 @@ msgstr ", @TABLE@ будет замещено именем таблицы"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Значение обрабатывается функцией %1$sstrftime%2$s, благодаря чему возможна "
"вставка текущей даты и времени. Дополнительно могут быть использованы "
@ -8525,8 +8526,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
"Документацию и дальнейшую информацию по PBXT смотрите на %sдомашней странице "
"PrimeBase XT%s."
@ -9295,8 +9296,8 @@ msgid ""
"No partial dependencies possible as no non-primary column exists since "
"primary key ( %1$s ) is composed of all the columns in the table."
msgstr ""
"Невозможны частичные зависимости, т. к. нет столбца вне первичного ключа "
"( %1$s )."
"Невозможны частичные зависимости, т. к. нет столбца вне первичного ключа ( %1"
"$s )."
#: libraries/normalization.lib.php:318 libraries/normalization.lib.php:360
msgid "Table is already in second normal form."
@ -9351,8 +9352,8 @@ msgstr ""
#: libraries/normalization.lib.php:381
#, fuzzy, php-format
#| msgid ""
#| "As per above partial dependencies, in order to put the original table "
#| "'%1$s' into Second normal form we need to create the following tables:"
#| "As per above partial dependencies, in order to put the original table '%1"
#| "$s' into Second normal form we need to create the following tables:"
msgid ""
"In order to put the original table '%1$s' into Second normal form we need to "
"create the following tables:"
@ -9688,8 +9689,8 @@ msgstr "Добро пожаловать в %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Возможная причина - отсутствие файла конфигурации. Для его создания вы "
"можете воспользоваться %1$sсценарием установки%2$s."
@ -10206,7 +10207,7 @@ msgstr "Названия столбцов: "
msgid "Invalid parameter for CSV import: %s"
msgstr "Неправильный параметр импорта CSV: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@ -10215,13 +10216,13 @@ msgstr ""
"Указано ошибочное имя столбца (%s)! Убедитесь, что названия столбцов указаны "
"верно, разделены запятыми, и не заключены в кавычки."
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Неправильный формат входных CSV-данных в строке %d."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Несоответствие количества столбцов в CSV данных на строке %d."
@ -10740,13 +10741,13 @@ msgstr ""
msgid "no description"
msgstr "нет описания"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "%sСоздать%s хранилище конфигурации phpMyAdmin в текущей базе данных."
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@ -12108,8 +12109,8 @@ msgstr "Обзор пользователей"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Примечание: phpMyAdmin получает информацию о пользовательских привилегиях "
"непосредственно из таблиц привилегий MySQL. Содержимое этих таблиц может "
@ -14991,8 +14992,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
"Текущее соотношение свободного кеша запросов по отношению к полному кешу "
"запросов составляет %s%%. Значение должно быть выше 80%%"
@ -15149,8 +15150,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
"%s%% сортировок вызывает создание временных таблиц, данное значение должно "
"быть ниже 10%%."

View File

@ -3,15 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-11-11 12:16+0200\n"
"Last-Translator: Madhura Jayaratne <madhura.cj@gmail.com>\n"
"Language-Team: Sinhala <https://hosted.weblate.org/projects/phpmyadmin/"
"master/si/>\n"
"Language: si\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: si\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 2.0\n"
@ -605,8 +605,8 @@ msgstr "සම්පූර්ණ ඇතුළු කිරීම්"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"ඔබ උඩුගත කිරීමට උත්සාහ කල ගොනුව විශාල වැඩි විය හැක. මෙම සීමාවන් ඉක්මවීමේ ක්‍රම සඳහා කරුණාකර "
"%sලියකියවිලි%s බලන්න."
@ -3218,25 +3218,25 @@ msgstr "පොත් සලකුණ පෙන්වන්න"
msgid "Delete bookmark"
msgstr "වගුව තුල සෙවීම"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr "සේවාදායකය ප්‍රතිචාර නොදක්වයි (හෝ සේවාදායකයේ සොකට් නිවැරදිව සකසා නැත)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "සේවාදායකය ප්‍රතිචාර නොදක්වයි."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr "කරුණාකර දත්තගබඩාව අඩංගු ඩිරෙක්ටරිය සඳහා වරප්‍රසාද පරීක්ෂා කරන්න."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "තොරතුරු…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr "වින්‍යාසයන් හි අර්ථදක්වා ඇති පරිදි පරිපාලක භාවිතා කරන්නා ලෙස සම්බන්ධ වීම අසමත් විය."
@ -3437,8 +3437,8 @@ msgstr "ඔබගේ SQL විමසුම සාර්ථකව ක්‍ර
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"මෙම දසුනේ අවම වශයෙන් පේළි මෙතරම් සංඛයාවක් ඇත. කරුණාකර %s ලේඛනය %s අධ්‍යනය කරන්න."
@ -4376,21 +4376,21 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"කුඩා දශම සංඛ්‍යාවකි, ලබා දිය හැකි අගයන් වන්නේ -3.402823466E+38 සිට -1.175494351E-38, "
"0, හා 1.175494351E-38 සිට 3.402823466E+38"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"ද්වී-නියත දශම සංඛ්‍යාවකි, ලබා දිය හැකි අගයන් වන්නේ -1.7976931348623157E+308 විට "
"-2.2250738585072014E-308, 0, හා 2.2250738585072014E-308 සිට "
"1.7976931348623157E+308"
"ද්වී-නියත දශම සංඛ්‍යාවකි, ලබා දිය හැකි අගයන් වන්නේ -1.7976931348623157E+308 විට -"
"2.2250738585072014E-308, 0, හා 2.2250738585072014E-308 සිට 1.7976931348623157E"
"+308"
#: libraries/Types.class.php:336
msgid ""
@ -7539,8 +7539,9 @@ msgstr "Suhosin අනතුරු ඇඟවීම"
#| "Structure page if any of the required tables for the phpMyAdmin "
#| "configuration storage could not be found"
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"phpMyAdmin වින්‍යාස ගබඩාවට අවශ්‍ය එක් වගුවක් හෝ සොයාගත නොහැකි අවස්ථාවකදී දත්තගබඩා සැකිල්ල "
"පිටුවේ පෙන්වන පෙරනිමි අනතුරු ඇඟවීම අක්‍රීය කරන්න"
@ -8188,12 +8189,12 @@ msgstr ", @TABLE@ වගුවේ නාමයෙන් ප්‍රතිස්
#| "will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
#: libraries/display_export.lib.php:526
msgid "use this for future exports"
@ -8696,8 +8697,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -9856,8 +9857,8 @@ msgstr "%s වෙත ආයුබෝවන්"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"ඔබ වින්‍යාස ගොනුවක් නොසෑදුවා විය යුතුය. වින්‍යාස ගොනුවක් සෑදීමට %1$sපිහිටුවීමේ විධානාවලිය%2$s "
"භාවිතා කිරීම අවශ්‍ය විය හැකිය."
@ -10378,7 +10379,7 @@ msgstr "තීර නම්: "
msgid "Invalid parameter for CSV import: %s"
msgstr "CSV ආනයනය සඳහා වැරදි පරාමිතියක්: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@ -10387,13 +10388,13 @@ msgstr ""
"සැපයූ තීර නාමය (%s) වලංගු නොවේ! තීර නම් නිවැරදි අක්ෂර වින්‍යාසය සහිත බවට, උධෘත මගින් අහුරා "
"ඇති බවට සහ කොමා සලකුණු වලින් වෙන් කර ඇති බවට වගබලා ගන්න."
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "CSV ආනයනයේ %d පේළියේ වැරදි ආකෘතියක්."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "CSV අදානයේ %d පේළියේ වැරදි තීර ගණනකි."
@ -10898,14 +10899,14 @@ msgstr "යාවත්කාලීන කරන ලද වින්‍යාස
msgid "no description"
msgstr "විස්තරයක් නොමැත"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "phpMyAdmin වින්‍යාස ගබඩාවේ අඩු වගු"
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@ -12243,8 +12244,8 @@ msgstr "භාවිතා කරන්නන් පිළිබඳ දළ ව
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"සටහන: phpMyAdmin භාවිත කරන්නන්ගේ වරප්‍රසාද ලබාගනුයේ MySQL හි වරප්‍රසාද වගුවෙනි. "
"සේවාදායකයේ වරප්‍රසාද වෙනම ම වෙනස් කර ඇත්නම් ඉහත වගුවේ දත්ත සේවාදායකයේ වරප්‍රසාද වලට "
@ -14273,8 +14274,8 @@ msgid ""
"Your preferences will be saved for current session only. Storing them "
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
"මෙම සැසිය සඳහා පමණක් ඔබගේ තෝරාගැනීම් සුරැකේ. තෝරාගැනීම් ස්ථාවරව සුරැකීම සඳහා "
"%sphpMyAdmin වින්‍යාස ගබඩාව%s අවශ්‍යය."
"මෙම සැසිය සඳහා පමණක් ඔබගේ තෝරාගැනීම් සුරැකේ. තෝරාගැනීම් ස්ථාවරව සුරැකීම සඳහා %"
"sphpMyAdmin වින්‍යාස ගබඩාව%s අවශ්‍යය."
#: libraries/user_preferences.lib.php:129
msgid "Could not save configuration"
@ -15000,8 +15001,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -15121,8 +15122,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

141
po/sk.po
View File

@ -3,11 +3,11 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"PO-Revision-Date: 2015-01-29 21:30+0200\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2015-02-06 15:23+0200\n"
"Last-Translator: Martin Lacina <martin@whistler.sk>\n"
"Language-Team: Slovak <https://hosted.weblate.org/projects/phpmyadmin/master/"
"sk/>\n"
"Language-Team: Slovak "
"<https://hosted.weblate.org/projects/phpmyadmin/master/sk/>\n"
"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -604,8 +604,8 @@ msgstr "Nekompletné parametre"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Pravdepodobne ste sa pokúsili uploadnuť príliš veľký súbor. Prečítajte si "
"prosím %sdokumentáciu%s, ako sa dá toto obmedzenie obísť."
@ -843,12 +843,6 @@ msgstr ""
"nečakaným výsledkom."
#: index.php:488
#, fuzzy
#| msgid ""
#| "Your PHP parameter [a@http://php.net/manual/en/session.configuration."
#| "php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower "
#| "than cookie validity configured in phpMyAdmin, because of this, your "
#| "login will expire sooner than configured in phpMyAdmin."
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than "
@ -858,8 +852,8 @@ msgstr ""
"Nastavenie v php.ini [a@http://php.net/manual/en/session.configuration."
"php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] má nižšiu "
"hodnotu ako nastavenie životnosti cookie v phpMyAdmin ($cfg"
"['LoginCookieValidity']). Kvôli tomu vaše prihlásenie vyprší skôr ako je "
"nastavené v konfigurácii phpMyAdmin."
"['LoginCookieValidity']). Kvôli tomu môže vaše prihlásenie vypršať skôr ako "
"je nastavené v konfigurácii phpMyAdmina."
#: index.php:501
msgid ""
@ -916,8 +910,8 @@ msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
"Webový server beží so Suhosin-patchom. Možné dôsledky konzultujte s "
"%sdokumentáciou%s."
"Webový server beží so Suhosin-patchom. Možné dôsledky konzultujte s %"
"sdokumentáciou%s."
#: js/messages.php:29 libraries/import.lib.php:125 sql.php:143
msgid "\"DROP DATABASE\" statements are disabled."
@ -3067,7 +3061,7 @@ msgstr "Upraviť záložku"
msgid "Delete bookmark"
msgstr "Odstrániť záložku"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@ -3075,19 +3069,19 @@ msgstr ""
"Server neodpovedá (alebo socket lokálneho MySQL servera nie je správne "
"nastavený)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "Server neodpovedá."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr "Overte prístupové práva k adresáru, v ktorom je uložená databáza."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Podrobnosti…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr "Nepodarilo sa pripojiť ku controluser podľa nastavení z konfigurácie."
@ -3286,8 +3280,8 @@ msgstr "SQL dopyt bol úspešne vykonaný."
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Tento pohľad má aspoň toľko riadok. Podrobnosti nájdete v %sdokumentaci%s."
@ -4202,20 +4196,20 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"Číslo s plávajúcou desatinnou čiarkou, rozsahy: od -3,402823466E+38 do "
"-1,175494351E-38; 0; od 1,175494351E-38 do 3,402823466E+38"
"Číslo s plávajúcou desatinnou čiarkou, rozsahy: od -3,402823466E+38 do -"
"1,175494351E-38; 0; od 1,175494351E-38 do 3,402823466E+38"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"Číslo s dvojitou presnosťou a plávajúcou desatinnou čiarkou, rozsah: od "
"-1,7976931348623157E+308 do -2,2250738585072014E-308; 0; od "
"Číslo s dvojitou presnosťou a plávajúcou desatinnou čiarkou, rozsah: od -"
"1,7976931348623157E+308 do -2,2250738585072014E-308; 0; od "
"2,2250738585072014E-308 do 1,7976931348623157E+308"
#: libraries/Types.class.php:336
@ -4520,11 +4514,9 @@ msgid "Create PHP Code"
msgstr "Vytvoriť PHP kód"
#: libraries/Util.class.php:1275
#, fuzzy
#| msgid "Edit index"
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "Upraviť index"
msgstr "Upraviť v riadku"
#. l10n: Short week day name
#: libraries/Util.class.php:1580
@ -7231,22 +7223,20 @@ msgid "Suhosin warning"
msgstr "Varovanie Suhosin rozšírenia"
#: libraries/config/messages.inc.php:757
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the Structure page if "
#| "column names in a table are reserved MySQL words."
#| "Disable the default warning that is displayed on the main page if session."
#| "gc_maxlifetime is less than `LoginCookieValidity`."
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"Vypnúť štandardné varovanie na stránke so štruktúou tabuľky, ak názvy "
"stĺpcov v tabuľke patria k rezervovaným kľúčovým slovám MySQL."
"Vypnúť štandardné varovanie na hlavnej stránke, ak je hodnota PHP nastavenia "
"session.gc_maxlifetime nižšia ako hodnota `LoginCookieValidity`."
#: libraries/config/messages.inc.php:758
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "Platnosť prihlasovacej cookie"
msgstr "Varovanie o platnosti prihlasovacej cookie"
#: libraries/config/messages.inc.php:759
msgid ""
@ -7836,8 +7826,8 @@ msgstr ", meno tabuľky bude zmenené na @TABLE@"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Táto hodnota je interpretovaná pomocou %1$sstrftime%2$s, takže môžete použiť "
"reťazec pre formátovanie dátumu a času. Naviac budú vykonané tieto "
@ -8358,8 +8348,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -9458,8 +9448,8 @@ msgstr "Vitajte v %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Pravdepodobná príčina je, že neexistuje konfiguračný súbor. Na jeho "
"vytvorenie môžete použiť %1$skonfiguračný skript%2$s."
@ -9952,20 +9942,20 @@ msgstr "Názvy stĺpcov: "
msgid "Invalid parameter for CSV import: %s"
msgstr "Chybný parameter pre CSV import: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Chybný formát v CSV vstupe na riadku %d."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Chybný počet položiek v CSV vstupe na riadku %d."
@ -10272,10 +10262,8 @@ msgstr ""
"(napr. \"http://www.example.com/\"), druhý parameter je názov odkazu."
#: libraries/plugins/transformations/output/Text_Plain_Json.class.php:38
#, fuzzy
#| msgid "Formats text as SQL query with syntax highlighting."
msgid "Formats text as JSON with syntax highlighting."
msgstr "Formátuje text ako SQL príkaz pomocou syntaxového zvýrazňovania."
msgstr "Formátuje text ako JSON so zvýrazňovaním syntaxe."
#: libraries/pmd_common.php:492
msgid "Error: relation already exists."
@ -10431,14 +10419,14 @@ msgstr ""
msgid "no description"
msgstr "bez Popisu"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "Chýbajú tabuľky pre miesto uloženia phpMyAdmin konfigurácie"
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@ -11769,13 +11757,13 @@ msgstr "Zoznam používatelov"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Poznámka: phpMyAdmin získava práva používateľov priamo z tabuliek MySQL. "
"Obsah týchto tabuliek sa môže líšiť od práv, ktoré používa server, ak boli "
"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať "
"%sznovunačítanie práv%s predtým ako budete pokračovať."
"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať %"
"sznovunačítanie práv%s predtým ako budete pokračovať."
#: libraries/server_privileges.lib.php:4060
msgid "The selected user was not found in the privilege table."
@ -13107,8 +13095,8 @@ msgid ""
"May be approximate. Click on the number to get the exact count. See "
"[doc@faq3-11]FAQ 3.11[/doc]."
msgstr ""
"Môže byť nepresné. Kliknutím na číslo dostanete presný počet. Viď "
"[doc@faq3-11]FAQ 3.11[/doc]."
"Môže byť nepresné. Kliknutím na číslo dostanete presný počet. Viď [doc@faq3-"
"11]FAQ 3.11[/doc]."
#: libraries/structure.lib.php:862 libraries/structure.lib.php:2353
#: libraries/tbl_printview.lib.php:324
@ -13381,10 +13369,9 @@ msgid "Storage Engine:"
msgstr "Úložný Systém:"
#: libraries/tbl_columns_definition_form.lib.php:81
#, fuzzy
#| msgid "Connections"
msgid "Connection:"
msgstr "Spojenia"
msgstr "Spojenie:"
#: libraries/tbl_columns_definition_form.lib.php:127
msgid "PARTITION definition:"
@ -13892,8 +13879,8 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
"Ďalšie nastavenia môžete urobiť úpravou config.inc.php, napr. použitím "
"%sNastavovacieho skriptu%s."
"Ďalšie nastavenia môžete urobiť úpravou config.inc.php, napr. použitím %"
"sNastavovacieho skriptu%s."
#: prefs_manage.php:315
msgid "Save to browser's storage"
@ -14522,8 +14509,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -14641,8 +14628,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218
@ -15640,8 +15627,8 @@ msgstr "concurrent_insert je nastavené na 0"
#~ "%s."
#~ msgstr ""
#~ "SQL validator nemohol byť inicializovaný. Prosím skontrolujte, či sú "
#~ "nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v "
#~ "%sdocumentation%s."
#~ "nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v %"
#~ "sdocumentation%s."
#, fuzzy
#~| msgid "Copy"
@ -16474,8 +16461,8 @@ msgstr "concurrent_insert je nastavené na 0"
#~ msgid "Imported file compression will be automatically detected from: %s"
#~ msgstr ""
#~ "Kompresia importovaného súboru bude rozpoznaná automaticky. Podporované: "
#~ "%s"
#~ "Kompresia importovaného súboru bude rozpoznaná automaticky. Podporované: %"
#~ "s"
#~ msgid "Add into comments"
#~ msgstr "Pridať do komentárov"

133
po/sl.po
View File

@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"PO-Revision-Date: 2015-02-03 00:29+0200\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2015-02-06 15:48+0200\n"
"Last-Translator: Domen <mitenem@outlook.com>\n"
"Language-Team: Slovenian <https://hosted.weblate.org/projects/phpmyadmin/"
"master/sl/>\n"
"Language-Team: Slovenian "
"<https://hosted.weblate.org/projects/phpmyadmin/master/sl/>\n"
"Language: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
"%100==4 ? 2 : 3;\n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
"n%100==4 ? 2 : 3;\n"
"X-Generator: Weblate 2.2-dev\n"
#: changelog.php:36 license.php:28
@ -604,11 +604,11 @@ msgstr "Nepopolni parametri"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, da si v "
"%sdokumentaciji%s ogledate načine, kako obiti omejitev."
"Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, da si v %"
"sdokumentaciji%s ogledate načine, kako obiti omejitev."
#: import.php:343 import.php:626
msgid "Showing bookmark"
@ -844,12 +844,6 @@ msgstr ""
"razcepiti nizov, kar lahko vodi v nepričakovane rezultate."
#: index.php:488
#, fuzzy
#| msgid ""
#| "Your PHP parameter [a@http://php.net/manual/en/session.configuration."
#| "php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower "
#| "than cookie validity configured in phpMyAdmin, because of this, your "
#| "login will expire sooner than configured in phpMyAdmin."
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than "
@ -859,7 +853,7 @@ msgstr ""
"Vaš parameter PHP [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] je nižji od "
"veljavnosti piškotkov, določene v phpMyAdminu. Zaradi tega se bo vaša "
"prijava iztekla prej, kot je določeno v phpMyAdminu."
"prijava morda iztekla prej, kot je določeno v phpMyAdminu."
#: index.php:501
msgid ""
@ -2764,8 +2758,8 @@ msgstr "Nepričakovani znaki v vrstici %s."
#, php-format
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"."
msgstr ""
"Nepričakovan znak v vrstici %1$s. Pričakoval sem tabulator, vendar našel "
"»%2$s«."
"Nepričakovan znak v vrstici %1$s. Pričakoval sem tabulator, vendar našel »%2"
"$s«."
#: libraries/Advisor.class.php:475
msgid "per second"
@ -3097,7 +3091,7 @@ msgstr "Posodobi zaznamek"
msgid "Delete bookmark"
msgstr "Izbriši zaznamek"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@ -3105,19 +3099,19 @@ msgstr ""
"Strežnik se ne odziva (ali pa lokalna vtičnica strežnika ni pravilno "
"konfigurirana)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "Strežnik se ne odziva."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr "Prosimo, preverite pravice mape, v kateri se nahaja zbirka podatkov."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Podrobnosti …"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Povezava za controluserja, kot je določena v vaši konfiguraciji, je "
@ -3320,8 +3314,8 @@ msgstr "Poizvedbo SQL sem uspešno izvedel."
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr "Pogled ima vsaj toliko vrstic. Prosimo, oglejte si %sdokumentacijo%s."
#: libraries/DisplayResults.class.php:4492
@ -4239,20 +4233,20 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"Majhno število z decimalno vejico; dovoljene so vrednosti od -3,402823466E"
"+38 do -1,175494351E-38, 0 in od 1,175494351E-38 do 3,402823466E+38"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"Število z decimalno vejico z natančnostjo double; dovoljene so vrednosti od "
"-1,7976931348623157E+308 do -2,2250738585072014E-308, 0 in od "
"Število z decimalno vejico z natančnostjo double; dovoljene so vrednosti od -"
"1,7976931348623157E+308 do -2,2250738585072014E-308, 0 in od "
"2,2250738585072014E-308 do 1,7976931348623157E+308"
#: libraries/Types.class.php:336
@ -4560,11 +4554,9 @@ msgid "Create PHP Code"
msgstr "Ustvari kodo PHP"
#: libraries/Util.class.php:1275
#, fuzzy
#| msgid "Edit index"
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "Uredi indeks"
msgstr "Uredi v vrstici"
#. l10n: Short week day name
#: libraries/Util.class.php:1580
@ -5146,8 +5138,8 @@ msgid ""
"random session invalidation (currently session.gc_maxlifetime is %d)."
msgstr ""
"%sVeljavnost prijavnega piškotka%s večja od %ssession.gc_maxlifetime%s lahko "
"povzroči naključno razvrednotenje seje (session.gc_maxlifetime je trenutno "
"%d)."
"povzroči naključno razvrednotenje seje (session.gc_maxlifetime je trenutno %"
"d)."
#: libraries/config/ServerConfigChecks.class.php:410
#, php-format
@ -7309,22 +7301,21 @@ msgid "Suhosin warning"
msgstr "Opozorilo Suhosin"
#: libraries/config/messages.inc.php:757
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the Structure page if "
#| "column names in a table are reserved MySQL words."
#| "Disable the default warning that is displayed on the main page if session."
#| "gc_maxlifetime is less than `LoginCookieValidity`."
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"Onemogoči privzeto opozorilo, ki se prikaže na strani Struktura, če so imena "
"stolpcev v tabeli rezervirane besede MySQL."
"Onemogoči privzeto opozorilo, ki se prikaže na glavni strani, če je vrednost "
"nastavitve PHP session.gc_maxlifetime manjša kot vrednost "
"`LoginCookieValidity`."
#: libraries/config/messages.inc.php:758
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "Veljavnost prijavnega piškotka"
msgstr "Opozorilo o veljavnost prijavnega piškotka"
#: libraries/config/messages.inc.php:759
msgid ""
@ -7922,8 +7913,8 @@ msgstr ", @TABLE@ bo postalo ime tabele"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Vrednost je prevedena z uporabo %1$sstrftime%2$s, tako da lahko uporabljate "
"nize za zapis časa. Dodatno bo prišlo še do naslednjih pretvorb: %3$s. "
@ -8469,8 +8460,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
"Dokumentacijo in nadaljnje informacije o PBXT lahko najdete na %sDomači "
"strani PrimeBase XT%s."
@ -9622,8 +9613,8 @@ msgstr "Dobrodošli v %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Najverjetneje niste ustvarili konfiguracijske datoteke. Morda želite "
"uporabiti %1$snastavitveni skript%2$s, da jo ustvarite."
@ -10138,7 +10129,7 @@ msgstr "Imena stolpcev: "
msgid "Invalid parameter for CSV import: %s"
msgstr "Neveljavni parameter za uvoz CSV: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@ -10147,13 +10138,13 @@ msgstr ""
"Naveden je neveljavni stolpec (%s)! Prepričajte se, da so imena stolpcev "
"pravilno črkovana, ločena z vejicami in ne obdana z narekovaji."
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Neveljavna oblika vnosa CSV v vrstici %d."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Neveljavno število stolpcev v vnosu CSV v vrstici %d."
@ -10485,10 +10476,8 @@ msgstr ""
"URL, kot je \"http://www.example.com/\". Druga možnost je ime povezave."
#: libraries/plugins/transformations/output/Text_Plain_Json.class.php:38
#, fuzzy
#| msgid "Formats text as SQL query with syntax highlighting."
msgid "Formats text as JSON with syntax highlighting."
msgstr "Oblikuje besedilo kot poizvedbo SQL z označevanjem skladnje."
msgstr "Oblikuje besedilo kot JSON z označevanjem skladnje."
#: libraries/pmd_common.php:492
msgid "Error: relation already exists."
@ -10646,7 +10635,7 @@ msgstr ""
msgid "no description"
msgstr "brez opisa"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
@ -10654,7 +10643,7 @@ msgstr ""
"%sCreate%s tabele hrambe konfiguracije phpMyAdmin in trenutni zbirki "
"podatkov."
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr "%sUstvari%s manjkajoče tabele hrambe konfiguracije phpMyAdmin."
@ -12013,8 +12002,8 @@ msgstr "Pregled uporabnikov"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Obvestilo: phpMyAdmin dobi podatke o uporabnikovih privilegijih iz tabel "
"privilegijev MySQL. Vsebina teh tabel se lahko razlikuje od privilegijev, ki "
@ -13644,10 +13633,8 @@ msgid "Storage Engine:"
msgstr "Pogon skladiščenja:"
#: libraries/tbl_columns_definition_form.lib.php:81
#, fuzzy
#| msgid "Connections"
msgid "Connection:"
msgstr "Povezave"
msgstr "Povezava:"
#: libraries/tbl_columns_definition_form.lib.php:127
msgid "PARTITION definition:"
@ -14846,8 +14833,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
"Trenutni delež prostega pomnilnika predpomnilnika poizvedb je v primerjavi s "
"skupnim pomnilnikom predpomnilnima poizvedb %s %%. Moral bi biti nad 80 %%"
@ -15002,8 +14989,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
"%s %% vseh razvrščanj povzroča začasne tabele; vrednost bi morala biti nižja "
"od 10 %%."
@ -16236,8 +16223,8 @@ msgstr "concurrent_insert je nastavljeno na 0"
#~ "For a list of available transformation options and their MIME type "
#~ "transformations, click on %stransformation descriptions%s"
#~ msgstr ""
#~ "Za seznam razpoložljivih možnosti pretvorbe in vrst MIME kliknite na "
#~ "%sopise transformacij%s"
#~ "Za seznam razpoložljivih možnosti pretvorbe in vrst MIME kliknite na %"
#~ "sopise transformacij%s"
#~ msgid ""
#~ "Uncheck this to prevent the sending of error reports for javascript errors"

103
po/sq.po
View File

@ -3,15 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2015-01-07 01:02+0200\n"
"Last-Translator: Arben Çokaj <acokaj@shkoder.net>\n"
"Language-Team: Albanian <https://hosted.weblate.org/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 2.2-dev\n"
@ -607,8 +607,8 @@ msgstr "Parametra jo të plota"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Ndoshta provuat të ngarkoni një fil, që është shumë i madh. Ju lutem, refero "
"%sdokumentacionin%s për një vështrim të kujdesshëm për këtë kufizim."
@ -917,8 +917,8 @@ msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
"Versioni i librarisë së PHP MySQL %s ndryshon nga versioni i MySQL server "
"%s. Kjo mund të shkaktojë sjellje të paparashikuara."
"Versioni i librarisë së PHP MySQL %s ndryshon nga versioni i MySQL server %"
"s. Kjo mund të shkaktojë sjellje të paparashikuara."
#: index.php:611
#, php-format
@ -3135,7 +3135,7 @@ msgstr "Aktualizo faqeruajtësin"
msgid "Delete bookmark"
msgstr "Fshij faqeruajtësin"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@ -3143,19 +3143,19 @@ msgstr ""
"Serveri nuk përgjigjet (ose foleja e serverit lokal nuk është konfiguruar "
"saktë)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "Serveri nuk përgjigjet."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr "Ju lutem, kontrollo privilegjet e drejtorisë që përmban databazën."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Detajet…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Lidhja për përdoruesin e kontrollit, siç përcaktohet në konfigurimin tuaj "
@ -3354,11 +3354,11 @@ msgstr "Pyetsori juaj SQL është ekzekutuar me sukses."
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Kjo pamje ka të paktën këtë numër të radhëve. Ju lutem, refero "
"%sdokumentacionin%s."
"Kjo pamje ka të paktën këtë numër të radhëve. Ju lutem, refero %"
"sdokumentacionin%s."
#: libraries/DisplayResults.class.php:4492
#, php-format
@ -4266,20 +4266,20 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"Një numër i vogël pikë-lundrues, vlerat e lejuara janë -3.402823466E+38 deri "
"-1.175494351E-38, 0, dhe 1.175494351E-38 deri 3.402823466E+38"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"Një numër precizion-dyfishtë pikë-lundrues, vlerat e lejuara janë "
"-1.7976931348623157E+308 deri -2.2250738585072014E-308, 0, dhe "
"Një numër precizion-dyfishtë pikë-lundrues, vlerat e lejuara janë -"
"1.7976931348623157E+308 deri -2.2250738585072014E-308, 0, dhe "
"2.2250738585072014E-308 deri 1.7976931348623157E+308"
#: libraries/Types.class.php:336
@ -5232,8 +5232,8 @@ msgstr ""
"Vendos tipin e autentifikimit [kbd]config[/kbd] (konfig) dhe përfshij emrin "
"e përdorimit dhe fjalëkalimin për auto-hyrje, gjë që nuk është një opsion i "
"dëshiruar për pritësit (hosts) live. Secili që e di ose e merr me mend URL "
"të phpMyAdmin mund të hyjë direkt në panelin tuaj të phpMyAdmin. Vendos "
"%stipin e autentifikimit%s tek [kbd]cookie[/kbd] ose [kbd]http[/kbd]."
"të phpMyAdmin mund të hyjë direkt në panelin tuaj të phpMyAdmin. Vendos %"
"stipin e autentifikimit%s tek [kbd]cookie[/kbd] ose [kbd]http[/kbd]."
#: libraries/config/ServerConfigChecks.class.php:437
#, php-format
@ -7381,8 +7381,9 @@ msgstr "Suhosin paralajmërim"
#| "Disable the default warning that is displayed on the Structure page if "
#| "column names in a table are reserved MySQL words."
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"Pasivizon paralajmërimin standard që është shfaqur në faqen Struktura, nëse "
"emrat e kolonës në një tabelë janë fjalë të rezervuara MySQL."
@ -7995,13 +7996,13 @@ msgstr ", @TABLE@ - do të bëhet emri i tabelës"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Kjo vlerë është interpretuar me anë të %1$sstrftime%2$s, kështu që mund të "
"përdorni vargjet e formatimit të kohës. Për më tepër, transformimet që "
"vijojnë mund të ndodhin: %3$s. Teksti tjetër do të mbahet siç është. Shiko "
"%4$sFAQ%5$s për detaje."
"vijojnë mund të ndodhin: %3$s. Teksti tjetër do të mbahet siç është. Shiko %4"
"$sFAQ%5$s për detaje."
#: libraries/display_export.lib.php:526
msgid "use this for future exports"
@ -8548,11 +8549,11 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
"Dokumentacioni dhe informacioni i mëtejshëm rreth PBXT mund të gjendet në "
"%sUebfaqen PrimeBase XT%s."
"Dokumentacioni dhe informacioni i mëtejshëm rreth PBXT mund të gjendet në %"
"sUebfaqen PrimeBase XT%s."
#: libraries/engines/pbxt.lib.php:138
msgid "Related Links"
@ -9714,11 +9715,11 @@ msgstr "Mirësevjen në %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Ndoshta nuk keni krijuar një fil konfigurimi. Mund të doni të përdorni "
"%1$sskriptin e instalimit%2$s për ta krijuar atë."
"Ndoshta nuk keni krijuar një fil konfigurimi. Mund të doni të përdorni %1"
"$sskriptin e instalimit%2$s për ta krijuar atë."
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
msgid ""
@ -10235,7 +10236,7 @@ msgstr "Emrat e kolonës: "
msgid "Invalid parameter for CSV import: %s"
msgstr "Parametër i pavlefshëm për importin CSV: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@ -10244,13 +10245,13 @@ msgstr ""
"Kolonë e pavlefshme (%s) e specifikuar! Sigurohu që emrat e kolonave janë "
"shkruar saktë, ndarë me presje dhe nuk mbyllen me thonjëza."
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Format i pavlefshëm i hyrjes CSV në linjë %d."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Numër i pavlefshëm kolone në hyrjen CSV në linjë %d."
@ -10750,13 +10751,13 @@ msgstr ""
msgid "no description"
msgstr "nuk ka përshkrim"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "%sKrijo%s ruajtjen e konfigurimit phpMyAdmin në databazën aktuale."
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@ -12112,8 +12113,8 @@ msgstr "Pamja e përgjithshme e përdoruesve"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Shënim: phpMyAdmin i merr privilegjet e përdoruesit direkt nga tabelat e "
"privilegjeve MySQL. Përmbajtja e këtyre tabelave mund të ndryshojë nga "
@ -14989,8 +14990,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
"Raporti aktual i kujtesës cache të pyetsorit të lirë në krahasim me "
"madhësinë e përgjithshme cache të pyetsorit është %s%%. Duhet të jetë më "
@ -15148,8 +15149,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
"%s%% prej të gjitha llojeve shkaktojnë tabela të përkohëshme, kjo vlerë "
"duhet të jetë nën 10%%."
@ -16591,8 +16592,8 @@ msgstr "concurrent_insert është vendosur në 0"
#~ "<b>Query statistics</b>: Since its startup, %s queries have been sent to "
#~ "the server."
#~ msgstr ""
#~ "<b>Statistikat e Query</b>: Që nga nisja e tij, serverit i janë dërguar "
#~ "%s queries."
#~ "<b>Statistikat e Query</b>: Që nga nisja e tij, serverit i janë dërguar %"
#~ "s queries."
#~ msgid "Add a New User"
#~ msgstr "Shto një përdorues të ri"

View File

@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-06-08 19:34+0200\n"
"Last-Translator: Nikola Stojaković <nikola.stojakovic@hotmail.com>\n"
"Language-Team: Serbian <https://hosted.weblate.org/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"
"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"
"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.10-dev\n"
#: changelog.php:36 license.php:28
@ -646,14 +646,14 @@ msgstr "Комплетан INSERT (са именима поља)"
#: import.php:163
#, fuzzy, php-format
#| msgid ""
#| "You probably tried to upload too large file. Please refer to "
#| "%sdocumentation%s for ways to workaround this limit."
#| "You probably tried to upload too large file. Please refer to %"
#| "sdocumentation%s for ways to workaround this limit."
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте "
"%окументацију%s за начине превазилажења овог ограничења."
"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте %"
"sдокументацију%s за начине превазилажења овог ограничења."
#: import.php:343 import.php:626
msgid "Showing bookmark"
@ -3435,7 +3435,7 @@ msgstr "Приказивање маркера"
msgid "Delete bookmark"
msgstr "Обриши релацију"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
#, fuzzy
#| msgid " the local MySQL server's socket is not correctly configured)"
msgid ""
@ -3443,21 +3443,21 @@ msgid ""
"configured)."
msgstr "(или прикључак локалног MySQL сервера није исправно подешен)"
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Сервер не одговара"
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr ""
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Конекција за controluser-а, онако како је дефинисана у вашој конфигурацији, "
@ -3698,8 +3698,8 @@ msgstr "Ваш SQL упит је успешно извршен"
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
#: libraries/DisplayResults.class.php:4492
@ -4675,14 +4675,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -7714,8 +7714,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -8386,8 +8387,8 @@ msgstr ""
#| "will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Ова вредност се тумачи коришћењем %1$sstrftime%2$s, тако да можете да "
"користите стрингове за форматирање времена. Такође ће се десити и следеће "
@ -8933,8 +8934,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -10118,8 +10119,8 @@ msgstr "Добродошли на %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Вероватан разлог за ово је да нисте направили конфигурациону датотеку. "
"Можете користити %1$sскрипт за инсталацију%2$s да бисте је направили."
@ -10683,20 +10684,20 @@ msgstr "Имена колона"
msgid "Invalid parameter for CSV import: %s"
msgstr "Неисправни параметри за CSV увоз: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Неисправан формат CSV улаза на линији %d."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, fuzzy, php-format
#| msgid "Invalid field count in CSV input on line %d."
msgid "Invalid column count in CSV input on line %d."
@ -11249,13 +11250,13 @@ msgstr ""
msgid "no description"
msgstr "нема описа"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -12702,8 +12703,8 @@ msgstr "Преглед корисника"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Напомена: phpMyAdmin узима привилегије корисника директно из MySQL табела "
"привилегија. Садржај ове табеле може се разликовати од привилегија које "
@ -15696,8 +15697,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -15831,8 +15832,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

View File

@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-03-31 14:25+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Serbian (latin) <https://hosted.weblate.org/projects/"
"phpmyadmin/master/sr%40latin/>\n"
"Language: sr@latin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"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.9-dev\n"
#: changelog.php:36 license.php:28
@ -641,14 +641,14 @@ msgstr "Kompletan INSERT"
#: import.php:163
#, fuzzy, php-format
#| msgid ""
#| "You probably tried to upload too large file. Please refer to "
#| "%sdocumentation%s for ways to workaround this limit."
#| "You probably tried to upload too large file. Please refer to %"
#| "sdocumentation%s for ways to workaround this limit."
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte "
"%sdokumentaciju%s za načine prevazilaženja ovog ograničenja."
"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte %"
"sdokumentaciju%s za načine prevazilaženja ovog ograničenja."
#: import.php:343 import.php:626
msgid "Showing bookmark"
@ -938,8 +938,8 @@ msgid ""
"extended features have been deactivated. %sFind out why%s. "
msgstr ""
"Skladište konfiguracije za phpMyAdmin nije kompletno konfigurisano, neke "
"dodatne mogućnosti su deaktivirane. Da bi ste saznali zašto kliknite %sovde"
"%s."
"dodatne mogućnosti su deaktivirane. Da bi ste saznali zašto kliknite %sovde%"
"s."
#: index.php:542
msgid ""
@ -3332,7 +3332,7 @@ msgstr "Prikazivanje markera"
msgid "Delete bookmark"
msgstr "Obriši relaciju"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@ -3340,19 +3340,19 @@ msgstr ""
"Nema odgovora sa servera (ili priključak lokalnog servera nije ispravno "
"podešen)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "Server ne odgovara."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr ""
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Konekcija za controluser-a, onako kako je definisana u vašoj konfiguraciji, "
@ -3564,11 +3564,11 @@ msgstr "Vaš SQL upit je uspešno izvršen"
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Ovaj pogled ima najmanje ovaj broj redova. Molimo vas pogledajte "
"%sdokumentaciju%s."
"Ovaj pogled ima najmanje ovaj broj redova. Molimo vas pogledajte %"
"sdokumentaciju%s."
#: libraries/DisplayResults.class.php:4492
#, fuzzy, php-format
@ -4532,14 +4532,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -7737,8 +7737,9 @@ msgstr ""
#| "Structure page if any of the required tables for the phpMyAdmin "
#| "configuration storage could not be found"
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"Onemogući podrazumevano upozorenje koje se prikazuje na stranici sa "
"detaljima strukture baze podataka ako bilo koju od neophodnih tabela za "
@ -8366,13 +8367,13 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Ova vrednost se interpretira korišćenjem %1$sstrftime%2$s, tako da možete da "
"koristite stringove za formatiranje vremena. Takođe će se desiti i sledeće "
"transformacije: %3$s. Preostali tekst će ostati kako jeste. Čogledaj %4$sFAQ"
"%5$s za detalje."
"transformacije: %3$s. Preostali tekst će ostati kako jeste. Čogledaj %4$sFAQ%"
"5$s za detalje."
#: libraries/display_export.lib.php:526
msgid "use this for future exports"
@ -8896,8 +8897,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -10060,8 +10061,8 @@ msgstr "Dobrodošli na %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Verovatan razlog za ovo je da niste napravili konfiguracionu datoteku. "
"Možete koristiti %1$sskript za instalaciju%2$s da biste je napravili."
@ -10586,20 +10587,20 @@ msgstr "Imena kolona: "
msgid "Invalid parameter for CSV import: %s"
msgstr "Neispravni parametri za CSV uvoz: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Neispravan format CSV ulaza na liniji %d."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Neispravan broj kolona u CSV ulazu na liniji %d."
@ -11122,14 +11123,14 @@ msgstr ""
msgid "no description"
msgstr "nema opisa"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "Nedostaju phpMyAdmin skladišne tabele"
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@ -12497,8 +12498,8 @@ msgstr "Pregled korisnika"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela "
"privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje "
@ -15390,8 +15391,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -15513,8 +15514,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

View File

@ -3,15 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-12-29 15:37+0200\n"
"Last-Translator: Anders Jonsson <anders.jonsson@norsjovallen.se>\n"
"Language-Team: Swedish <https://hosted.weblate.org/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 2.2-dev\n"
@ -613,8 +613,8 @@ msgstr "kompletta infogningar"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Du försökte ladda upp en fil som är för stor. Se %sdocumentation%s för att "
"gå runt denna begränsning."
@ -919,8 +919,8 @@ msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version "
"%s. Detta kan orsaka oförutsägbara beteenden."
"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version %"
"s. Detta kan orsaka oförutsägbara beteenden."
#: index.php:611
#, php-format
@ -3216,7 +3216,7 @@ msgstr "Uppdatera bokmärke"
msgid "Delete bookmark"
msgstr "Ta bort bokmärke"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@ -3224,19 +3224,19 @@ msgstr ""
"Servern svarar inte (eller den lokala serverns socket är inte korrekt "
"konfigurerad)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "Servern svarar inte."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr "Kontrollera privilegierna för katalogen som innehåller databasen."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Detaljer…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Uppkoppling för kontrollanvändare enligt din konfiguration misslyckades."
@ -3436,8 +3436,8 @@ msgstr "Din SQL-fråga utfördes korrekt."
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr "Denna vy har åtminstone detta antal rader. Se %sdokumentationen%s."
#: libraries/DisplayResults.class.php:4492
@ -4352,16 +4352,16 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"Ett litet flyttal. Tillåtna värden är: 3.402823466E+38 till-1.175494351E-38, "
"0, och 1.175494351E-38 till 3.402823466E+38"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"Ett dubbel-precision flyttal. Tillåtna värden är: 1.7976931348623157E+308 "
@ -5291,9 +5291,9 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
"Om du känner att det är nödvändigt, använd extra skyddsinställningar - "
"%shost authentication%s-inställningar och %strusted proxies list%s. Dock "
"kan IP-baserat skydd inte vara tillförlitligt om din IP tillhör en ISP som "
"Om du känner att det är nödvändigt, använd extra skyddsinställningar - %"
"shost authentication%s-inställningar och %strusted proxies list%s. Dock kan "
"IP-baserat skydd inte vara tillförlitligt om din IP tillhör en ISP som "
"tusentals användare, inklusive dig, är anslutna till."
#: libraries/config/ServerConfigChecks.class.php:431
@ -7447,8 +7447,9 @@ msgstr "Suhosin-varning"
#| "Disable the default warning that is displayed on the Structure page if "
#| "column names in a table are reserved MySQL words."
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"Inaktivera standardvarningen som visas på sidan Struktur om kolumnnamn i en "
"tabell är reserverade MySQL-ord."
@ -8077,8 +8078,8 @@ msgstr ", @TABLE@ kommer bli tabellnamnet"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Detta värde tolkas med %1$sstrftime%2$s, så du kan använda strängar med "
"tidsformatering. Dessutom kommer följande omvandlingar att ske: %3$s. Övrig "
@ -8632,11 +8633,11 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page"
"%s."
"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page%"
"s."
#: libraries/engines/pbxt.lib.php:138
msgid "Related Links"
@ -9768,11 +9769,11 @@ msgstr "Välkommen till %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda "
"%1$suppsättningsskript%2$s för att skapa denna."
"Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda %1"
"$suppsättningsskript%2$s för att skapa denna."
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
msgid ""
@ -10287,7 +10288,7 @@ msgstr "Kolumnnamn: "
msgid "Invalid parameter for CSV import: %s"
msgstr "Ogiltig parameter för CSV-import: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@ -10296,13 +10297,13 @@ msgstr ""
"Ogiltig kolumn (%s)! Se till att kolumnernas namn är rättstavade, åtskilda "
"med kommatecken och inte omges av citattecken."
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Ogiltigt format i CSV-indata på rad %d."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Ogiltigt antal kolumner i CSV-indata på rad %d."
@ -10834,14 +10835,14 @@ msgstr ""
msgid "no description"
msgstr "ingen beskrivning"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "Saknade phpMyAdmin konfiguration lagringstabeller"
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@ -12190,8 +12191,8 @@ msgstr "Användaröversikt"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Anm: phpMyAdmin hämtar användarnas behörigheter direkt från MySQL's "
"behörighetstabeller. Innehållet i dessa tabeller kan skilja sig från de "
@ -15081,8 +15082,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
"Det nuvarande förhållandet mellan ledigt frågecacheminne den totala fråge "
"cache-storlek är %s%%. Det bör vara över 80%%"
@ -15233,8 +15234,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
"%s%% av alla sorteringar orsakar tillfälliga tabeller, detta värde bör vara "
"lägre än 10%%."
@ -17318,8 +17319,8 @@ msgstr "concurrent_insert är satt till 0"
#~ "The result of this query can't be used for a chart. See [doc@faq6-29]FAQ "
#~ "6.29[/doc]"
#~ msgstr ""
#~ "Resultatet av denna fråga kan inte användas för ett diagram. Se "
#~ "[doc@faq6-29]FAQ 6.29[/doc]"
#~ "Resultatet av denna fråga kan inte användas för ett diagram. Se [doc@faq6-"
#~ "29]FAQ 6.29[/doc]"
#~ msgid "Title"
#~ msgstr "Titel"

View File

@ -6,15 +6,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-12-29 10:51+0200\n"
"Last-Translator: Rifthy Ahmed <rifthy456@gmail.com>\n"
"Language-Team: Tamil <https://hosted.weblate.org/projects/phpmyadmin/master/"
"ta/>\n"
"Language: ta\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ta\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 2.2-dev\n"
@ -607,8 +607,8 @@ msgstr "முழுமையடையா மதிப்புருபுக
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"நீங்கள் பதிவேற்ற முயன்ற கோப்பு மிகப்பெரியதாக இருக்கலாம். இவ்வரம்பின் மாற்ற தயவுசெய்து %s "
"ஆவணஉரையை %s பார்வையிடவும்."
@ -917,8 +917,8 @@ msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
"வழங்கி SUSHOSIN உடன் இயங்குகிறது. நிகழக்கூடிய பிழைமுறைகளுக்கு தயவுசெய்து "
"%sஆவணச்சான்றை%s காண்க."
"வழங்கி SUSHOSIN உடன் இயங்குகிறது. நிகழக்கூடிய பிழைமுறைகளுக்கு தயவுசெய்து %"
"sஆவணச்சான்றை%s காண்க."
#: js/messages.php:29 libraries/import.lib.php:125 sql.php:143
msgid "\"DROP DATABASE\" statements are disabled."
@ -3082,26 +3082,26 @@ msgstr "புத்தகக்குறி புதுப்பிக்க"
msgid "Delete bookmark"
msgstr "புத்தகக்குறியை அழிக்க"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
"வழங்கி பதிலளிக்கவில்லை(அல்லது உள்வழங்கியின் இணைவுக்கொள்குழி சரியாக அமைக்கப்படவில்லை)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "வழங்கி பதிலளிக்கவில்லை."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr "தரவுத்தளத்தை கொண்டுள்ள அடைவின் உரிமைகளை சரிபார்க்க."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "தகவல்கள்…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr "அமைப்பாக்கத்தில் உள்ளவாறு அமைத்த கட்டுபாட்டுபயனருக்கான இணைப்பு தோல்வியடைந்தது."
@ -3298,8 +3298,8 @@ msgstr "உங்கள் SQL வினவல் வெற்றிகரமா
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"இவ்விவரபார்வை குறைந்தளவு இத்தனை நிரைவரிசைகள் கொண்டிருக்கலாம். %sஆவணச்சான்றை%s காண்க."
@ -4183,14 +4183,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -6987,8 +6987,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -7570,8 +7571,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -8053,8 +8054,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -9151,8 +9152,8 @@ msgstr "%sக்கு வருக"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"நீங்கள் அமைப்பாக்க கோப்பை உருவாக்கவில்லை. அதை உருவாக்க நீங்கள் %1$sநிரல்கோவையை%2$s "
"பயன்படுத்த வேண்டும்."
@ -9638,20 +9639,20 @@ msgstr ""
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -10095,13 +10096,13 @@ msgstr ""
msgid "no description"
msgstr ""
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -11403,8 +11404,8 @@ msgstr "பயனர்கள் கண்ணோட்டம்"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
#: libraries/server_privileges.lib.php:4060
@ -13284,8 +13285,8 @@ msgid ""
"Your preferences will be saved for current session only. Storing them "
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
"உங்கள் முன்னுரிமைகள் இந்த அமர்வுக்காக மட்டும் சேமிக்கப்படும். அவற்றை நிலையாக சேமிப்க்க "
"%sphpMyAdmin அமைப்பாக்க நினைவகம்%s தேவை."
"உங்கள் முன்னுரிமைகள் இந்த அமர்வுக்காக மட்டும் சேமிக்கப்படும். அவற்றை நிலையாக சேமிப்க்க %"
"sphpMyAdmin அமைப்பாக்க நினைவகம்%s தேவை."
#: libraries/user_preferences.lib.php:129
msgid "Could not save configuration"
@ -13360,8 +13361,8 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
"நீங்கள் config.inc.phpஐ மாற்றுவதன் மூலம் மேலும் அதிக அமைவுகளை அமைக்கலாம், எகா. "
"%sநிறுவல்கோவை%s மூலம்."
"நீங்கள் config.inc.phpஐ மாற்றுவதன் மூலம் மேலும் அதிக அமைவுகளை அமைக்கலாம், எகா. %"
"sநிறுவல்கோவை%s மூலம்."
#: prefs_manage.php:315
msgid "Save to browser's storage"
@ -13989,8 +13990,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -14108,8 +14109,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

View File

@ -6,15 +6,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-02-27 10:56+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Telugu <https://hosted.weblate.org/projects/phpmyadmin/master/"
"te/>\n"
"Language: te\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: te\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 1.9-dev\n"
@ -632,8 +632,8 @@ msgstr ""
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
#: import.php:343 import.php:626
@ -3287,25 +3287,25 @@ msgstr "శోధించు"
msgid "Delete bookmark"
msgstr "శోధించు"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr ""
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "వివరాలు…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3529,8 +3529,8 @@ msgstr "మీ SQL క్వెరీ విజయవంతంగా నిర
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
#: libraries/DisplayResults.class.php:4492
@ -4489,14 +4489,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -7403,8 +7403,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -8041,8 +8042,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -8541,8 +8542,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -9715,8 +9716,8 @@ msgstr "%sకి స్వాగతం"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
@ -10238,20 +10239,20 @@ msgstr "వ్యాఖ్యలు"
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -10714,13 +10715,13 @@ msgstr ""
msgid "no description"
msgstr "వివరణ లేదు"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -12108,8 +12109,8 @@ msgstr "అవలోకనం"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
#: libraries/server_privileges.lib.php:4060
@ -14906,8 +14907,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -15036,8 +15037,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

118
po/th.po
View File

@ -3,11 +3,11 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"PO-Revision-Date: 2014-12-28 19:39+0200\n"
"Last-Translator: Somthanat Wongsa <somthanat@gmail.com>\n"
"Language-Team: Thai <https://hosted.weblate.org/projects/phpmyadmin/master/"
"th/>\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2015-02-08 05:01+0200\n"
"Last-Translator: mrnonz <nontawat39@gmail.com>\n"
"Language-Team: Thai "
"<https://hosted.weblate.org/projects/phpmyadmin/master/th/>\n"
"Language: th\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -21,7 +21,8 @@ msgid ""
"The %s file is not available on this system, please visit www.phpmyadmin.net "
"for more information."
msgstr ""
"ไฟล์ %s ไม่สามารถใช้งานได้ในระบบนี้ สำหรับข้อมูลเพิ่มเติมกรุณาเยี่ยมชม www.phpmyadmin.net"
"แฟ้ม %s ไม่สามารถใช้งานได้ในระบบนี้ สามารถศึกษาข้อมูลเพิ่มเติมได้ที่ "
"www.phpmyadmin.net"
#: db_central_columns.php:85
msgid "The central list of columns for the current database is empty."
@ -248,19 +249,20 @@ msgid "Database %1$s has been renamed to %2$s."
msgstr "ฐานข้อมูล %1$s ได้ถูกเปลี่ยนชื่อเป็น %2$s."
#: db_operations.php:138
#, fuzzy, php-format
#, php-format
#| msgid "Database %1$s has been copied to %2$s."
msgid "Database %1$s has been copied to %2$s."
msgstr "คัดลอกฐานข้อมูล %1$s ไปเก็บในชื่อ %2$s เรียบร้อยแล้ว"
msgstr "ทำสำเนาฐานข้อมูล %1$s ในชื่อ %2$s เรียบร้อยแล้ว"
#: db_operations.php:259
#, fuzzy, php-format
#, php-format
#| msgid ""
#| "The phpMyAdmin configuration storage has been deactivated. To find out "
#| "why click %shere%s."
msgid ""
"The phpMyAdmin configuration storage has been deactivated. %sFind out why%s."
msgstr "การจัดเก็บการตั้งค่าของ phpMyAdmin ได้ถูกระงับเอาไว้ คลิก %shere%s เพื่อหาสาเหตุ"
msgstr ""
"การจัดเก็บการตั้งค่าของ phpMyAdmin ได้ถูกระงับเอาไว้ %sรายละเอียดเพิ่มเติม%s"
#: db_printview.php:48 db_tracking.php:124 db_tracking.php:264
#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:770
@ -294,24 +296,21 @@ msgstr "ใช้อยู่"
#: db_printview.php:120 libraries/plugins/export/ExportSql.class.php:1144
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:948
#, fuzzy
#| msgid "Creation"
msgid "Creation:"
msgstr "สร้างเมื่อ"
msgstr "สร้าง:"
#: db_printview.php:127 libraries/plugins/export/ExportSql.class.php:1157
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:953
#, fuzzy
#| msgid "Last update"
msgid "Last update:"
msgstr "ปรับปรุงครั้งสุดท้ายเมื่อ"
msgstr "ปรับปรุงครั้งสุดท้าย:"
#: db_printview.php:134 libraries/plugins/export/ExportSql.class.php:1170
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:958
#, fuzzy
#| msgid "Last check"
msgid "Last check:"
msgstr "ตรวจสอบครั้งสุดท้ายเมื่อ"
msgstr "ตรวจสอบครั้งสุดท้าย:"
#: db_printview.php:146 libraries/structure.lib.php:169
#, php-format
@ -320,10 +319,9 @@ msgid_plural "%s tables"
msgstr[0] "%s ตาราง"
#: db_qbe.php:103
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to choose at least one column to display!"
msgstr "ต้องเลือกให้แสดงอย่างน้อยหนึ่งคอลัมน์"
msgstr "จำเป็นต้องเลือกแสดงอย่างน้อยหนึ่งคอลัมน์!"
#: db_qbe.php:124
#, php-format
@ -434,21 +432,22 @@ msgstr "Log ของฐานข้อมูล"
msgid ""
"An error has been detected and an error report has been automatically "
"submitted based on your settings."
msgstr ""
msgstr "ตรวจพบข้อผิดพลาด และรายงานตามที่ได้ตั้งค่าไว้เรียบร้อยแล้ว"
#: error_report.php:72
msgid "Thank you for submitting this report."
msgstr ""
msgstr "ขอบคุณสำหรับการรายงานครั้งนี้"
#: error_report.php:76
msgid ""
"An error has been detected and an error report has been generated but failed "
"to be sent."
msgstr ""
"ตรวจพบข้อผิดพลาด และรายงานได้ถูกสร้างขึ้นแล้ว แต่ไม่สามารถส่งได้ในขณะนี้"
#: error_report.php:81
msgid "If you experience any problems please submit a bug report manually."
msgstr ""
msgstr "หากคุณพบปัญหาในการใช้งานบางอย่าง กรุณารายงานข้อผิดพลาด้วยตัวคุณเอง"
#: error_report.php:85
msgid "You may want to refresh the page."
@ -464,7 +463,7 @@ msgstr "พารามิเตอร์ไม่ถูกต้อง!"
#: file_echo.php:22
msgid "Invalid export type"
msgstr "ประเภทที่ส่งออกไม่ถูกต้อง!"
msgstr "ประเภทที่ส่งออกไม่ถูกต้อง"
#: gis_data_editor.php:118
#, php-format
@ -625,8 +624,8 @@ msgstr "คำสั่ง INSERT เต็มรูปแบบ"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"คุณพยายามที่จะอัพโหลดไฟล์ที่มีขนาดใหญ่เกินไป กรุณาดูที่ %sdocumentation%s เอกสารช่วยเหลือ "
"เพื่อแก้ไขปัญหาดังกล่าวนี้"
@ -3265,27 +3264,27 @@ msgstr "แสดงบุ๊คมาร์ค"
msgid "Delete bookmark"
msgstr "ค้นหา"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "เซิร์ฟเวอร์ดังกล่าวไม่ตอบสนอง"
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr ""
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3506,8 +3505,8 @@ msgstr "ทำคำค้นเสร็จเรียบร้อยแล้
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr "การแสดงผลนี้ จะแสดงเพียงจำนวนข้อมูลนี้เท่านั้น ดูข้อมูลเพิ่มเติมได้ที่ %sdocumentation%s"
#: libraries/DisplayResults.class.php:4492
@ -4473,14 +4472,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -7506,8 +7505,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -8172,8 +8172,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -8679,8 +8679,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -9850,8 +9850,8 @@ msgstr "%s ยินดีต้อนรับ"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"คุณคงไม่ได้สร้างแฟ้มการกำหนดค่า คุณอาจต้องการใช้ %1$ssetup script%2$s "
"เพื่อสร้างอย่างใดอย่างหนึ่ง"
@ -10406,20 +10406,20 @@ msgstr "ชื่อคอลัมน์"
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -10900,13 +10900,13 @@ msgstr ""
msgid "no description"
msgstr "ไม่มีรายละเอียด"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -12333,8 +12333,8 @@ msgstr "ข้อมูลทั่วไปของผู้ใช้"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
#: libraries/server_privileges.lib.php:4060
@ -15174,8 +15174,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -15307,8 +15307,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218
@ -16003,8 +16003,8 @@ msgid ""
"perfectly adequate for your system if you don't have much InnoDB tables or "
"other services running on the same machine."
msgstr ""
"คุณกำลังใช้ %s%% ของหน่วยความจำของคุณสำหรับการบัฟเฟอร์ InnoDB ถ้าคุณกำลังกำหนดน้อยกว่า "
"60%% อย่างไรก็ตาม ที่นี้อาจไม่สมบูรณ์เพียงพอสำหรับระบบของคุณ ถ้าคุณไม่มีตาราง InnoDB "
"คุณกำลังใช้ %s%% ของหน่วยความจำของคุณสำหรับการบัฟเฟอร์ InnoDB ถ้าคุณกำลังกำหนดน้อยกว่า 60%"
"% อย่างไรก็ตาม ที่นี้อาจไม่สมบูรณ์เพียงพอสำหรับระบบของคุณ ถ้าคุณไม่มีตาราง InnoDB "
"มากหรือบริการอื่นๆ ที่ทำงานบนเครื่องเดียวกัน"
#: libraries/advisory_rules.txt:459
@ -16769,8 +16769,8 @@ msgstr "concurrent_insert ถูกตั้งค่าไว้ที่ 0"
#~ "The additional features for working with linked tables have been "
#~ "deactivated. To find out why click %shere%s."
#~ msgstr ""
#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere"
#~ "%s"
#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere%"
#~ "s"
#~ msgid "No tables"
#~ msgstr "ไม่มีตาราง"

View File

@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2013-05-07 17:12+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Turkmen <http://hosted.weblate.org/projects/phpmyadmin/master/"
"tk/>\n"
"Language: tk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: tk\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 1.6-dev\n"
@ -599,8 +599,8 @@ msgstr ""
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
#: import.php:343 import.php:626
@ -2977,25 +2977,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr ""
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr ""
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3196,8 +3196,8 @@ msgstr ""
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
#: libraries/DisplayResults.class.php:4492
@ -4087,14 +4087,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -6880,8 +6880,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -7459,8 +7460,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -7946,8 +7947,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -9046,8 +9047,8 @@ msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
@ -9528,20 +9529,20 @@ msgstr ""
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -9986,13 +9987,13 @@ msgstr ""
msgid "no description"
msgstr ""
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -11292,8 +11293,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
#: libraries/server_privileges.lib.php:4060
@ -13869,8 +13870,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -13988,8 +13989,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

132
po/tr.po
View File

@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"PO-Revision-Date: 2015-02-04 20:01+0200\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2015-02-08 19:53+0200\n"
"Last-Translator: Burak Yavuz <hitowerdigit@hotmail.com>\n"
"Language-Team: Turkish "
"<https://hosted.weblate.org/projects/phpmyadmin/master/tr/>\n"
@ -602,8 +602,8 @@ msgstr "Tamamlanmamış parametreler"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Muhtemelen çok büyük dosya göndermeyi denediniz. Lütfen bu sınır için çözüm "
"yolu olarak %sbelgeden%s yararlanın."
@ -842,19 +842,14 @@ msgstr ""
"olarak bölemez ve bu beklenmedik sonuçlar doğurabilir."
#: index.php:488
#| msgid ""
#| "Your PHP parameter [a@http://php.net/manual/en/session.configuration."
#| "php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower "
#| "than cookie validity configured in phpMyAdmin, because of this, your "
#| "login will expire sooner than configured in phpMyAdmin."
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than "
"cookie validity configured in phpMyAdmin, because of this, your login might "
"expire sooner than configured in phpMyAdmin."
msgstr ""
"phpMyAdmin içinde yapılandırılmış tanımlama bilgisi geçerliliği, "
"[a@http://php.net/manual/tr/session.configuration.php#ini.session.gc-"
"phpMyAdmin içinde yapılandırılmış tanımlama bilgisi geçerliliği, [a@http://"
"php.net/manual/tr/session.configuration.php#ini.session.gc-"
"maxlifetime@_blank]session.gc_maxlifetime[/a] PHP parametrenizden düşük, "
"bundan dolayı phpMyAdmin içinde yapılandırılmadıkça oturum açmanızın süresi "
"dolabilir."
@ -1352,8 +1347,8 @@ msgid ""
"depending on your system."
msgstr ""
"slow_query_log etkinleştirildi ama sunucu sadece %d saniyeden daha uzun "
"süren sorguları günlükler. Bu long_query_time'ın, sisteminize bağlı olarak "
"0-2 saniyeye ayarlanması tavsiye edilir."
"süren sorguları günlükler. Bu long_query_time'ın, sisteminize bağlı olarak 0-"
"2 saniyeye ayarlanması tavsiye edilir."
#: js/messages.php:162
#, php-format
@ -2376,8 +2371,8 @@ msgid ""
"A newer version of phpMyAdmin is available and you should consider "
"upgrading. The newest version is %s, released on %s."
msgstr ""
"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm "
"%s, %s tarihinde yayınlandı."
"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm %"
"s, %s tarihinde yayınlandı."
#. l10n: Latest available phpMyAdmin version
#: js/messages.php:493
@ -3097,7 +3092,7 @@ msgstr "Yer imini güncelle"
msgid "Delete bookmark"
msgstr "Yer imini sil"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@ -3105,19 +3100,19 @@ msgstr ""
"Sunucu yanıt vermiyor (ya da yerel MySQL sunucusunun soketi doğru olarak "
"yapılandırılmadı)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "Sunucu yanıt vermiyor."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr "Lütfen veritabanını içeren dizinin yetkilerini kontrol edin."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Ayrıntılar…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Yapılandırma dosyanız içinde tanımlanmış denetim kullanıcıları için bağlantı "
@ -3316,8 +3311,8 @@ msgstr "SQL sorgunuz başarılı olarak çalıştırıldı."
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Bu görünüm en az bu satır sayısı kadar olur. Lütfen %sbelgeden%s yararlanın."
@ -4224,20 +4219,20 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"Küçük kayan noktalı bir sayı, izin verilebilir değerler -3.402823466E+38'den "
"-1.175494351E-38'e, 0 ve 1.175494351E-38'den 3.402823466E+38'e kadardır"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"Çift duyarlıklı kayan noktalı bir sayı, izin verilebilir değerler "
"-1.7976931348623157E+308'den -2.2250738585072014E-308'e, 0 ve "
"Çift duyarlıklı kayan noktalı bir sayı, izin verilebilir değerler -"
"1.7976931348623157E+308'den -2.2250738585072014E-308'e, 0 ve "
"2.2250738585072014E-308'den 1.7976931348623157E+308'e kadardır"
#: libraries/Types.class.php:336
@ -4547,7 +4542,6 @@ msgid "Create PHP Code"
msgstr "PHP Kodu oluştur"
#: libraries/Util.class.php:1275
#| msgid "Edit index"
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "Satır içi düzenle"
@ -5152,8 +5146,8 @@ msgid ""
"If using [kbd]cookie[/kbd] authentication and %sLogin cookie store%s is not "
"0, %sLogin cookie validity%s must be set to a value less or equal to it."
msgstr ""
"Eğer [kbd]tanımlama bilgisi[/kbd] kimlik doğrulaması kullanılıyorsa ve "
"%sOturum açma tanımlama bilgisi depolaması%s değeri 0 değilse, %sOturum açma "
"Eğer [kbd]tanımlama bilgisi[/kbd] kimlik doğrulaması kullanılıyorsa ve %"
"sOturum açma tanımlama bilgisi depolaması%s değeri 0 değilse, %sOturum açma "
"tanımlama bilgisi geçerliliği%s eşit ya da daha az değere ayarlanmak "
"zorundadır."
@ -5166,8 +5160,8 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
"Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarlarını kullanın "
"- %sanamakine kimlik doğrulaması%s ayarları ve %sgüvenilir proksiler listesi"
"%s. Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce "
"- %sanamakine kimlik doğrulaması%s ayarları ve %sgüvenilir proksiler listesi%"
"s. Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce "
"kullanıcıya sahip ve bağlı olduğunuz bir ISS'e ait ise güvenilir olmayabilir."
#: libraries/config/ServerConfigChecks.class.php:431
@ -5182,8 +5176,8 @@ msgstr ""
"[kbd]Yapılandırma[/kbd] kimlik doğrulaması türünü ayarladınız ve buna "
"otomatik oturum açma için kullanıcı adı ve parola dahildir, canlı "
"anamakineler için istenmeyen bir seçenektir. phpMyAdmin URL'nizi bilen veya "
"tahmin eden herhangi biri doğrudan phpMyAdmin panelinize erişebilir. "
"%sKimlik doğrulama türünü%s [kbd]tanımlama bilgisi[/kbd] ya da [kbd]http[/"
"tahmin eden herhangi biri doğrudan phpMyAdmin panelinize erişebilir. %"
"sKimlik doğrulama türünü%s [kbd]tanımlama bilgisi[/kbd] ya da [kbd]http[/"
"kbd] olarak ayarlayın."
#: libraries/config/ServerConfigChecks.class.php:437
@ -7316,17 +7310,17 @@ msgstr "Suhosin uyarısı"
#: libraries/config/messages.inc.php:757
#| msgid ""
#| "Disable the default warning that is displayed on the Structure page if "
#| "column names in a table are reserved MySQL words."
#| "Disable the default warning that is displayed on the main page if session."
#| "gc_maxlifetime is less than `LoginCookieValidity`."
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"Eğer session.gc_maxlifetime değeri `LoginCookieValidity` değerinden az ise, "
"ana sayfada görüntülenen varsayılan uyarıyı etkisizleştir."
"Eğer PHP ayarı session.gc_maxlifetime değeri `LoginCookieValidity` "
"değerinden az ise, ana sayfada görüntülenen varsayılan uyarıyı etkisizleştir."
#: libraries/config/messages.inc.php:758
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "Oturum açma tanımlama bilgisi geçerlilik uyarısı"
@ -7928,8 +7922,8 @@ msgstr ", @TABLE@ tablo adı olacaktır"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Bu değer %1$sstrftime%2$s kullanılarak yorumlanır, bu yüzden zaman "
"biçimlendirme dizgisi kullanabilirsiniz. İlave olarak aşağıdaki dönüşümler "
@ -8478,8 +8472,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
"%sPrimeBase XT Ana Sayfasında%s PBXT hakkında belge ve daha fazla bilgi "
"bulunabilir."
@ -9633,8 +9627,8 @@ msgstr "%s'e Hoş Geldiniz"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Muhtemelen bunun sebebi yapılandırma dosyasını oluşturmadığınız içindir. Bir "
"tane oluşturmak için %1$skur programcığı%2$s kullanmak isteyebilirsiniz."
@ -10152,7 +10146,7 @@ msgstr "Sütun adları: "
msgid "Invalid parameter for CSV import: %s"
msgstr "CSV içe aktarma için geçersiz parametre: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@ -10161,13 +10155,13 @@ msgstr ""
"Geçersiz sütun (%s) belirtilmiş! Sütun adlarının doğru olarak hecelenmesini, "
"virgüllerle ayrılmasını ve tırnaklarla kapanmamasını sağlayın."
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "%d. satırda CSV girdisinin geçersiz biçimi."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "CSV girdisinde %d. satırda geçersiz sütun sayısı."
@ -10501,7 +10495,6 @@ msgstr ""
"başlıktır."
#: libraries/plugins/transformations/output/Text_Plain_Json.class.php:38
#| msgid "Formats text as SQL query with syntax highlighting."
msgid "Formats text as JSON with syntax highlighting."
msgstr "Sözdizimi vurgulamalı JSON gibi metni biçimlendirir."
@ -10664,14 +10657,14 @@ msgstr ""
msgid "no description"
msgstr "Açıklama yok"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
"Şu anki veritabanında phpMyAdmin yapılandırma depolaması %soluşturun%s."
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr "Eksik phpMyAdmin yapılandırma depolama tablolarını %soluştur%s."
@ -12021,8 +12014,8 @@ msgstr "Kullanıcılara genel bakış"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Not: phpMyAdmin kullanıcıların yetkilerini doğrudan MySQL'in yetki "
"tablolarından alır. Bu tabloların içerikleri, eğer elle değiştirildiyse "
@ -13388,8 +13381,8 @@ msgid ""
"May be approximate. Click on the number to get the exact count. See "
"[doc@faq3-11]FAQ 3.11[/doc]."
msgstr ""
"Yaklaşık olabilir. Tam sayıyı almak için sayının üzerine tıklayın. "
"[doc@faq3-11]SSS 3.11[/doc]'e bakın."
"Yaklaşık olabilir. Tam sayıyı almak için sayının üzerine tıklayın. [doc@faq3-"
"11]SSS 3.11[/doc]'e bakın."
#: libraries/structure.lib.php:862 libraries/structure.lib.php:2353
#: libraries/tbl_printview.lib.php:324
@ -13658,7 +13651,6 @@ msgid "Storage Engine:"
msgstr "Depolama Motoru:"
#: libraries/tbl_columns_definition_form.lib.php:81
#| msgid "Connections"
msgid "Connection:"
msgstr "Bağlantı:"
@ -14170,8 +14162,8 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
"Config.inc.php dosyasını değiştirerek daha fazla ayar yapabilirsiniz, örn. "
"%sKur programcığı%s kullanarak."
"Config.inc.php dosyasını değiştirerek daha fazla ayar yapabilirsiniz, örn. %"
"sKur programcığı%s kullanarak."
#: prefs_manage.php:315
msgid "Save to browser's storage"
@ -14859,8 +14851,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
"Boş sorgu önbellek belleğinin, toplam sorgu önbelleği boyutuna şu anki oranı "
"%%%s. Bu %%80'in üzerinde olmalıdır"
@ -15011,8 +15003,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
"Tüm sıralamaların %%%s'i geçici tablolara sebep olur, bu değer %%10'dan "
"düşük olmalıdır."
@ -16809,12 +16801,12 @@ msgstr "concurrent_insert 0'a ayarlı"
#~ "Eğer D işlenirse, varsayılan 0'dır. Eğer M işlenirse, varsayılan 10'dur."
#~ msgid ""
#~ "A small (single-precision) floating-point number. Allowable values are "
#~ "-3.402823466E+38 to -1.175494351E-38, 0, and 1.175494351E-38 to "
#~ "A small (single-precision) floating-point number. Allowable values are -"
#~ "3.402823466E+38 to -1.175494351E-38, 0, and 1.175494351E-38 to "
#~ "3.402823466E+38."
#~ msgstr ""
#~ "Küçük (tek duyarlıklı) kayan noktalı sayı. İzin verilebilir değerler "
#~ "-3.402823466E+38'den -1.175494351E-38'e, 0 ve 1.175494351E-38'den "
#~ "Küçük (tek duyarlıklı) kayan noktalı sayı. İzin verilebilir değerler -"
#~ "3.402823466E+38'den -1.175494351E-38'e, 0 ve 1.175494351E-38'den "
#~ "3.402823466E+38'e."
#~ msgid ""

View File

@ -3,15 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-11-05 10:35+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Tatar <https://hosted.weblate.org/projects/phpmyadmin/master/"
"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 2.0-dev\n"
@ -645,8 +645,8 @@ msgstr "Tulayım östise"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
#: import.php:343 import.php:626
@ -3407,7 +3407,7 @@ msgstr "Bitbilge kürsätü"
msgid "Delete bookmark"
msgstr "Ezläw"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@ -3415,21 +3415,21 @@ msgid ""
"configured)."
msgstr "(yä cirle MySQL-server soketı döres köylänmägän ide)"
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Bu server endäşmi"
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr ""
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3664,8 +3664,8 @@ msgstr "SQL-sorawıñ uñışlı eşkärtelde"
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
#: libraries/DisplayResults.class.php:4492
@ -4629,14 +4629,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -7645,8 +7645,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -8313,8 +8314,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -8843,8 +8844,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -10026,8 +10027,8 @@ msgstr "%s siña İsäñme di"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
@ -10587,20 +10588,20 @@ msgstr "Alan iseme"
msgid "Invalid parameter for CSV import: %s"
msgstr "CSV yökläweneñ yaraqsız köyläneşe: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -11128,13 +11129,13 @@ msgstr ""
msgid "no description"
msgstr "Açıqlamasız"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -12565,8 +12566,8 @@ msgstr "Qullanuçılar tezmäse"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Beläse: MySQL-serverneñ eçke tüşämä eçennän alınğan xoquqlar bu. Server "
"qullana torğan xoquqlar qul aşa üzgärtelgän bulsa, bu tüşämä eçtälege "
@ -15439,8 +15440,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -15572,8 +15573,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218
@ -16534,8 +16535,8 @@ msgstr ""
#~ "installed the necessary PHP extensions as described in the %sdocumentation"
#~ "%s."
#~ msgstr ""
#~ "SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında "
#~ "%squllanmada%s uqıp bula."
#~ "SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında %"
#~ "squllanmada%s uqıp bula."
#~ msgid "Query took %01.4f sec"
#~ msgstr "Soraw eşkärtü %01.4f sek aldı"

View File

@ -6,15 +6,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2013-11-25 15:29+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Uighur <http://hosted.weblate.org/projects/phpmyadmin/master/"
"ug/>\n"
"Language: ug\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ug\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 1.9-dev\n"
@ -269,8 +269,8 @@ msgstr "ساندان %s غا كۆچۈرۈلدى %s"
msgid ""
"The phpMyAdmin configuration storage has been deactivated. %sFind out why%s."
msgstr ""
"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن "
"%sبۇ يەرنى كۆرۈڭ%s."
"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %"
"sبۇ يەرنى كۆرۈڭ%s."
#: db_printview.php:48 db_tracking.php:124 db_tracking.php:264
#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:770
@ -634,11 +634,11 @@ msgstr ""
#: import.php:163
#, fuzzy, php-format
#| msgid ""
#| "You probably tried to upload too large file. Please refer to "
#| "%sdocumentation%s for ways to workaround this limit."
#| "You probably tried to upload too large file. Please refer to %"
#| "sdocumentation%s for ways to workaround this limit."
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"سىز يوللىماقچى بولغان ھۆججەت بەك چوڭكەن، %sياردەم%s ھۆججىتىدىن ھەل قىلىش "
"چارىسىنى كۆرۈڭ."
@ -909,8 +909,8 @@ msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. %sFind out why%s. "
msgstr ""
"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن "
"%sبۇ يەرنى كۆرۈڭ%s."
"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %"
"sبۇ يەرنى كۆرۈڭ%s."
#: index.php:542
msgid ""
@ -3324,7 +3324,7 @@ msgstr "خەتكۈچنى كۆرسىتىش"
msgid "Delete bookmark"
msgstr "ئىزدەش"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@ -3332,21 +3332,21 @@ msgid ""
"configured)."
msgstr "(يەرلىك MySQL مۇلازىمىتېرى توغرا تەڭشەلمىگەن)"
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "مۇلازىمىتېردا ئىنكاس يوق"
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "تەپسىلاتلار…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr "تەڭشەك ھۆججىتى ئىچىدىكى ئىشلەنكۈچى ئۇلۈنما كونتىرولى مەغلۇب بولدى."
@ -3572,8 +3572,8 @@ msgstr "SQL بۇيرىقى غەلبىلىك بىجىرىلدى"
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr "بۇ كۆرسەتمە كامىدا ئىگە بولغان سەپ، %sھۆججەت%s."
#: libraries/DisplayResults.class.php:4492
@ -4520,14 +4520,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -7448,8 +7448,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -8110,8 +8111,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -8629,8 +8630,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -9790,8 +9791,8 @@ msgstr "%s خۇش كەلدىڭىز"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
@ -10338,20 +10339,20 @@ msgstr "خەت ئايرىش بەلگىسى"
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -10818,13 +10819,13 @@ msgstr ""
msgid "no description"
msgstr ""
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -12217,8 +12218,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
#: libraries/server_privileges.lib.php:4060
@ -15008,8 +15009,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -15140,8 +15141,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

123
po/uk.po
View File

@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2015-01-02 17:07+0200\n"
"Last-Translator: Сергій Педько <nitrotoll@gmail.com>\n"
"Language-Team: Ukrainian <https://hosted.weblate.org/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"
"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"
"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 2.2-dev\n"
#: changelog.php:36 license.php:28
@ -604,8 +604,8 @@ msgstr "Неповні параметри"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Імовірно ви намагаєтесь завантажити занадто великий файл. Будь ласка, "
"зверніться до %sдокументації%s для знаходження шляхів вирішення цієї "
@ -650,8 +650,8 @@ msgid ""
"[doc@faq1-16]FAQ 1.16[/doc]."
msgstr ""
"Немає даних для імпорту. Не було вказано назву файлу або його розмір "
"перевищив допустимий максимум для вашої PHP конфігурації. Дивіться "
"[doc@faq1-16]FAQ 1.16[/doc]."
"перевищив допустимий максимум для вашої PHP конфігурації. Дивіться [doc@faq1-"
"16]FAQ 1.16[/doc]."
#: import.php:554
msgid ""
@ -1349,8 +1349,8 @@ msgid ""
"than %d seconds. It is advisable to set this long_query_time 0-2 seconds, "
"depending on your system."
msgstr ""
"slow_query_log ввімкнений, але сервер журналює тільки запити що є довші за "
"%d секунди. Рекомендовано встановити long_query_time 0-2 секунди, в "
"slow_query_log ввімкнений, але сервер журналює тільки запити що є довші за %"
"d секунди. Рекомендовано встановити long_query_time 0-2 секунди, в "
"залежності від вашої системи."
#: js/messages.php:162
@ -3096,7 +3096,7 @@ msgstr "Оновити закладку"
msgid "Delete bookmark"
msgstr "Видалити закладку"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@ -3104,19 +3104,19 @@ msgstr ""
"Сервер не відповідає (або локальний сокет сервера MySQL невірно "
"налаштований)."
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "Сервер не відповідає."
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr "Будь ласка, перевірте привілеї каталогу містить базу даних."
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Деталі…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr "Помилка при вказуванні з'єднання для controluser в конфігурації."
@ -3315,11 +3315,11 @@ msgstr "Ваш SQL запит було виконано вдало."
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Подання має щонайменше цю кількість рядків. Будь-ласка, зверніться до "
"%окументації%s."
"Подання має щонайменше цю кількість рядків. Будь-ласка, зверніться до %"
"sдокументації%s."
#: libraries/DisplayResults.class.php:4492
#, php-format
@ -4231,20 +4231,20 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"Мале число з плаваючою крапкою, допустимі значення від-3.402823466E+38 "
"до-1.175494351E-38, 0, і від 1.175494351E-38 до 3.402823466E+38"
"Мале число з плаваючою крапкою, допустимі значення від-3.402823466E+38 до-"
"1.175494351E-38, 0, і від 1.175494351E-38 до 3.402823466E+38"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"Число з плаваючою крапкою подвійної точності, допустимі значення "
"від-1.7976931348623157E+308 до-2.2250738585072014E-308, 0, і від "
"Число з плаваючою крапкою подвійної точності, допустимі значення від-"
"1.7976931348623157E+308 до-2.2250738585072014E-308, 0, і від "
"2.2250738585072014E-308 до 1.7976931348623157E+308"
#: libraries/Types.class.php:336
@ -5136,8 +5136,8 @@ msgstr ""
#: libraries/config/ServerConfigChecks.class.php:416
#, fuzzy, php-format
#| msgid ""
#| "If using cookie authentication and %sLogin cookie store%s is not 0, "
#| "%sLogin cookie validity%s must be set to a value less or equal to it."
#| "If using cookie authentication and %sLogin cookie store%s is not 0, %"
#| "sLogin cookie validity%s must be set to a value less or equal to it."
msgid ""
"If using [kbd]cookie[/kbd] authentication and %sLogin cookie store%s is not "
"0, %sLogin cookie validity%s must be set to a value less or equal to it."
@ -5149,10 +5149,10 @@ msgstr ""
#: libraries/config/ServerConfigChecks.class.php:423
#, fuzzy, php-format
#| msgid ""
#| "If you feel this is necessary, use additional protection settings - "
#| "%shost authentication%s settings and %strusted proxies list%s. However, "
#| "IP-based protection may not be reliable if your IP belongs to an ISP "
#| "where thousands of users, including you, are connected to."
#| "If you feel this is necessary, use additional protection settings - %"
#| "shost authentication%s settings and %strusted proxies list%s. However, IP-"
#| "based protection may not be reliable if your IP belongs to an ISP where "
#| "thousands of users, including you, are connected to."
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
"authentication%s settings and %strusted proxies list%s. However, IP-based "
@ -7300,8 +7300,9 @@ msgstr "Попередження про Suhosin"
#| "Disable the default warning that is displayed on the Structure page if "
#| "column names in a table are reserved MySQL words."
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"Вимкнути сповіщення, що відображається на сторінці структури бази даних за "
"наявності стовпців таблиці з іменами, які є зарезервованими словами MySQL."
@ -7903,13 +7904,13 @@ msgstr ", @TABLE@ буде заміщено ім'ям таблиці"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Значення обробляється функцією %1$sstrftime%2$s, завдяки чому можлива "
"вставка поточної дати і часу. Додатково можуть бути використані наступні "
"підстановки: %3$s. Решта тексту залишиться без змін. Подробиці дивіться у "
"%4$sFAQ%5$s."
"підстановки: %3$s. Решта тексту залишиться без змін. Подробиці дивіться у %4"
"$sFAQ%5$s."
#: libraries/display_export.lib.php:526
msgid "use this for future exports"
@ -8450,8 +8451,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
"Документацію і додаткову інформацію про PBXT можна знайти на %sДомашній "
"сторінці PrimeBase XT%s."
@ -9573,8 +9574,8 @@ msgstr "Ласкаво просимо до %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Ви, напевно, не створили файл конфігурації. Для його створення Ви можете "
"використати %1$ssetup script%2$s."
@ -10094,7 +10095,7 @@ msgstr "Назви стовпців: "
msgid "Invalid parameter for CSV import: %s"
msgstr "Неправильний параметр імпорту CSV: %s"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@ -10103,13 +10104,13 @@ msgstr ""
"Зазначено помилкове ім'я стовпця (%s)! Переконайтеся, що назви стовпців "
"вказані вірно, розділені комами, і не вкладені в лапки."
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Неправильний формат вхідних CSV-даних в рядку %d."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Невідповідність кількості стовпців в CSV даних на рядку %d."
@ -10637,14 +10638,14 @@ msgstr ""
msgid "no description"
msgstr "без опису"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "Відсутня таблиця для збереження конфігурації phpMyAdmin"
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@ -12001,8 +12002,8 @@ msgstr "Перегляд користувачів"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"Примітка: phpMyAdmin отримує права користувачів безпосередньо з таблиці прав "
"MySQL. Зміст цієї таблиці може відрізнятися від прав, які використовуються "
@ -12196,8 +12197,8 @@ msgid ""
"it is advisable to select only a small time span and to disable the "
"general_log and empty its table once monitoring is not required any more."
msgstr ""
"Увімкнення директиви general_log може збільшити навантаження на сервер на "
"5-15%. Також пам'ятайте, що генерування статистики з журналів є досить "
"Увімкнення директиви general_log може збільшити навантаження на сервер на 5-"
"15%. Також пам'ятайте, що генерування статистики з журналів є досить "
"інтенсивною задачею, тому бажано вибрати лише невеликий проміжок часу, "
"вимикати директиву general_log та чистити таблицю щойно в моніторингу більше "
"немає потреби."
@ -14898,8 +14899,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
"Поточне співвідношення вільної пам'яті кешу запитів до загального розміру "
"кешу запитів складає %s%%. Воно має перевищувати 80%%"
@ -15056,8 +15057,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
"%s%% всіх сортувань викликає створення тимчасових таблиць, це значення має "
"бути нижчим 10%%."
@ -16274,8 +16275,8 @@ msgstr "concurrent_insert встановлено у 0"
#~ "For a list of available transformation options and their MIME type "
#~ "transformations, click on %stransformation descriptions%s"
#~ msgstr ""
#~ "Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть "
#~ "%sописи перетворень%s"
#~ "Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть %"
#~ "sописи перетворень%s"
#~ msgid "SQL command to fetch available databases"
#~ msgstr "SQL команда для вибірки доступних баз даних"
@ -16785,8 +16786,8 @@ msgstr "concurrent_insert встановлено у 0"
#~ "<b>Query statistics</b>: Since its startup, %s queries have been sent to "
#~ "the server."
#~ msgstr ""
#~ "<b>Статистика запитів</b>: З моменту запуску, до сервера було надіслано "
#~ "%s запитів."
#~ "<b>Статистика запитів</b>: З моменту запуску, до сервера було надіслано %"
#~ "s запитів."
#~ msgid "Add a New User"
#~ msgstr "Додати нового користувача"

View File

@ -6,15 +6,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-03-27 15:22+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Urdu <https://hosted.weblate.org/projects/phpmyadmin/master/"
"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.9-dev\n"
@ -270,8 +270,8 @@ msgstr "کوائفیہ %1$s نام %2$s میں نقل کیا جاچکا ہے"
msgid ""
"The phpMyAdmin configuration storage has been deactivated. %sFind out why%s."
msgstr ""
"phpMyAdmin کی تشکیل زخیرہ بند کر دی گئی ہے۔ اس بارے میں جاننے کے لیے %share"
"%s دبائیں۔"
"phpMyAdmin کی تشکیل زخیرہ بند کر دی گئی ہے۔ اس بارے میں جاننے کے لیے %share%"
"s دبائیں۔"
#: db_printview.php:48 db_tracking.php:124 db_tracking.php:264
#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:770
@ -632,14 +632,14 @@ msgstr "داخل کرنا مکمل ہوا"
#: import.php:163
#, fuzzy, php-format
#| msgid ""
#| "You probably tried to upload too large file. Please refer to "
#| "%sdocumentation%s for ways to workaround this limit."
#| "You probably tried to upload too large file. Please refer to %"
#| "sdocumentation%s for ways to workaround this limit."
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے "
"%sdocumentation%s دیکھیں۔"
"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے %"
"sdocumentation%s دیکھیں۔"
#: import.php:343 import.php:626
msgid "Showing bookmark"
@ -680,8 +680,8 @@ msgid ""
"[doc@faq1-16]FAQ 1.16[/doc]."
msgstr ""
"درآمد کے لیے کوئی کوائف نہیں ملا۔ ممکن ہے کہ مسل نام بھیجا نہ گیا ہو یا مسل "
"حجم مقررہ حد سے تجاوز کر گیا ہو جو آپ کی PHP تشکیل میں ہے۔ دیکھیں"
"[doc@faq1-16]عمومی سوالات 1.16[/doc]."
"حجم مقررہ حد سے تجاوز کر گیا ہو جو آپ کی PHP تشکیل میں ہے۔ دیکھیں[doc@faq1-"
"16]عمومی سوالات 1.16[/doc]."
#: import.php:554
#, fuzzy
@ -2526,8 +2526,8 @@ msgid ""
"A newer version of phpMyAdmin is available and you should consider "
"upgrading. The newest version is %s, released on %s."
msgstr ""
"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ "
"%s, جاری کیا گیا %s."
"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ %"
"s, جاری کیا گیا %s."
#. l10n: Latest available phpMyAdmin version
#: js/messages.php:493
@ -3313,25 +3313,25 @@ msgstr "نشانی دکھاتے ہوئے"
msgid "Delete bookmark"
msgstr "تلاش"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr ""
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr ""
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3557,8 +3557,8 @@ msgstr "آپ کی SQL طلب کامیابی سے چلائی جاچکی ہے۔"
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"اس جدول نقل میں اتنے کم از کم صفیں ہیں۔ حوالہ کے لیے %sdocumentation%s."
@ -4522,14 +4522,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -7846,8 +7846,9 @@ msgstr ""
#| "Structure page if any of the required tables for the phpMyAdmin "
#| "configuration storage could not be found"
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"اگر phpMyAdmin تشکیل ذخیرہ میں کوئی درکار جداول نہیں ملا جو کہ کوائفیہ "
"تفصیلی ساکت صفحہ میں دکھایا جاتا ہے تو طے شدہ انتباہ کو غیر فعال کریں"
@ -8501,8 +8502,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -9009,8 +9010,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -10179,8 +10180,8 @@ msgstr "%s میں خوش آمدید"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"آپ نے شاید تشکیل مسل نہیں بنایا۔ آپ ہوسکتا ہے کہ %1$ssetup script%2$s کو "
"استعمال کرتے ہوئے بنانا چاہتے ہیں۔"
@ -10712,20 +10713,20 @@ msgstr "آراء-رائے"
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -11194,14 +11195,14 @@ msgstr ""
msgid "no description"
msgstr ""
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "phpMyAdmin تشکیل ذخیرہ جداول موجود نہیں ہے"
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@ -12602,8 +12603,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
#: libraries/server_privileges.lib.php:4060
@ -15423,8 +15424,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -15557,8 +15558,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

113
po/uz.po
View File

@ -3,15 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-11-14 19:09+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Uzbek <https://hosted.weblate.org/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=2; plural=(n > 1);\n"
"X-Generator: Weblate 2.1-dev\n"
@ -632,14 +632,14 @@ msgstr "Тўла қўйиш"
#: import.php:163
#, fuzzy, php-format
#| msgid ""
#| "You probably tried to upload too large file. Please refer to "
#| "%sdocumentation%s for ways to workaround this limit."
#| "You probably tried to upload too large file. Please refer to %"
#| "sdocumentation%s for ways to workaround this limit."
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари "
"%окументацияда%s келтирилган."
"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари %"
"sдокументацияда%s келтирилган."
#: import.php:343 import.php:626
msgid "Showing bookmark"
@ -3513,7 +3513,7 @@ msgstr "Хатчўпларни кўрсатиш"
msgid "Delete bookmark"
msgstr "Боғлиқликни ўчириш"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@ -3521,21 +3521,21 @@ msgid ""
"configured)."
msgstr "(ёки локал MySQL сервернинг сокети нотўғри созланган)"
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Сервер жавоб бермаяпти"
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Тафсилотлар…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"\"config.inc.php\" конфигурацион файлининг \"controluser\" директивасида "
@ -3766,8 +3766,8 @@ msgstr "SQL сўрови муваффақиятли бажарилди"
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Ушбу намойиш камида кўрсатилган миқдорда қаторларга эга. Батафсил маълумот "
"учун %sдокументацияга%s қаранг."
@ -4751,14 +4751,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -7691,9 +7691,9 @@ msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
"Кўпроқ маълумот учун [a@https://sourceforge.net/p/phpmyadmin/"
"bugs/2606/]\"PMA bug tracker\"[/a] ва [a@http://bugs.mysql.com/19588]\"MySQL "
"Bugs\"[/a]ларга қаранг"
"Кўпроқ маълумот учун [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]"
"\"PMA bug tracker\"[/a] ва [a@http://bugs.mysql.com/19588]\"MySQL Bugs\"[/a]"
"ларга қаранг"
#: libraries/config/messages.inc.php:592
msgid "Disable use of INFORMATION_SCHEMA"
@ -7759,8 +7759,8 @@ msgid ""
"Leave blank for no QBE saved searches support, suggested: [kbd]"
"pma__savedsearches[/kbd]."
msgstr ""
"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: "
"[kbd]\"pma_pdf_pages\"[/kbd]"
"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: [kbd]"
"\"pma_pdf_pages\"[/kbd]"
#: libraries/config/messages.inc.php:613
#, fuzzy
@ -7777,8 +7777,8 @@ msgid ""
"Leave blank for no central columns support, suggested: [kbd]"
"pma__central_columns[/kbd]."
msgstr ""
"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: "
"[kbd]\"pma_table_coords\"[/kbd]"
"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: [kbd]"
"\"pma_table_coords\"[/kbd]"
#: libraries/config/messages.inc.php:618
#, fuzzy
@ -7826,8 +7826,8 @@ msgstr "\"config\" аутентификация усули пароли"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: "
"[kbd]\"pma_pdf_pages\"[/kbd]"
"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: [kbd]"
"\"pma_pdf_pages\"[/kbd]"
#: libraries/config/messages.inc.php:631
msgid "PDF schema: pages table"
@ -7968,8 +7968,8 @@ msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: "
"[kbd]\"pma_table_coords\"[/kbd]"
"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: [kbd]"
"\"pma_table_coords\"[/kbd]"
#: libraries/config/messages.inc.php:671
#, fuzzy
@ -8330,8 +8330,9 @@ msgstr ""
#| "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
#| "authentication"
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"[kbd]cookie[/kbd]-аутентификация усулида cookie-ларни шифрлаш учун "
"ишлатиладиган сирли ибора"
@ -9044,16 +9045,16 @@ msgstr ""
#, fuzzy, php-format
#| msgid ""
#| "s value is interpreted using %1$sstrftime%2$s, so you can use time "
#| "matting strings. Additionally the following transformations will pen: "
#| "%3$s. Other text will be kept as is."
#| "matting strings. Additionally the following transformations will pen: %3"
#| "$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Қиймат %1$sstrftime%2$s функцияси билан қайта ишланган, шунинг учун ҳозирги "
"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: "
"%3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади."
"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: %"
"3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади."
#: libraries/display_export.lib.php:526
msgid "use this for future exports"
@ -9631,8 +9632,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -10831,8 +10832,8 @@ msgstr "\"%s\" дастурига хуш келибсиз"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Эҳтимол, конфигурация файли тузилмаган. Уни тузиш учун %1$ssўрнатиш "
"сценарийсидан%2$s фойдаланишингиз мумкин."
@ -11396,21 +11397,21 @@ msgstr "Майдон номлари"
msgid "Invalid parameter for CSV import: %s"
msgstr "CSV импортидаги парамерт нотўғри: \"%s\""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
"Киритилаётган CSV маълумотларнинг %d қаторидаги маълумотлар формати нотўғри."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, fuzzy, php-format
#| msgid "Invalid field count in CSV input on line %d."
msgid "Invalid column count in CSV input on line %d."
@ -12001,13 +12002,13 @@ msgstr ""
msgid "no description"
msgstr "тавсиф мавжуд эмас"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid ""
#| "Empty phpMyAdmin control user while using phpMyAdmin configuration storage"
@ -13533,8 +13534,8 @@ msgstr "Фойдаланувчилар ҳисобини кўриб чиқиш"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"ИЗОҲ: phpMyAdmin фойдаланувчилар привилегиялари ҳақидаги маълумотларни "
"тўғридан-тўғри MySQL привилегиялари жадвалидан олади. Ушбу жадвалдаги "
@ -14413,8 +14414,8 @@ msgstr "Очиқ файллар сони."
#: libraries/server_status_variables.lib.php:641
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
"Очиқ оқимлар сони (журнал файлларида кўлланилади). <b>Оқим</b> деб \"fopen"
"()\" функцияси ёрдамида очилган файлга айтилади."
"Очиқ оқимлар сони (журнал файлларида кўлланилади). <b>Оқим</b> деб \"fopen()"
"\" функцияси ёрдамида очилган файлга айтилади."
#: libraries/server_status_variables.lib.php:644
msgid "The number of tables that are open."
@ -16616,8 +16617,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -16752,8 +16753,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

View File

@ -3,15 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-11-05 10:33+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Uzbek (latin) <https://hosted.weblate.org/projects/phpmyadmin/"
"master/uz%40latin/>\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 2.0-dev\n"
@ -644,11 +644,11 @@ msgstr "Tola qoyish"
#: import.php:163
#, fuzzy, php-format
#| msgid ""
#| "You probably tried to upload too large file. Please refer to "
#| "%sdocumentation%s for ways to workaround this limit."
#| "You probably tried to upload too large file. Please refer to %"
#| "sdocumentation%s for ways to workaround this limit."
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
"Ehtimol, yuklanayotgan fayl hajmi juda katta. Bu muammoni yechishning "
"usullari %sdokumentatsiyada%s keltirilgan."
@ -3536,7 +3536,7 @@ msgstr "Xatchoplarni korsatish"
msgid "Delete bookmark"
msgstr "Bogliqlikni ochirish"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@ -3544,21 +3544,21 @@ msgid ""
"configured)."
msgstr "(yoki lokal MySQL serverning soketi notogri sozlangan)"
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Server javob bermayapti"
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "Tafsilotlar…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"\"config.inc.php\" konfiguratsion faylining \"controluser\" direktivasida "
@ -3798,8 +3798,8 @@ msgstr "SQL sorovi muvaffaqiyatli bajarildi"
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
"Ushbu namoyish kamida korsatilgan miqdorda qatorlarga ega. Batafsil "
"ma`lumot uchun %sdokumentatsiyaga%s qarang."
@ -4783,14 +4783,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -5808,9 +5808,9 @@ msgstr ""
"real xostlar uchun tavsiya etilmaydi. Serverdagi phpMyAdmin turgan katalog "
"adresini bilgan yoki taxmin qilgan har kim ushbu dasturga bemalol kirib, "
"serverdagi ma`lumotlar bazalari bilan istalgan operatsiyalarni amalga "
"oshirishi mumkin. Server [a@?page=servers&amp;mode=edit&amp;id="
"%1$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http"
"[/kbd] deb belgilash tavsiya etiladi."
"oshirishi mumkin. Server [a@?page=servers&amp;mode=edit&amp;id=%1"
"$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http[/"
"kbd] deb belgilash tavsiya etiladi."
#: libraries/config/ServerConfigChecks.class.php:437
#, fuzzy, php-format
@ -7733,9 +7733,9 @@ msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
"Koproq ma`lumot uchun [a@https://sourceforge.net/p/phpmyadmin/"
"bugs/2606/]\"PMA bug tracker\"[/a] va [a@http://bugs.mysql.com/19588]\"MySQL "
"Bugs\"[/a]larga qarang"
"Koproq ma`lumot uchun [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]"
"\"PMA bug tracker\"[/a] va [a@http://bugs.mysql.com/19588]\"MySQL Bugs\"[/a]"
"larga qarang"
#: libraries/config/messages.inc.php:592
msgid "Disable use of INFORMATION_SCHEMA"
@ -7801,8 +7801,8 @@ msgid ""
"Leave blank for no QBE saved searches support, suggested: [kbd]"
"pma__savedsearches[/kbd]."
msgstr ""
"Agar PDF-sxema ishlatmasangiz, bosh qoldiring, asl qiymati: "
"[kbd]\"pma_pdf_pages\"[/kbd]"
"Agar PDF-sxema ishlatmasangiz, bosh qoldiring, asl qiymati: [kbd]"
"\"pma_pdf_pages\"[/kbd]"
#: libraries/config/messages.inc.php:613
#, fuzzy
@ -7819,8 +7819,8 @@ msgid ""
"Leave blank for no central columns support, suggested: [kbd]"
"pma__central_columns[/kbd]."
msgstr ""
"PDF-sxemadan foydalanmaslik uchun bosh qoldiring, asl qiymati: "
"[kbd]\"pma_table_coords\"[/kbd]"
"PDF-sxemadan foydalanmaslik uchun bosh qoldiring, asl qiymati: [kbd]"
"\"pma_table_coords\"[/kbd]"
#: libraries/config/messages.inc.php:618
#, fuzzy
@ -7868,8 +7868,8 @@ msgstr "\"config\" autentifikatsiya usuli paroli"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
"Agar PDF-sxema ishlatmasangiz, bosh qoldiring, asl qiymati: "
"[kbd]\"pma_pdf_pages\"[/kbd]"
"Agar PDF-sxema ishlatmasangiz, bosh qoldiring, asl qiymati: [kbd]"
"\"pma_pdf_pages\"[/kbd]"
#: libraries/config/messages.inc.php:631
msgid "PDF schema: pages table"
@ -7888,8 +7888,8 @@ msgid ""
msgstr ""
"Aloqalar, xatchoplar va PDF imkoniyatlari uchun ishlatiladigan baza. "
"Batafsil ma`lumot uchun [a@http://wiki.phpmyadmin.net/pma/pmadb]\"pmadb\"[/a]"
"ga qarang. Agar foydalanmasangiz, bosh qoldiring. Asl qiymati: "
"[kbd]\"phpmyadmin\"[/kbd]"
"ga qarang. Agar foydalanmasangiz, bosh qoldiring. Asl qiymati: [kbd]"
"\"phpmyadmin\"[/kbd]"
#: libraries/config/messages.inc.php:637
#: libraries/display_create_database.lib.php:31
@ -8010,8 +8010,8 @@ msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
"PDF-sxemadan foydalanmaslik uchun bosh qoldiring, asl qiymati: "
"[kbd]\"pma_table_coords\"[/kbd]"
"PDF-sxemadan foydalanmaslik uchun bosh qoldiring, asl qiymati: [kbd]"
"\"pma_table_coords\"[/kbd]"
#: libraries/config/messages.inc.php:671
#, fuzzy
@ -8373,8 +8373,9 @@ msgstr ""
#| "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
#| "authentication"
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
"[kbd]cookie[/kbd]-autentifikatsiya usulida cookie-larni shifrlash uchun "
"ishlatiladigan sirli ibora"
@ -9091,12 +9092,12 @@ msgstr ""
#, fuzzy, php-format
#| msgid ""
#| "s value is interpreted using %1$sstrftime%2$s, so you can use time "
#| "matting strings. Additionally the following transformations will pen: "
#| "%3$s. Other text will be kept as is."
#| "matting strings. Additionally the following transformations will pen: %3"
#| "$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Qiymat %1$sstrftime%2$s funksiyasi bilan qayta ishlangan, shuning uchun "
"hozirgi vaqt va sanani qoyish mumkin. Qoshimcha ravishda quyidagilar "
@ -9680,8 +9681,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -10884,8 +10885,8 @@ msgstr "\"%s\" dasturiga xush kelibsiz"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"Ehtimol, konfiguratsiya fayli tuzilmagan. Uni tuzish uchun %1$ssornatish "
"ssenariysidan%2$s foydalanishingiz mumkin."
@ -11450,22 +11451,22 @@ msgstr "Maydon nomlari"
msgid "Invalid parameter for CSV import: %s"
msgstr "CSV importidagi paramert notogri: \"%s\""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
"Kiritilayotgan CSV ma`lumotlarning %d qatoridagi ma`lumotlar formati "
"notogri."
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, fuzzy, php-format
#| msgid "Invalid field count in CSV input on line %d."
msgid "Invalid column count in CSV input on line %d."
@ -12061,13 +12062,13 @@ msgstr ""
msgid "no description"
msgstr "tavsif mavjud emas"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid ""
#| "Empty phpMyAdmin control user while using phpMyAdmin configuration storage"
@ -13604,8 +13605,8 @@ msgstr "Foydalanuvchilar hisobini korib chiqish"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"IZOH: phpMyAdmin foydalanuvchilar privilegiyalari haqidagi ma`lumotlarni "
"togridan-togri MySQL privilegiyalari jadvalidan oladi. Ushbu jadvaldagi "
@ -16708,8 +16709,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -16844,8 +16845,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218
@ -17885,8 +17886,8 @@ msgstr "Maksimal ulanishlar soni "
#~ "%s."
#~ msgstr ""
#~ "SQL sintaksisini tekshirib bolmadi. PHP uchun zarur kengaytmalar "
#~ "ornatilganligini tekshiring, batafsil ma`lumot uchun %sdokumentatsiyaga"
#~ "%s qarang."
#~ "ornatilganligini tekshiring, batafsil ma`lumot uchun %sdokumentatsiyaga%"
#~ "s qarang."
#, fuzzy
#~| msgid "Error: Relation not added."

View File

@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-12-07 03:37+0200\n"
"Last-Translator: Xuan Hung <mr.hungdx@gmail.com>\n"
"Language-Team: Vietnamese <https://hosted.weblate.org/projects/phpmyadmin/"
"master/vi/>\n"
"Language: vi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: vi\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 2.1\n"
@ -600,8 +600,8 @@ msgstr ""
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
#: import.php:343 import.php:626
@ -2964,25 +2964,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr ""
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr ""
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3177,8 +3177,8 @@ msgstr ""
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
#: libraries/DisplayResults.class.php:4492
@ -4056,14 +4056,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -6844,8 +6844,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -7423,8 +7424,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -7906,8 +7907,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -8999,8 +9000,8 @@ msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
@ -9481,20 +9482,20 @@ msgstr ""
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -9926,13 +9927,13 @@ msgstr ""
msgid "no description"
msgstr ""
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -11230,8 +11231,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
#: libraries/server_privileges.lib.php:4060
@ -13796,8 +13797,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -13915,8 +13916,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

View File

@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-12-23 23:39+0200\n"
"Last-Translator: Robin van der Vliet <info@robinvandervliet.nl>\n"
"Language-Team: West Flemish <https://hosted.weblate.org/projects/phpmyadmin/"
"master/vls/>\n"
"Language: vls\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: vls\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 2.2-dev\n"
@ -597,8 +597,8 @@ msgstr ""
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr ""
#: import.php:343 import.php:626
@ -2958,25 +2958,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr ""
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr ""
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr ""
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@ -3173,8 +3173,8 @@ msgstr ""
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
#: libraries/DisplayResults.class.php:4492
@ -4057,14 +4057,14 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@ -6842,8 +6842,9 @@ msgstr ""
#: libraries/config/messages.inc.php:757
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
#: libraries/config/messages.inc.php:758
@ -7421,8 +7422,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:526
@ -7904,8 +7905,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:138
@ -8998,8 +8999,8 @@ msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
@ -9480,20 +9481,20 @@ msgstr ""
msgid "Invalid parameter for CSV import: %s"
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@ -9925,13 +9926,13 @@ msgstr ""
msgid "no description"
msgstr ""
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@ -11231,8 +11232,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
#: libraries/server_privileges.lib.php:4060
@ -13795,8 +13796,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:181
@ -13914,8 +13915,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr ""
#: libraries/advisory_rules.txt:218

View File

@ -3,15 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-11-05 10:25+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Simplified Chinese <https://hosted.weblate.org/projects/"
"phpmyadmin/master/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 2.0-dev\n"
@ -605,8 +605,8 @@ msgstr "完整插入"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr "您想要上传的文件可能太大了,请参考%s文档%s来寻找解决方法。"
#: import.php:343 import.php:626
@ -3112,25 +3112,25 @@ msgstr "更新书签"
msgid "Delete bookmark"
msgstr "删除书签"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr "服务器没有响应(或本地服务器的套接字没有正确设置)。"
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "服务器没有响应。"
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr "请检查数据库文件夹的权限。"
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "详细…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr "使用配置文件中定义的控制用户连接失败。"
@ -3325,8 +3325,8 @@ msgstr "您的 SQL 语句已成功运行。"
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr "此视图的行数最少有这么多。请参阅%s档案%s。"
#: libraries/DisplayResults.class.php:4492
@ -4218,21 +4218,20 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"单精度浮点数,取值范围从 -3.402823466E+38 到 -1.175494351E-38、0 以及从 "
"1.175494351E-38 到 3.402823466E+38"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"双精度浮点数,取值范围从 -1.7976931348623157E+308 到 "
"-2.2250738585072014E-308、0 以及从 2.2250738585072014E-308 到 "
"1.7976931348623157E+308"
"双精度浮点数,取值范围从 -1.7976931348623157E+308 到 -2.2250738585072014E-"
"308、0 以及从 2.2250738585072014E-308 到 1.7976931348623157E+308"
#: libraries/Types.class.php:336
msgid ""
@ -7457,8 +7456,9 @@ msgstr "Suhosin 警告"
#| "Disable the default warning that is displayed on the Structure page if "
#| "column names in a table are reserved MySQL words"
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr "禁止在列名包含 MySQL 保留字时在数据库结构页中显示默认警告"
#: libraries/config/messages.inc.php:758
@ -8101,8 +8101,8 @@ msgstr "@TABLE@ 将变成数据表名"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"这个值是使用 %1$sstrftime%2$s 来解析的,所以你能用时间格式的字符串。另外,下"
"列内容也将被转换:%3$s。其他文本将保持原样。参见%4$s常见问题 (FAQ)%5$s。"
@ -8621,8 +8621,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr "关于 PBXT 的文档和更多信息请参见 %sPrimeBase XT 主页%s。"
#: libraries/engines/pbxt.lib.php:138
@ -9785,8 +9785,8 @@ msgstr "欢迎使用 %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
"你可能还没有创建配置文件。你可以使用 %1$s设置脚本%2$s 来创建一个配置文件。"
@ -10318,7 +10318,7 @@ msgstr "字段名: "
msgid "Invalid parameter for CSV import: %s"
msgstr "导入 CSV 文件 %s 时有无效参数"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@ -10327,13 +10327,13 @@ msgstr ""
"无效字段 (%s)!请检查字段名是否拼写正确,使用半角逗号分隔,并且不要用引号括"
"起。"
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "CSV 输入的第 %d 行格式有错。"
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "CSV 输入的第 %d 行字段数有错。"
@ -10848,14 +10848,14 @@ msgstr "请重新登录 phpMyAdmin 以加载新配置并使其生效。"
msgid "no description"
msgstr "无说明"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "丢失 phpMyAdmin 高级功能数据表"
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@ -12238,12 +12238,12 @@ msgstr "用户概况"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"注意phpMyAdmin 直接由 MySQL 权限表取得用户权限。如果用户手动更改表,表内容"
"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权"
"限%s。"
"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权限%"
"s。"
#: libraries/server_privileges.lib.php:4060
msgid "The selected user was not found in the privilege table."
@ -15081,8 +15081,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr "当前空闲查询缓存内存为总查询缓存大小的 %s%%。此值应高于 80%%"
#: libraries/advisory_rules.txt:181
@ -15213,8 +15213,8 @@ msgstr "根据系统内存,考虑增加 {sort_buffer_siz}e 和/或 {read_rnd_b
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr "%s%% 的排序引发临时表创建,该值应低于 10%%。"
#: libraries/advisory_rules.txt:218
@ -17234,8 +17234,8 @@ msgstr "concurrent_insert 被设为 0"
#~ "Note that not every result table can be put to the chart. See <a href=\"./"
#~ "Documentation.html#faq6-29\" target=\"Documentation\">FAQ 6.29</a>"
#~ msgstr ""
#~ "请注意不是所有的结果表都能绘图。参见<a href=\"./Documentation."
#~ "html#faq6-29\" target=\"Documentation\">常见问题 (FAQ) 6.29</a>"
#~ "请注意不是所有的结果表都能绘图。参见<a href=\"./Documentation.html#faq6-29"
#~ "\" target=\"Documentation\">常见问题 (FAQ) 6.29</a>"
#~ msgid "Add a New User"
#~ msgstr "添加新用户"

View File

@ -3,15 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2015-02-04 11:31-0500\n"
"POT-Creation-Date: 2015-02-06 07:36-0500\n"
"PO-Revision-Date: 2014-10-03 21:14+0200\n"
"Last-Translator: Peter Dave Hello <xs910203@gmail.com>\n"
"Language-Team: Traditional Chinese <https://hosted.weblate.org/projects/"
"phpmyadmin/master/zh_TW/>\n"
"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: zh_TW\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 1.10-dev\n"
@ -599,8 +599,8 @@ msgstr "參數不完整"
#: import.php:163
#, php-format
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
"You probably tried to upload a file that is too large. Please refer to %"
"sdocumentation%s for a workaround for this limit."
msgstr "您上傳的檔案過大,請參考 %s說明文件%s 了解如何解決此問題。"
#: import.php:343 import.php:626
@ -3034,25 +3034,25 @@ msgstr "更新書籤"
msgid "Delete bookmark"
msgstr "刪除書籤"
#: libraries/DatabaseInterface.class.php:2193
#: libraries/DatabaseInterface.class.php:2190
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr "伺服器沒有回應(或者是伺服器的 socket 沒有被正確的設定)。"
#: libraries/DatabaseInterface.class.php:2198
#: libraries/DatabaseInterface.class.php:2195
msgid "The server is not responding."
msgstr "伺服器沒有回應。"
#: libraries/DatabaseInterface.class.php:2203
#: libraries/DatabaseInterface.class.php:2200
msgid "Please check privileges of directory containing database."
msgstr "請檢查資料庫所在的資料夾權限。"
#: libraries/DatabaseInterface.class.php:2213
#: libraries/DatabaseInterface.class.php:2210
msgid "Details…"
msgstr "詳細資訊…"
#: libraries/DatabaseInterface.class.php:2436
#: libraries/DatabaseInterface.class.php:2433
msgid "Connection for controluser as defined in your configuration failed."
msgstr "使用設定檔案中定義的控制使用者連線失敗。"
@ -3248,8 +3248,8 @@ msgstr "您的 SQL 語法已順利執行。"
#: libraries/DisplayResults.class.php:4479 libraries/structure.lib.php:692
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr "這個檢視表至少需有此數量的資料列,請參考%sdocumentation%s。"
#: libraries/DisplayResults.class.php:4492
@ -4138,16 +4138,16 @@ msgstr ""
#: libraries/Types.class.php:332
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
"A small floating-point number, allowable values are -3.402823466E+38 to -"
"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"浮點數,範圍為 -3.402823466E+38 至 -1.175494351E-38、0 及 1.175494351E-38 至 "
"3.402823466E+38"
#: libraries/Types.class.php:334
msgid ""
"A double-precision floating-point number, allowable values are "
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"A double-precision floating-point number, allowable values are -"
"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"倍準浮點數,範圍為 -1.7976931348623157E+308 至 -2.2250738585072014E-308、0 "
@ -7071,8 +7071,9 @@ msgstr "Suhosin 的警告"
#| "Disable the default warning that is displayed on the Structure page if "
#| "column names in a table are reserved MySQL words."
msgid ""
"Disable the default warning that is displayed on the main page if session."
"gc_maxlifetime is less than `LoginCookieValidity`."
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr "關閉在資料表欄位是 MySQL 保留字時,結構頁面內顯示的預設警告訊息。"
#: libraries/config/messages.inc.php:758
@ -7668,8 +7669,8 @@ msgstr "@TABLE@ 會替換為資料表名稱"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"此數值會使用 %1$sstrftime%2$s 來解析,所以您可以使用時間格式的字串。除此之"
"外,以下資料格式也會被轉換: %3$s。其他的文字則會保持原樣。請參考 %4$s常見問"
@ -8182,8 +8183,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:131
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
msgstr "有關 PBXT 的更相關資訊請可以 %sPrimeBase XT 首頁%s 中找到。"
#: libraries/engines/pbxt.lib.php:138
@ -9289,8 +9290,8 @@ msgstr "歡迎使用 %s"
#: libraries/plugins/auth/AuthenticationConfig.class.php:124
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr "您可能還沒有建立設定檔案。您可以使用 %1$s 設定指令 %2$s 來建立。"
#: libraries/plugins/auth/AuthenticationConfig.class.php:144
@ -9793,7 +9794,7 @@ msgstr "欄位名稱: "
msgid "Invalid parameter for CSV import: %s"
msgstr "匯入 CSV 檔案 %s 時有無效參數"
#: libraries/plugins/import/ImportCsv.class.php:202
#: libraries/plugins/import/ImportCsv.class.php:198
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@ -9802,13 +9803,13 @@ msgstr ""
"無效欄位 (%s)!請檢查欄位名稱是否拼寫正確,使用半角逗號分隔,並且不要用引號括"
"起。"
#: libraries/plugins/import/ImportCsv.class.php:295
#: libraries/plugins/import/ImportCsv.class.php:626
#: libraries/plugins/import/ImportCsv.class.php:291
#: libraries/plugins/import/ImportCsv.class.php:630
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "CSV 輸入的第 %d 行格式有錯。"
#: libraries/plugins/import/ImportCsv.class.php:507
#: libraries/plugins/import/ImportCsv.class.php:503
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "CSV 輸入的第 %d 行欄位數有錯。"
@ -10305,13 +10306,13 @@ msgstr "請重新登入 phpMyAdmin 以載入新設定並使其生效。"
msgid "no description"
msgstr "無說明"
#: libraries/relation.lib.php:1976
#: libraries/relation.lib.php:1975
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
#: libraries/relation.lib.php:1983
#: libraries/relation.lib.php:1982
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@ -11634,8 +11635,8 @@ msgstr "檢視使用者"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
msgstr ""
"注意: phpMyAdmin 直接由 MySQL 權限表取得使用者權限。若有使用者中途手動更改權"
"限,則表中顯示的內容可能與伺服器實際使用的使用者權限有異。在這種情況下,您應"
@ -13690,8 +13691,8 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
"透過修改 config.inc.php 設定檔您可以調整更多的設定項目,如: 使用 %s安裝程"
"式%s 。"
"透過修改 config.inc.php 設定檔您可以調整更多的設定項目,如: 使用 %s安裝程式%"
"s 。"
#: prefs_manage.php:315
msgid "Save to browser's storage"
@ -14348,8 +14349,8 @@ msgstr ""
#: libraries/advisory_rules.txt:179
#, php-format
msgid ""
"The current ratio of free query cache memory to total query cache size is %s"
"%%. It should be above 80%%"
"The current ratio of free query cache memory to total query cache size is %s%"
"%. It should be above 80%%"
msgstr "目前閒置查詢快取記憶體為全部查詢快取的大小的 %s%%,這個值應高於 80%%"
#: libraries/advisory_rules.txt:181
@ -14485,8 +14486,8 @@ msgstr ""
#: libraries/advisory_rules.txt:216
#, php-format
msgid ""
"%s%% of all sorts cause temporary tables, this value should be lower than "
"10%%."
"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
"%."
msgstr "有 %s%% 的排序會產生暫存表,這個值應低於 10%%。"
#: libraries/advisory_rules.txt:218
@ -16464,8 +16465,8 @@ msgstr "concurrent_insert 目前設定為 0"
#~ "Note that not every result table can be put to the chart. See <a href=\"./"
#~ "Documentation.html#faq6-29\" target=\"Documentation\">FAQ 6.29</a>"
#~ msgstr ""
#~ "請注意不是所有的結果表都能繪圖。參見<a href=\"./Documentation."
#~ "html#faq6-29\" target=\"Documentation\">常見問題 (FAQ) 6.29</a>"
#~ "請注意不是所有的結果表都能繪圖。參見<a href=\"./Documentation.html#faq6-29"
#~ "\" target=\"Documentation\">常見問題 (FAQ) 6.29</a>"
#~ msgid "Add a New User"
#~ msgstr "新增新使用者"

View File

@ -283,8 +283,12 @@ if (file_exists('setup/index.php')) {
<h2><?php echo __('More settings') ?></h2>
<div class="group-cnt">
<?php
echo sprintf(__('You can set more settings by modifying config.inc.php, eg. by using %sSetup script%s.'), '<a href="setup/index.php" target="_blank">', '</a>');
echo PMA_Util::showDocu('setup', 'setup-script');
echo sprintf(
__(
'You can set more settings by modifying config.inc.php, eg. '
. 'by using %sSetup script%s.'
), '<a href="setup/index.php" target="_blank">', '</a>'
) . PMA_Util::showDocu('setup', 'setup-script');
?>
</div>
</div>
@ -294,58 +298,77 @@ if (file_exists('setup/index.php')) {
</div>
<div id="main_pane_right">
<div class="group">
<h2><?php echo __('Export') ?></h2>
<h2><?php echo __('Export'); ?></h2>
<div class="click-hide-message group-cnt" style="display:none">
<?php
PMA_Message::rawSuccess(
__('Configuration has been saved.')
)->display();
echo '</div>'
. '<form class="group-cnt prefs-form disableAjax" name="prefs_export"'
. ' action="prefs_manage.php" method="post">'
. PMA_URL_getHiddenInputs()
. '<div style="padding-bottom:0.5em">'
. '<input type="radio" id="export_text_file" name="export_type"'
. ' value="text_file" checked="checked" />'
. '<label for="export_text_file">' . __('Save as file') . '</label>'
. '<br />'
. '<input type="radio" id="export_local_storage" name="export_type"'
. ' value="local_storage" disabled="disabled" />'
. '<label for="export_local_storage">'
. __('Save to browser\'s storage') . '</label>'
. '</div>'
. '<div id="opts_export_local_storage" class="prefsmanage_opts disabled">'
. '<span class="localStorage-supported">'
. __('Settings will be saved in your browser\'s local storage.')
. '<div class="localStorage-exists">'
. '<b>' . __('Existing settings will be overwritten!') . '</b>'
. '</div>'
. '</span>'
. '<div class="localStorage-unsupported">';
PMA_Message::notice(
__('This feature is not supported by your web browser')
)->display();
?>
PMA_Message::rawSuccess(
__('Configuration has been saved.')
)->display();
?>
</div>
<form class="group-cnt prefs-form disableAjax" name="prefs_export"
action="prefs_manage.php" method="post">
<?php echo PMA_URL_getHiddenInputs(); ?>
<div style="padding-bottom:0.5em">
<input type="radio" id="export_text_file" name="export_type"
value="text_file" checked="checked" />
<label for="export_text_file">
<?php echo __('Save as file'); ?>
</label><br />
<input type="radio" id="export_local_storage" name="export_type"
value="local_storage" disabled="disabled" />
<label for="export_local_storage">
<?php echo __('Save to browser\'s storage'); ?></label>
</div>
<div id="opts_export_local_storage"
class="prefsmanage_opts disabled">
<span class="localStorage-supported">
<?php
echo __(
'Settings will be saved in your browser\'s local '
. 'storage.'
);
?>
<div class="localStorage-exists">
<b>
<?php
echo __(
'Existing settings will be overwritten!'
);
?>
</b>
</div>
</span>
<div class="localStorage-unsupported">
<?php
PMA_Message::notice(
__('This feature is not supported by your web browser')
)->display();
?>
</div>
</div>
<br />
<?php
echo '<input type="submit" name="submit_export" value="' . __('Go') . '" />';
?>
<?php
echo '<input type="submit" name="submit_export" value="' . __(
'Go'
) . '" />';
?>
</form>
</div>
<div class="group">
<?php
echo '<h2>' . __('Reset') . '</h2>'
. '<form class="group-cnt prefs-form disableAjax" name="prefs_reset"'
. ' action="prefs_manage.php" method="post">'
. PMA_URL_getHiddenInputs()
. __('You can reset all your settings and restore them to default values.')
. '<br /><br />'
. '<input type="submit" name="submit_clear" value="'
. __('Reset') . '" />'
. '</form>';
?>
<h2><?php echo __('Reset'); ?></h2>
<form class="group-cnt prefs-form disableAjax" name="prefs_reset"
action="prefs_manage.php" method="post">
<?php
echo PMA_URL_getHiddenInputs() . __(
'You can reset all your settings and restore them to default '
. 'values.'
);
?>
<br /><br />
<input type="submit" name="submit_clear"
value="<?php echo __('Reset'); ?>"/>
</form>
</div>
</div>
<br class="clearfloat" />

View File

@ -44,6 +44,15 @@ class PMA_Util_Test extends PHPUnit_Framework_TestCase
'3',
$limit_data['length']
);
$limit_data = PMA_Util::analyzeLimitClause("limit 3,2,5");
$this->assertFalse($limit_data);
$limit_data = PMA_Util::analyzeLimitClause("limit");
$this->assertFalse($limit_data);
$limit_data = PMA_Util::analyzeLimitClause("limit ");
$this->assertFalse($limit_data);
}
/**